{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "##
Cloudy Mountain Plot
an informative RDI(*) categorical distribution plot
inspired by Violin, Bean and Pirate Plots
\n", "####
云山图 [yún shān tú] / 雲山図 [くもやまず/kumo yama zu]
\n", "### by [Dr Giuseppe Insana](http://insana.net), August 2019 - coded in Julia and Python\n", "#### (*): RDI = Raw data + Descriptive statistics + Inferential statistics" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### This notebook shows usage examples of Cloudy Mountain Plot in Python3.\n", "### Please check the [cmplot.py github page](https://github.com/g-insana/cmplot.py) for installation instruction and options" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import plotly.graph_objects as go\n", "from cmplot import cmplot\n", "\n", "# OPTIONAL requirements for this notebook\n", "from plotly.subplots import make_subplots #for subplots, used in the examples\n", "from pathlib import Path #for saving files to homedir" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
expwksbluecolindsouthsmsamarriedsexunionedblacklwageexpYearseduYears
03147yes1nonoyesmaleyes9no6.99942>309-13
13349yes1yesnoyesmaleyes7no5.99146>30<9
23550no0noyesyesmaleno14no7.67322>30>13
\n", "
" ], "text/plain": [ " exp wks bluecol ind south smsa married sex union ed black lwage \\\n", "0 31 47 yes 1 no no yes male yes 9 no 6.99942 \n", "1 33 49 yes 1 yes no yes male yes 7 no 5.99146 \n", "2 35 50 no 0 no yes yes male no 14 no 7.67322 \n", "\n", " expYears eduYears \n", "0 >30 9-13 \n", "1 >30 <9 \n", "2 >30 >13 " ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# To load some public test data:\n", "from pydataset import data\n", "iris = data('iris') # Iris dataset; Anderson, Edgar (1935) Fisher, R. A. (1936) ; http://vincentarelbundock.github.io/Rdatasets/doc/datasets/iris.html\n", "train = data('Wages') # Individual wages, US, 1976 to 1982; Cornwell, C. and P. Rupert (1988) ; http://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Wages.html\n", "train['expYears']=[\"<10\" if x < 10 else \"10-29\" if (x >= 10 and x < 30) else \">30\" for x in train['exp']] #binning on years of full-time work experience\n", "train['eduYears']=[\"<9\" if x < 9 else \"9-13\" if (x >= 9 and x < 14) else \">13\" for x in train['ed']] #binning on years of education\n", "train = train.sample(frac=1).reset_index(drop=True) #shuffle if you wish to bias when using pointsmaxdisplayed\n", "\n", "train[0:3]" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "## Alternatively, load your own data, e.g. via CSV:\n", "#train = pd.read_csv('train.csv',delimiter=',', decimal='.') #dataset on loans\n", "\n", "## Some data cleaning:\n", "#train['LoanAmount']=train['LoanAmount'].fillna(train['LoanAmount'].mean()) #replace missing values in LoanAmount with their mean\n", "#train['Married']=train['Married'].mask(pd.isnull,'No') #replace missing values in Married with \"No\"\n", "#train['Gender']=train['Gender'].fillna('Male') #replace missing values in Gender with \"Male\"" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 1 min Quickstart: just pass as arguments a dataframe and the column label for the categorical data" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "fillcolor": "hsla(82, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(82, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "Sepal.Width", "line": { "color": "hsla(82, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(82, 70%, 70%,1)", "line": { "color": "hsla(82, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "cross" }, "meanline": { "color": "hsla(82, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "Sepal.Width", "orientation": "h", "pointpos": -0.6, "points": "all", "scalegroup": "setosa", "scalemode": "count", "showlegend": true, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 3.5, 3, 3.2, 3.1, 3.6, 3.9, 3.4, 3.4, 2.9, 3.1, 3.7, 3.4, 3, 3, 4, 4.4, 3.9, 3.5, 3.8, 3.8, 3.4, 3.7, 3.6, 3.3, 3.4, 3, 3.4, 3.5, 3.4, 3.2, 3.1, 3.4, 4.1, 4.2, 3.1, 3.2, 3.5, 3.6, 3, 3.4, 3.5, 2.3, 3.2, 3.5, 3.8, 3, 3.8, 3.2, 3.7, 3.3 ], "y0": "setosa" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(82, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(82, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "Sepal.Width", "line": { "width": 0 }, "marker": { "color": "hsla(82, 50%, 50%,0.9)", "line": { "color": "hsla(82, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "cross" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "setosa", "showlegend": false, "side": "positive", "span": [ 3.322174898328119, 3.5350485452619624 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 3.5, 3, 3.2, 3.1, 3.6, 3.9, 3.4, 3.4, 2.9, 3.1, 3.7, 3.4, 3, 3, 4, 4.4, 3.9, 3.5, 3.8, 3.8, 3.4, 3.7, 3.6, 3.3, 3.4, 3, 3.4, 3.5, 3.4, 3.2, 3.1, 3.4, 4.1, 4.2, 3.1, 3.2, 3.5, 3.6, 3, 3.4, 3.5, 2.3, 3.2, 3.5, 3.8, 3, 3.8, 3.2, 3.7, 3.3 ], "y0": "setosa" }, { "fillcolor": "hsla(164, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(164, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "Sepal.Length", "line": { "color": "hsla(164, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(164, 70%, 70%,1)", "line": { "color": "hsla(164, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "triangle-up" }, "meanline": { "color": "hsla(164, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "Sepal.Length", "orientation": "h", "pointpos": 0.6, "points": "all", "scalegroup": "setosa", "scalemode": "count", "showlegend": true, "side": "negative", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 5.1, 4.9, 4.7, 4.6, 5, 5.4, 4.6, 5, 4.4, 4.9, 5.4, 4.8, 4.8, 4.3, 5.8, 5.7, 5.4, 5.1, 5.7, 5.1, 5.4, 5.1, 4.6, 5.1, 4.8, 5, 5, 5.2, 5.2, 4.7, 4.8, 5.4, 5.2, 5.5, 4.9, 5, 5.5, 4.9, 4.4, 5.1, 5, 4.5, 4.4, 5, 5.1, 4.8, 5.1, 4.6, 5.3, 5 ], "y0": "setosa" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(164, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(164, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "Sepal.Length", "line": { "width": 0 }, "marker": { "color": "hsla(164, 50%, 50%,0.9)", "line": { "color": "hsla(164, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "triangle-up" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "setosa", "showlegend": false, "side": "negative", "span": [ 4.901292292214897, 5.099795200799732 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 5.1, 4.9, 4.7, 4.6, 5, 5.4, 4.6, 5, 4.4, 4.9, 5.4, 4.8, 4.8, 4.3, 5.8, 5.7, 5.4, 5.1, 5.7, 5.1, 5.4, 5.1, 4.6, 5.1, 4.8, 5, 5, 5.2, 5.2, 4.7, 4.8, 5.4, 5.2, 5.5, 4.9, 5, 5.5, 4.9, 4.4, 5.1, 5, 4.5, 4.4, 5, 5.1, 4.8, 5.1, 4.6, 5.3, 5 ], "y0": "setosa" }, { "fillcolor": "hsla(246, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(246, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "Petal.Length", "line": { "color": "hsla(246, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(246, 70%, 70%,1)", "line": { "color": "hsla(246, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "hexagram" }, "meanline": { "color": "hsla(246, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "Petal.Length", "orientation": "h", "pointpos": -0.6, "points": "all", "scalegroup": "setosa", "scalemode": "count", "showlegend": true, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 1.4, 1.4, 1.3, 1.5, 1.4, 1.7, 1.4, 1.5, 1.4, 1.5, 1.5, 1.6, 1.4, 1.1, 1.2, 1.5, 1.3, 1.4, 1.7, 1.5, 1.7, 1.5, 1, 1.7, 1.9, 1.6, 1.6, 1.5, 1.4, 1.6, 1.6, 1.5, 1.5, 1.4, 1.5, 1.2, 1.3, 1.4, 1.3, 1.5, 1.3, 1.3, 1.3, 1.6, 1.9, 1.4, 1.6, 1.4, 1.5, 1.4 ], "y0": "setosa" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(246, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(246, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "Petal.Length", "line": { "width": 0 }, "marker": { "color": "hsla(246, 50%, 50%,0.9)", "line": { "color": "hsla(246, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "hexagram" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "setosa", "showlegend": false, "side": "positive", "span": [ 1.4127524718456532, 1.511319321041156 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 1.4, 1.4, 1.3, 1.5, 1.4, 1.7, 1.4, 1.5, 1.4, 1.5, 1.5, 1.6, 1.4, 1.1, 1.2, 1.5, 1.3, 1.4, 1.7, 1.5, 1.7, 1.5, 1, 1.7, 1.9, 1.6, 1.6, 1.5, 1.4, 1.6, 1.6, 1.5, 1.5, 1.4, 1.5, 1.2, 1.3, 1.4, 1.3, 1.5, 1.3, 1.3, 1.3, 1.6, 1.9, 1.4, 1.6, 1.4, 1.5, 1.4 ], "y0": "setosa" }, { "fillcolor": "hsla(328, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(328, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "Petal.Width", "line": { "color": "hsla(328, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(328, 70%, 70%,1)", "line": { "color": "hsla(328, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "star" }, "meanline": { "color": "hsla(328, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "Petal.Width", "orientation": "h", "pointpos": 0.6, "points": "all", "scalegroup": "setosa", "scalemode": "count", "showlegend": true, "side": "negative", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 0.2, 0.2, 0.2, 0.2, 0.2, 0.4, 0.3, 0.2, 0.2, 0.1, 0.2, 0.2, 0.1, 0.1, 0.2, 0.4, 0.4, 0.3, 0.3, 0.3, 0.2, 0.4, 0.2, 0.5, 0.2, 0.2, 0.4, 0.2, 0.2, 0.2, 0.2, 0.4, 0.1, 0.2, 0.2, 0.2, 0.2, 0.1, 0.2, 0.2, 0.3, 0.3, 0.2, 0.6, 0.4, 0.3, 0.2, 0.2, 0.2, 0.2 ], "y0": "setosa" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(328, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(328, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "Petal.Width", "line": { "width": 0 }, "marker": { "color": "hsla(328, 50%, 50%,0.9)", "line": { "color": "hsla(328, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "star" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "setosa", "showlegend": false, "side": "negative", "span": [ 0.21651837026304868, 0.2745088700212196 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 0.2, 0.2, 0.2, 0.2, 0.2, 0.4, 0.3, 0.2, 0.2, 0.1, 0.2, 0.2, 0.1, 0.1, 0.2, 0.4, 0.4, 0.3, 0.3, 0.3, 0.2, 0.4, 0.2, 0.5, 0.2, 0.2, 0.4, 0.2, 0.2, 0.2, 0.2, 0.4, 0.1, 0.2, 0.2, 0.2, 0.2, 0.1, 0.2, 0.2, 0.3, 0.3, 0.2, 0.6, 0.4, 0.3, 0.2, 0.2, 0.2, 0.2 ], "y0": "setosa" }, { "fillcolor": "hsla(82, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(82, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "Sepal.Width", "line": { "color": "hsla(82, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(82, 70%, 70%,1)", "line": { "color": "hsla(82, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "cross" }, "meanline": { "color": "hsla(82, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "Sepal.Width", "orientation": "h", "pointpos": -0.6, "points": "all", "scalegroup": "versicolor", "scalemode": "count", "showlegend": false, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 3.2, 3.2, 3.1, 2.3, 2.8, 2.8, 3.3, 2.4, 2.9, 2.7, 2, 3, 2.2, 2.9, 2.9, 3.1, 3, 2.7, 2.2, 2.5, 3.2, 2.8, 2.5, 2.8, 2.9, 3, 2.8, 3, 2.9, 2.6, 2.4, 2.4, 2.7, 2.7, 3, 3.4, 3.1, 2.3, 3, 2.5, 2.6, 3, 2.6, 2.3, 2.7, 3, 2.9, 2.9, 2.5, 2.8 ], "y0": "versicolor" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(82, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(82, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "Sepal.Width", "line": { "width": 0 }, "marker": { "color": "hsla(82, 50%, 50%,0.9)", "line": { "color": "hsla(82, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "cross" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "versicolor", "showlegend": false, "side": "positive", "span": [ 2.68134260071426, 2.855936464929514 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 3.2, 3.2, 3.1, 2.3, 2.8, 2.8, 3.3, 2.4, 2.9, 2.7, 2, 3, 2.2, 2.9, 2.9, 3.1, 3, 2.7, 2.2, 2.5, 3.2, 2.8, 2.5, 2.8, 2.9, 3, 2.8, 3, 2.9, 2.6, 2.4, 2.4, 2.7, 2.7, 3, 3.4, 3.1, 2.3, 3, 2.5, 2.6, 3, 2.6, 2.3, 2.7, 3, 2.9, 2.9, 2.5, 2.8 ], "y0": "versicolor" }, { "fillcolor": "hsla(164, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(164, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "Sepal.Length", "line": { "color": "hsla(164, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(164, 70%, 70%,1)", "line": { "color": "hsla(164, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "triangle-up" }, "meanline": { "color": "hsla(164, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "Sepal.Length", "orientation": "h", "pointpos": 0.6, "points": "all", "scalegroup": "versicolor", "scalemode": "count", "showlegend": false, "side": "negative", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 7, 6.4, 6.9, 5.5, 6.5, 5.7, 6.3, 4.9, 6.6, 5.2, 5, 5.9, 6, 6.1, 5.6, 6.7, 5.6, 5.8, 6.2, 5.6, 5.9, 6.1, 6.3, 6.1, 6.4, 6.6, 6.8, 6.7, 6, 5.7, 5.5, 5.5, 5.8, 6, 5.4, 6, 6.7, 6.3, 5.6, 5.5, 5.5, 6.1, 5.8, 5, 5.6, 5.7, 5.7, 6.2, 5.1, 5.7 ], "y0": "versicolor" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(164, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(164, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "Sepal.Length", "line": { "width": 0 }, "marker": { "color": "hsla(164, 50%, 50%,0.9)", "line": { "color": "hsla(164, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "triangle-up" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "versicolor", "showlegend": false, "side": "negative", "span": [ 5.7914957381010135, 6.079816870771905 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 7, 6.4, 6.9, 5.5, 6.5, 5.7, 6.3, 4.9, 6.6, 5.2, 5, 5.9, 6, 6.1, 5.6, 6.7, 5.6, 5.8, 6.2, 5.6, 5.9, 6.1, 6.3, 6.1, 6.4, 6.6, 6.8, 6.7, 6, 5.7, 5.5, 5.5, 5.8, 6, 5.4, 6, 6.7, 6.3, 5.6, 5.5, 5.5, 6.1, 5.8, 5, 5.6, 5.7, 5.7, 6.2, 5.1, 5.7 ], "y0": "versicolor" }, { "fillcolor": "hsla(246, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(246, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "Petal.Length", "line": { "color": "hsla(246, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(246, 70%, 70%,1)", "line": { "color": "hsla(246, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "hexagram" }, "meanline": { "color": "hsla(246, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "Petal.Length", "orientation": "h", "pointpos": -0.6, "points": "all", "scalegroup": "versicolor", "scalemode": "count", "showlegend": false, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 4.7, 4.5, 4.9, 4, 4.6, 4.5, 4.7, 3.3, 4.6, 3.9, 3.5, 4.2, 4, 4.7, 3.6, 4.4, 4.5, 4.1, 4.5, 3.9, 4.8, 4, 4.9, 4.7, 4.3, 4.4, 4.8, 5, 4.5, 3.5, 3.8, 3.7, 3.9, 5.1, 4.5, 4.5, 4.7, 4.4, 4.1, 4, 4.4, 4.6, 4, 3.3, 4.2, 4.2, 4.2, 4.3, 3, 4.1 ], "y0": "versicolor" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(246, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(246, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "Petal.Length", "line": { "width": 0 }, "marker": { "color": "hsla(246, 50%, 50%,0.9)", "line": { "color": "hsla(246, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "hexagram" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "versicolor", "showlegend": false, "side": "positive", "span": [ 4.132410537395694, 4.397725660970736 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 4.7, 4.5, 4.9, 4, 4.6, 4.5, 4.7, 3.3, 4.6, 3.9, 3.5, 4.2, 4, 4.7, 3.6, 4.4, 4.5, 4.1, 4.5, 3.9, 4.8, 4, 4.9, 4.7, 4.3, 4.4, 4.8, 5, 4.5, 3.5, 3.8, 3.7, 3.9, 5.1, 4.5, 4.5, 4.7, 4.4, 4.1, 4, 4.4, 4.6, 4, 3.3, 4.2, 4.2, 4.2, 4.3, 3, 4.1 ], "y0": "versicolor" }, { "fillcolor": "hsla(328, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(328, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "Petal.Width", "line": { "color": "hsla(328, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(328, 70%, 70%,1)", "line": { "color": "hsla(328, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "star" }, "meanline": { "color": "hsla(328, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "Petal.Width", "orientation": "h", "pointpos": 0.6, "points": "all", "scalegroup": "versicolor", "scalemode": "count", "showlegend": false, "side": "negative", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 1.4, 1.5, 1.5, 1.3, 1.5, 1.3, 1.6, 1, 1.3, 1.4, 1, 1.5, 1, 1.4, 1.3, 1.4, 1.5, 1, 1.5, 1.1, 1.8, 1.3, 1.5, 1.2, 1.3, 1.4, 1.4, 1.7, 1.5, 1, 1.1, 1, 1.2, 1.6, 1.5, 1.6, 1.5, 1.3, 1.3, 1.3, 1.2, 1.4, 1.2, 1, 1.3, 1.2, 1.3, 1.3, 1.1, 1.3 ], "y0": "versicolor" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(328, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(328, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "Petal.Width", "line": { "width": 0 }, "marker": { "color": "hsla(328, 50%, 50%,0.9)", "line": { "color": "hsla(328, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "star" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "versicolor", "showlegend": false, "side": "negative", "span": [ 1.2718946073235178, 1.3822099396318546 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 1.4, 1.5, 1.5, 1.3, 1.5, 1.3, 1.6, 1, 1.3, 1.4, 1, 1.5, 1, 1.4, 1.3, 1.4, 1.5, 1, 1.5, 1.1, 1.8, 1.3, 1.5, 1.2, 1.3, 1.4, 1.4, 1.7, 1.5, 1, 1.1, 1, 1.2, 1.6, 1.5, 1.6, 1.5, 1.3, 1.3, 1.3, 1.2, 1.4, 1.2, 1, 1.3, 1.2, 1.3, 1.3, 1.1, 1.3 ], "y0": "versicolor" }, { "fillcolor": "hsla(82, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(82, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "Sepal.Width", "line": { "color": "hsla(82, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(82, 70%, 70%,1)", "line": { "color": "hsla(82, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "cross" }, "meanline": { "color": "hsla(82, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "Sepal.Width", "orientation": "h", "pointpos": -0.6, "points": "all", "scalegroup": "virginica", "scalemode": "count", "showlegend": false, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 3.3, 2.7, 3, 2.9, 3, 3, 2.5, 2.9, 2.5, 3.6, 3.2, 2.7, 3, 2.5, 2.8, 3.2, 3, 3.8, 2.6, 2.2, 3.2, 2.8, 2.8, 2.7, 3.3, 3.2, 2.8, 3, 2.8, 3, 2.8, 3.8, 2.8, 2.8, 2.6, 3, 3.4, 3.1, 3, 3.1, 3.1, 3.1, 2.7, 3.2, 3.3, 3, 2.5, 3, 3.4, 3 ], "y0": "virginica" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(82, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(82, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "Sepal.Width", "line": { "width": 0 }, "marker": { "color": "hsla(82, 50%, 50%,0.9)", "line": { "color": "hsla(82, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "cross" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "virginica", "showlegend": false, "side": "positive", "span": [ 2.8864095177113396, 3.0653953766967095 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 3.3, 2.7, 3, 2.9, 3, 3, 2.5, 2.9, 2.5, 3.6, 3.2, 2.7, 3, 2.5, 2.8, 3.2, 3, 3.8, 2.6, 2.2, 3.2, 2.8, 2.8, 2.7, 3.3, 3.2, 2.8, 3, 2.8, 3, 2.8, 3.8, 2.8, 2.8, 2.6, 3, 3.4, 3.1, 3, 3.1, 3.1, 3.1, 2.7, 3.2, 3.3, 3, 2.5, 3, 3.4, 3 ], "y0": "virginica" }, { "fillcolor": "hsla(164, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(164, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "Sepal.Length", "line": { "color": "hsla(164, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(164, 70%, 70%,1)", "line": { "color": "hsla(164, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "triangle-up" }, "meanline": { "color": "hsla(164, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "Sepal.Length", "orientation": "h", "pointpos": 0.6, "points": "all", "scalegroup": "virginica", "scalemode": "count", "showlegend": false, "side": "negative", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.3, 5.8, 7.1, 6.3, 6.5, 7.6, 4.9, 7.3, 6.7, 7.2, 6.5, 6.4, 6.8, 5.7, 5.8, 6.4, 6.5, 7.7, 7.7, 6, 6.9, 5.6, 7.7, 6.3, 6.7, 7.2, 6.2, 6.1, 6.4, 7.2, 7.4, 7.9, 6.4, 6.3, 6.1, 7.7, 6.3, 6.4, 6, 6.9, 6.7, 6.9, 5.8, 6.8, 6.7, 6.7, 6.3, 6.5, 6.2, 5.9 ], "y0": "virginica" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(164, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(164, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "Sepal.Length", "line": { "width": 0 }, "marker": { "color": "hsla(164, 50%, 50%,0.9)", "line": { "color": "hsla(164, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "triangle-up" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "virginica", "showlegend": false, "side": "negative", "span": [ 6.4054384453876425, 6.765280299724338 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 6.3, 5.8, 7.1, 6.3, 6.5, 7.6, 4.9, 7.3, 6.7, 7.2, 6.5, 6.4, 6.8, 5.7, 5.8, 6.4, 6.5, 7.7, 7.7, 6, 6.9, 5.6, 7.7, 6.3, 6.7, 7.2, 6.2, 6.1, 6.4, 7.2, 7.4, 7.9, 6.4, 6.3, 6.1, 7.7, 6.3, 6.4, 6, 6.9, 6.7, 6.9, 5.8, 6.8, 6.7, 6.7, 6.3, 6.5, 6.2, 5.9 ], "y0": "virginica" }, { "fillcolor": "hsla(246, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(246, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "Petal.Length", "line": { "color": "hsla(246, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(246, 70%, 70%,1)", "line": { "color": "hsla(246, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "hexagram" }, "meanline": { "color": "hsla(246, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "Petal.Length", "orientation": "h", "pointpos": -0.6, "points": "all", "scalegroup": "virginica", "scalemode": "count", "showlegend": false, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6, 5.1, 5.9, 5.6, 5.8, 6.6, 4.5, 6.3, 5.8, 6.1, 5.1, 5.3, 5.5, 5, 5.1, 5.3, 5.5, 6.7, 6.9, 5, 5.7, 4.9, 6.7, 4.9, 5.7, 6, 4.8, 4.9, 5.6, 5.8, 6.1, 6.4, 5.6, 5.1, 5.6, 6.1, 5.6, 5.5, 4.8, 5.4, 5.6, 5.1, 5.1, 5.9, 5.7, 5.2, 5, 5.2, 5.4, 5.1 ], "y0": "virginica" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(246, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(246, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "Petal.Length", "line": { "width": 0 }, "marker": { "color": "hsla(246, 50%, 50%,0.9)", "line": { "color": "hsla(246, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "hexagram" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "virginica", "showlegend": false, "side": "positive", "span": [ 5.393009501746601, 5.700333975993296 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 6, 5.1, 5.9, 5.6, 5.8, 6.6, 4.5, 6.3, 5.8, 6.1, 5.1, 5.3, 5.5, 5, 5.1, 5.3, 5.5, 6.7, 6.9, 5, 5.7, 4.9, 6.7, 4.9, 5.7, 6, 4.8, 4.9, 5.6, 5.8, 6.1, 6.4, 5.6, 5.1, 5.6, 6.1, 5.6, 5.5, 4.8, 5.4, 5.6, 5.1, 5.1, 5.9, 5.7, 5.2, 5, 5.2, 5.4, 5.1 ], "y0": "virginica" }, { "fillcolor": "hsla(328, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(328, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "Petal.Width", "line": { "color": "hsla(328, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(328, 70%, 70%,1)", "line": { "color": "hsla(328, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "star" }, "meanline": { "color": "hsla(328, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "Petal.Width", "orientation": "h", "pointpos": 0.6, "points": "all", "scalegroup": "virginica", "scalemode": "count", "showlegend": false, "side": "negative", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 2.5, 1.9, 2.1, 1.8, 2.2, 2.1, 1.7, 1.8, 1.8, 2.5, 2, 1.9, 2.1, 2, 2.4, 2.3, 1.8, 2.2, 2.3, 1.5, 2.3, 2, 2, 1.8, 2.1, 1.8, 1.8, 1.8, 2.1, 1.6, 1.9, 2, 2.2, 1.5, 1.4, 2.3, 2.4, 1.8, 1.8, 2.1, 2.4, 2.3, 1.9, 2.3, 2.5, 2.3, 1.9, 2, 2.3, 1.8 ], "y0": "virginica" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(328, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(328, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "Petal.Width", "line": { "width": 0 }, "marker": { "color": "hsla(328, 50%, 50%,0.9)", "line": { "color": "hsla(328, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "star" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "virginica", "showlegend": false, "side": "negative", "span": [ 1.94896773694741, 2.1030800436926342 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 2.5, 1.9, 2.1, 1.8, 2.2, 2.1, 1.7, 1.8, 1.8, 2.5, 2, 1.9, 2.1, 2, 2.4, 2.3, 1.8, 2.2, 2.3, 1.5, 2.3, 2, 2, 1.8, 2.1, 1.8, 1.8, 1.8, 2.1, 1.6, 1.9, 2, 2.2, 1.5, 1.4, 2.3, 2.4, 1.8, 1.8, 2.1, 2.4, 2.3, 1.9, 2.3, 2.5, 2.3, 1.9, 2, 2.3, 1.8 ], "y0": "virginica" } ], "layout": { "legend": { "tracegroupgap": 0, "x": 1.1, "xanchor": "right", "y": 1.1 }, "margin": { "b": 40, "l": 80, "r": 10, "t": 10 }, "paper_bgcolor": "#eeeeff", "plot_bgcolor": "#ffffff", "showlegend": true, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "barpolar" } ], "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" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "colorscale": { "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" ] ], "sequential": [ [ 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, "#f0f921" ] ], "sequentialminus": [ [ 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, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "text": "Species ~ Sepal.Width, Sepal.Length, Petal.Length, Petal.Width", "x": 0.5 }, "violingap": 0, "violingroupgap": 0, "violinmode": "overlay", "xaxis": { "showgrid": false, "showline": true, "showticklabels": true, "title": { "text": "Sepal.Width, Sepal.Length, Petal.Length, Petal.Width" }, "visible": true, "zeroline": true }, "yaxis": { "showgrid": true, "showline": true, "showticklabels": true, "side": "left", "title": { "text": "Species" }, "visible": true, "zeroline": true } } }, "text/html": [ "
\n", " \n", " \n", "
\n", " \n", "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "go.Figure(*cmplot(iris,xcol=\"Species\")) #using splat operator" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## A little evolutionary history, via box plots and violins:" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "legendgroup": "gender", "marker": { "color": "green" }, "name": "Gender", "orientation": "h", "type": "box", "x": [ 6.99942, 5.99146, 7.67322, 7.09008, 5.61677, 6.55536, 6.646389999999999, 7.02643, 6.4552, 7.32975, 6.39693, 6.95845, 7.06902, 6.04025, 6.907760000000001, 7.91936, 6.745239999999999, 6.30079, 7.068169999999999, 6.07535, 6.907760000000001, 6.7417, 7.71869, 6.882439999999999, 6.47697, 6.50279, 6.77878, 6.907760000000001, 6.93342, 7.06902, 6.57368, 6.829789999999999, 7.557989999999999, 6.892639999999999, 7.0255399999999995, 6.57925, 7.313219999999999, 6.47697, 7.1309, 6.551080000000001, 6.882439999999999, 6.907760000000001, 6.682110000000001, 6.39693, 6.48004, 6.60665, 7.00307, 6.10925, 5.78383, 6.94505, 6.9546399999999995, 7.17012, 7.11477, 6.993930000000001, 6.593039999999999, 6.49979, 6.5439099999999994, 6.39192, 6.614730000000001, 6.51471, 6.30992, 6.30992, 7.116389999999999, 6.46925, 6.30992, 7.554860000000001, 6.90675, 6.85646, 5.94803, 6.90575, 6.90575, 7.408530000000001, 7.0076, 6.88857, 7.35947, 6.39693, 7.041410000000001, 6.66696, 6.30992, 7.313219999999999, 6.62007, 6.787839999999999, 6.90575, 6.802389999999999, 7.00307, 7.074960000000001, 7.5606, 6.17379, 5.99146, 6.16331, 5.94803, 6.2146099999999995, 6.43775, 7.282760000000001, 6.39693, 6.813439999999999, 6.694560000000001, 6.65286, 6.29157, 6.23048, 6.67203, 6.16331, 6.88755, 6.95655, 7.56008, 6.28227, 6.30992, 6.05912, 6.30992, 6.602589999999999, 7.47307, 6.2146099999999995, 6.95655, 6.90575, 6.461469999999999, 7.09008, 7.46737, 6.829789999999999, 6.60665, 6.74052, 6.745239999999999, 7.6009, 6.62007, 6.551080000000001, 6.48158, 6.907760000000001, 6.663130000000001, 7.60589, 6.53669, 6.5582, 6.16121, 6.19236, 6.2146099999999995, 5.8999, 7.37776, 6.6995, 6.58617, 6.23832, 6.27476, 6.48311, 6.69084, 6.54965, 6.745239999999999, 6.882439999999999, 6.663130000000001, 5.70378, 6.7226300000000005, 7.20786, 6.05209, 6.802389999999999, 6.79122, 6.62007, 6.42162, 6.12249, 6.90575, 6.28227, 6.745239999999999, 6.206580000000001, 5.99146, 6.682110000000001, 6.49677, 7.408530000000001, 6.10925, 6.317159999999999, 6.2146099999999995, 6.551080000000001, 6.25575, 7.0884100000000005, 6.16331, 6.68461, 5.8999, 7.01392, 7.1107, 6.9363399999999995, 5.73334, 6.90575, 6.1070199999999994, 6.85646, 6.44572, 6.551080000000001, 6.84588, 8.10168, 7.31255, 5.99645, 6.90575, 6.802389999999999, 7.111510000000001, 6.2146099999999995, 6.66696, 6.907760000000001, 6.90575, 6.6592899999999995, 8.047189999999999, 6.62407, 7.0076, 6.30992, 6.17379, 6.55393, 6.3952599999999995, 6.24611, 7.78322, 6.563860000000001, 6.60665, 7.12448, 6.507280000000001, 6.461469999999999, 6.8977, 6.43775, 7.82405, 7.75148, 6.62407, 7.346010000000001, 6.2146099999999995, 7.1309, 6.51471, 5.96615, 6.84055, 7.041410000000001, 6.51471, 6.551080000000001, 7.346010000000001, 6.966019999999999, 6.90575, 7.17012, 6.5820300000000005, 7.04752, 6.354369999999999, 6.59578, 7.82405, 6.5467900000000006, 6.551080000000001, 6.39693, 6.88755, 6.39693, 6.39693, 6.65286, 6.36647, 6.622739999999999, 6.90575, 5.7525699999999995, 6.15273, 7.04752, 5.52146, 6.770789999999999, 6.907760000000001, 7.00125, 7.064760000000001, 7.00307, 6.907760000000001, 5.463830000000001, 6.05209, 6.745239999999999, 7.045780000000001, 6.54535, 6.37673, 6.62007, 6.907760000000001, 6.10925, 6.39693, 8.16052, 6.745239999999999, 7.03527, 5.43808, 6.765039999999999, 6.77422, 7.1309, 6.77422, 6.87213, 6.551080000000001, 6.907760000000001, 6.6567300000000005, 6.80017, 7.226210000000001, 6.10925, 6.90575, 6.70073, 7.495539999999999, 8.05516, 6.9256, 7.06987, 6.694560000000001, 6.90575, 6.43775, 6.97261, 7.29709, 7.179310000000001, 7.313219999999999, 6.7226300000000005, 6.82437, 6.715380000000001, 7.173189999999999, 6.62007, 6.77878, 6.7226300000000005, 6.47697, 6.85118, 6.49224, 7.313219999999999, 6.62007, 7.158510000000001, 6.818919999999999, 6.68461, 6.57647, 6.43455, 5.68358, 5.89715, 6.2146099999999995, 6.34564, 6.556780000000001, 6.7093, 6.93925, 7.00307, 6.551080000000001, 6.90575, 6.53669, 6.69084, 7.313219999999999, 6.10925, 6.05209, 6.90575, 6.62007, 6.4552, 6.77422, 6.87005, 6.65544, 6.42162, 5.9269300000000005, 6.6783399999999995, 6.317159999999999, 6.42972, 7.1309, 6.62007, 6.96508, 6.19236, 6.61607, 5.5606800000000005, 6.57368, 6.39693, 6.2634, 6.77422, 6.715380000000001, 7.408530000000001, 6.17379, 5.96615, 5.90808, 6.39693, 7.333019999999999, 6.37502, 6.16331, 6.317159999999999, 7.04752, 6.68461, 5.0814, 6.98008, 6.912739999999999, 6.86693, 7.3670800000000005, 6.68461, 7.09008, 6.90575, 6.90575, 6.62007, 6.45362, 6.49072, 6.47697, 6.9431199999999995, 6.90575, 6.10925, 6.67203, 4.605169999999999, 6.7334, 7.34278, 6.802389999999999, 6.90575, 6.658010000000001, 6.9256, 6.90575, 6.91075, 6.6592899999999995, 5.8579300000000005, 6.6592899999999995, 6.16331, 7.441319999999999, 6.47851, 7.07834, 6.745239999999999, 7.20786, 6.36475, 6.63857, 7.475910000000001, 6.62007, 6.4892, 7.00307, 6.7901, 6.56948, 6.65286, 7.43838, 7.15383, 6.86485, 7.064760000000001, 6.88755, 7.26193, 6.23245, 6.30445, 6.92461, 6.715380000000001, 7.313219999999999, 7.37776, 5.8579300000000005, 6.85646, 6.2441699999999996, 7.26193, 6.90575, 5.99146, 6.907760000000001, 6.85646, 6.272880000000001, 6.66568, 7.481560000000001, 7.04752, 6.61338, 6.40688, 6.73815, 5.8579300000000005, 7.57558, 6.83518, 6.38856, 6.768489999999999, 6.90575, 6.86693, 5.4161, 6.39693, 6.34739, 7.1507, 6.58617, 7.282760000000001, 7.00307, 6.66058, 6.58064, 6.30079, 6.90575, 6.10925, 6.64249, 5.76832, 6.715380000000001, 6.62007, 7.1309, 6.51471, 5.99146, 6.95655, 6.65286, 6.16331, 6.24611, 7.1309, 6.16542, 5.93489, 7.1333, 7.24423, 6.04025, 6.86901, 6.802389999999999, 7.04752, 6.70073, 6.1203, 6.90575, 7.313219999999999, 6.54822, 6.95655, 7.50108, 6.39693, 6.19644, 6.551080000000001, 7.07918, 5.8579300000000005, 5.70378, 6.7369699999999995, 5.7525699999999995, 7.745, 6.318969999999999, 6.87213, 5.89715, 6.39693, 6.30628, 6.8773, 6.708080000000001, 5.9454199999999995, 6.52942, 6.818919999999999, 7.041410000000001, 6.4677, 6.06611, 6.882439999999999, 6.94986, 6.703189999999999, 6.37502, 5.70378, 7.03615, 7.37776, 5.66988, 6.907760000000001, 6.882439999999999, 6.752269999999999, 6.48158, 6.47697, 7.04752, 6.802389999999999, 6.768489999999999, 6.2480400000000005, 6.984719999999999, 5.9269300000000005, 6.49224, 6.385190000000001, 7.1309, 7.663880000000001, 6.33328, 7.07242, 6.907760000000001, 6.48311, 6.43775, 8.05516, 6.807930000000001, 6.785589999999999, 6.907760000000001, 6.403569999999999, 6.035480000000001, 7.24423, 6.05209, 7.338889999999999, 7.0255399999999995, 7.00307, 5.99146, 6.33683, 6.07993, 7.488289999999999, 6.51175, 5.7365699999999995, 7.00307, 5.8999, 5.7365699999999995, 6.90575, 6.697030000000001, 6.354369999999999, 6.802389999999999, 6.62007, 6.68461, 6.68835, 6.62007, 6.36475, 5.8260000000000005, 6.85646, 6.44572, 6.95655, 7.20786, 6.3716099999999996, 6.8977, 6.47697, 6.802389999999999, 6.90575, 6.84055, 7.676010000000001, 6.85646, 6.43775, 7.20786, 6.89163, 7.0121199999999995, 6.85646, 6.77422, 6.54965, 6.65286, 6.05209, 6.697030000000001, 6.90575, 6.68461, 6.62007, 7.24423, 6.36819, 6.8844899999999996, 6.62007, 6.745239999999999, 6.19236, 5.7525699999999995, 6.39693, 6.85646, 6.025869999999999, 6.7334, 5.9269300000000005, 5.98896, 6.48004, 6.20456, 6.55393, 6.5903, 7.02643, 7.15305, 6.31536, 6.19236, 6.43615, 6.6871100000000006, 6.42162, 6.06379, 6.93537, 7.09008, 6.802389999999999, 6.47697, 6.2634, 7.79028, 6.10032, 6.0282800000000005, 7.408530000000001, 6.6174, 6.907760000000001, 6.90575, 5.95324, 6.1070199999999994, 5.99146, 6.05209, 6.2441699999999996, 6.00141, 6.39693, 6.79122, 6.9196800000000005, 6.9147300000000005, 6.90575, 6.408530000000001, 5.9269300000000005, 6.646389999999999, 6.746410000000001, 6.30992, 6.42972, 6.18826, 6.5467900000000006, 7.522939999999999, 5.51745, 6.7334, 6.07993, 6.907760000000001, 6.90575, 6.715380000000001, 7.04752, 6.66185, 6.47697, 7.23418, 6.54247, 6.753439999999999, 6.51471, 7.034389999999999, 6.65286, 7.262630000000001, 6.47697, 7.20786, 6.90575, 6.30992, 6.984719999999999, 6.85646, 6.85646, 6.30445, 6.32972, 6.05209, 6.34564, 6.95655, 6.49224, 6.62007, 5.82895, 6.39693, 6.06146, 6.43775, 6.03787, 6.3952599999999995, 6.22654, 7.144410000000001, 6.90575, 6.91374, 5.70378, 7.6009, 6.5903, 7.1592899999999995, 6.57786, 6.6783399999999995, 6.72383, 6.41182, 6.53233, 6.907760000000001, 6.7334, 7.236339999999999, 6.20456, 6.802389999999999, 6.10925, 6.715380000000001, 6.72743, 6.551080000000001, 7.084230000000001, 6.97635, 7.20786, 6.685860000000001, 6.8977, 7.00307, 6.35089, 5.70378, 6.59167, 6.461469999999999, 6.984719999999999, 6.53233, 6.646389999999999, 6.39693, 6.16331, 6.95655, 7.459910000000001, 6.19848, 7.0255399999999995, 7.1309, 6.745239999999999, 6.22654, 6.10925, 7.08171, 6.64249, 7.49332, 6.2634, 7.495539999999999, 7.1546199999999995, 7.1309, 6.3716099999999996, 6.745239999999999, 6.18415, 5.82895, 6.10925, 6.58617, 6.48158, 6.20456, 7.313219999999999, 6.94022, 6.90575, 6.41836, 6.10925, 7.48717, 7.0193, 6.983789999999999, 6.633319999999999, 6.10925, 6.29157, 7.49109, 6.91672, 6.90575, 6.93537, 6.51323, 6.715380000000001, 5.8141300000000005, 6.47697, 7.37212, 6.646389999999999, 6.56244, 7.0184, 6.84055, 7.24423, 6.834110000000001, 7.09008, 6.52942, 7.4553, 6.23245, 7.00307, 6.37502, 7.1309, 7.24423, 6.48158, 6.57925, 6.68461, 6.30992, 6.34388, 6.10925, 6.90575, 6.90575, 7.24423, 7.75577, 6.82437, 6.43775, 6.18415, 6.43775, 5.34711, 6.90575, 7.1107, 6.44572, 6.42162, 6.769639999999999, 6.93245, 6.818919999999999, 6.551080000000001, 7.279319999999999, 6.58617, 6.96508, 6.44572, 6.7093, 6.83195, 6.28972, 7.1082399999999994, 7.135689999999999, 6.49072, 7.251339999999999, 8.51719, 6.58064, 6.807930000000001, 7.14756, 7.33368, 6.77422, 6.60394, 6.68461, 7.1309, 5.99146, 7.201169999999999, 5.99146, 6.10925, 6.68461, 6.39693, 6.927560000000001, 6.85751, 6.33683, 6.95655, 6.08677, 7.24423, 7.1309, 6.17587, 6.802389999999999, 6.30992, 6.36303, 5.8999, 6.77422, 6.2860000000000005, 6.828710000000001, 6.47697, 6.72743, 6.55251, 6.29157, 5.59842, 6.5582, 6.62407, 5.9814099999999994, 6.76273, 7.06902, 5.9269300000000005, 6.80128, 6.354369999999999, 7.313219999999999, 6.966019999999999, 5.95324, 6.6592899999999995, 6.39693, 6.57786, 6.62007, 6.65286, 5.9454199999999995, 6.293419999999999, 5.4161, 5.87493, 5.64545, 6.79122, 6.987489999999999, 6.30992, 5.7525699999999995, 6.55536, 7.09008, 6.28972, 6.2146099999999995, 7.04752, 6.90575, 6.10925, 6.6783399999999995, 6.39693, 7.259119999999999, 7.43838, 6.47697, 7.1309, 6.2952699999999995, 6.77422, 6.2634, 6.739339999999999, 7.46737, 6.47697, 6.90575, 7.279319999999999, 6.815639999999999, 7.1309, 6.05209, 6.65028, 6.27099, 7.17012, 6.354369999999999, 6.29157, 6.802389999999999, 6.551080000000001, 6.602589999999999, 6.47697, 6.63857, 6.58755, 6.77422, 6.621410000000001, 6.907760000000001, 7.09589, 6.882439999999999, 5.45959, 6.05209, 5.82305, 7.67322, 6.85646, 5.8579300000000005, 5.78074, 6.2146099999999995, 7.2957399999999994, 5.84354, 6.802389999999999, 6.58064, 6.2634, 7.00307, 6.90575, 7.21891, 7.503839999999999, 6.12905, 6.45677, 6.950810000000001, 5.97126, 6.23048, 6.15273, 6.02345, 7.57558, 6.96035, 6.3716099999999996, 6.2146099999999995, 6.7334, 6.86066, 6.378430000000001, 6.48004, 7.00307, 6.8200199999999995, 6.47697, 6.90575, 7.39388, 7.4787300000000005, 6.2146099999999995, 6.802389999999999, 6.43775, 7.24065, 5.70378, 6.13773, 6.3952599999999995, 7.1025, 7.04752, 5.883319999999999, 7.09008, 6.77992, 6.9256, 6.035480000000001, 7.22766, 7.475339999999999, 6.62007, 5.72031, 6.272880000000001, 6.01616, 6.27099, 7.91936, 6.2146099999999995, 6.85646, 6.354369999999999, 6.907760000000001, 6.2634, 6.51471, 6.92166, 6.253830000000001, 5.9269300000000005, 6.745239999999999, 6.30992, 7.3651800000000005, 6.24998, 6.893660000000001, 6.53669, 6.43615, 7.04752, 6.30992, 6.39693, 5.59842, 6.1334, 6.58617, 6.765039999999999, 6.85646, 6.892639999999999, 6.95655, 5.99146, 6.43775, 6.90575, 6.81124, 6.966019999999999, 6.8865300000000005, 6.62007, 7.334980000000001, 6.72743, 6.93245, 7.27031, 7.03878, 6.901739999999999, 7.0255399999999995, 6.10925, 6.83518, 6.77992, 6.68461, 7.696210000000001, 6.53669, 6.52942, 6.126869999999999, 6.54965, 6.715380000000001, 7.31122, 5.8693, 6.90575, 6.0282800000000005, 6.30992, 6.23245, 6.31536, 7.486610000000001, 5.8579300000000005, 6.52942, 6.8426800000000005, 6.14204, 6.88755, 6.62007, 6.34564, 6.44413, 6.62007, 5.99146, 6.93245, 7.37776, 6.907760000000001, 5.99146, 7.18917, 6.7093, 6.75926, 6.3315, 6.5439099999999994, 6.1717, 7.9459100000000005, 6.77422, 7.424760000000001, 6.45362, 5.70378, 6.43775, 6.90575, 7.6009, 6.90575, 7.46737, 6.694560000000001, 6.907760000000001, 8.16052, 6.17379, 6.98008, 5.81711, 6.984719999999999, 6.44254, 6.802389999999999, 6.30079, 5.99146, 6.802389999999999, 7.32647, 6.745239999999999, 7.1309, 6.7901, 5.96101, 6.62007, 6.84055, 6.58617, 6.51471, 7.1309, 6.17379, 7.00307, 7.78322, 6.62007, 5.7525699999999995, 6.62407, 6.07993, 6.795710000000001, 7.212289999999999, 6.05209, 6.38856, 6.93925, 6.47697, 6.8773, 6.354369999999999, 7.9724699999999995, 6.11589, 7.64969, 6.703189999999999, 6.658010000000001, 6.47697, 6.50429, 6.58617, 5.74939, 6.893660000000001, 6.51471, 6.06611, 6.68461, 6.65544, 7.331060000000001, 6.64118, 6.33328, 6.47697, 7.475910000000001, 6.72743, 7.20786, 6.81124, 7.0201899999999995, 7.279319999999999, 8.02027, 6.80461, 5.99645, 7.10906, 6.40523, 6.77422, 7.01571, 6.54822, 6.14204, 6.57786, 6.47697, 6.386880000000001, 7.0255399999999995, 7.24423, 5.93225, 5.9269300000000005, 7.46737, 5.8141300000000005, 6.69084, 6.47697, 6.85646, 6.88755, 7.24423, 6.2634, 6.95655, 6.67077, 6.85646, 7.313219999999999, 5.86647, 6.98008, 6.75577, 6.01616, 6.566669999999999, 7.09008, 6.697030000000001, 5.78383, 6.79794, 6.2634, 6.61874, 6.64118, 7.1309, 6.98101, 6.90575, 5.90263, 6.17794, 6.77422, 6.96035, 6.6515699999999995, 6.35957, 6.829789999999999, 6.66568, 7.09008, 6.10925, 6.85646, 6.90575, 6.95655, 6.126869999999999, 7.1309, 6.4552, 6.58617, 7.23778, 6.278519999999999, 6.66568, 6.21261, 6.57925, 6.907760000000001, 6.30992, 6.802389999999999, 6.88755, 7.08171, 6.6567300000000005, 7.696210000000001, 6.68461, 6.10925, 6.785589999999999, 6.43775, 6.47697, 6.802389999999999, 7.04752, 6.6592899999999995, 5.4161, 6.48311, 6.408530000000001, 6.84055, 7.17778, 6.2634, 6.4892, 6.62007, 6.95177, 6.785589999999999, 7.033510000000001, 6.04025, 7.1107, 6.57647, 6.85646, 6.39693, 6.23637, 6.530880000000001, 6.36819, 6.43775, 6.90575, 6.30992, 6.85646, 6.62007, 6.04025, 6.79122, 6.30992, 6.62007, 5.76832, 6.81014, 6.551080000000001, 6.56526, 6.551080000000001, 7.09008, 6.86693, 6.9613, 6.7901, 6.95655, 6.65286, 5.9814099999999994, 6.43775, 6.28227, 5.940169999999999, 7.46737, 6.35957, 7.18007, 6.2146099999999995, 7.46737, 6.90575, 6.253830000000001, 6.52209, 6.1025599999999995, 7.37776, 6.90575, 5.99146, 7.46737, 6.1025599999999995, 5.99146, 6.18826, 6.4552, 6.59987, 6.15698, 7.346010000000001, 6.68461, 7.6009, 7.14913, 6.96885, 7.27031, 6.317159999999999, 6.72503, 5.8861, 5.99146, 6.62007, 6.6871100000000006, 7.17012, 6.802389999999999, 5.93754, 6.995769999999999, 6.802389999999999, 6.52356, 6.55251, 6.56526, 6.72383, 7.09008, 6.885510000000001, 6.68461, 6.52209, 7.313219999999999, 6.94698, 6.561030000000001, 6.907760000000001, 7.71869, 6.1717, 5.96615, 7.143619999999999, 6.41673, 6.907760000000001, 6.29157, 6.354369999999999, 7.00307, 6.802389999999999, 6.90375, 5.958419999999999, 6.1944099999999995, 7.09008, 6.90575, 6.47697, 7.26193, 5.98645, 6.60665, 6.424869999999999, 6.745239999999999, 5.8579300000000005, 7.37776, 6.13773, 6.882439999999999, 6.907760000000001, 6.858569999999999, 6.745239999999999, 7.495539999999999, 7.1546199999999995, 6.68461, 6.2804, 6.6592899999999995, 6.77422, 6.893660000000001, 6.86693, 7.408530000000001, 6.72743, 6.42972, 6.633319999999999, 7.0579, 6.68461, 7.185389999999999, 7.26543, 7.05099, 6.10925, 6.60123, 7.233460000000001, 6.90575, 6.77194, 6.715380000000001, 5.8861, 6.6567300000000005, 6.3243599999999995, 6.55393, 6.90575, 6.10925, 6.9613, 6.90575, 6.907760000000001, 6.90975, 7.64969, 7.1309, 6.745239999999999, 5.99146, 6.354369999999999, 5.4161, 6.55536, 6.02102, 6.7334, 6.47697, 6.47697, 6.53669, 6.95655, 6.551080000000001, 6.16331, 7.6009, 6.90575, 6.10925, 7.17242, 6.3421199999999995, 6.9196800000000005, 6.65286, 6.51471, 7.24423, 6.39693, 6.85646, 6.551080000000001, 6.86693, 6.35611, 6.90575, 5.65948, 6.34914, 7.696210000000001, 7.17012, 6.802389999999999, 5.940169999999999, 6.253830000000001, 6.90575, 6.48464, 6.49224, 6.82763, 6.90575, 6.26149, 7.014810000000001, 6.551080000000001, 6.2634, 7.04752, 6.90575, 7.20786, 7.02997, 7.803839999999999, 6.31355, 6.89467, 6.829789999999999, 7.17012, 7.54961, 7.28207, 6.69084, 7.1929300000000005, 6.33328, 5.84354, 6.85646, 6.29157, 6.912739999999999, 6.80017, 6.97635, 6.2653, 6.07535, 7.1309, 7.17012, 6.59715, 7.0884100000000005, 6.77992, 7.16627, 6.19644, 5.50126, 6.39693, 5.9814099999999994, 6.90575, 6.90575, 6.6958, 5.01728, 7.279319999999999, 7.136480000000001, 6.608, 6.68461, 7.9831, 6.77422, 6.9828600000000005, 6.30992, 6.2146099999999995, 7.09506, 6.44572, 6.2634, 6.90575, 6.90575, 7.08339, 5.96615, 6.9622399999999995, 5.82008, 7.11233, 6.912739999999999, 6.68461, 6.85646, 6.4708, 6.8254600000000005, 7.346010000000001, 6.68085, 7.24423, 6.8426800000000005, 6.62007, 6.1070199999999994, 6.33328, 6.15698, 6.15698, 6.893660000000001, 6.43775, 6.30262, 6.253830000000001, 7.30317, 6.829789999999999, 6.56808, 5.8999, 5.99146, 6.36303, 7.20786, 6.752269999999999, 6.95655, 6.02102, 6.633319999999999, 6.2634, 7.183110000000001, 6.33328, 6.907760000000001, 6.9707300000000005, 6.6174, 7.43838, 6.45047, 6.9707300000000005, 6.3952599999999995, 7.09008, 6.49979, 6.94986, 7.06902, 6.6567300000000005, 6.745239999999999, 6.68461, 7.22766, 6.68461, 6.93049, 7.1309, 6.975410000000001, 6.2672, 6.50279, 6.551080000000001, 6.59987, 6.7334, 6.16331, 6.2146099999999995, 6.95655, 6.694560000000001, 6.44572, 6.6783399999999995, 7.408530000000001, 7.09008, 6.849069999999999, 6.614730000000001, 6.72743, 6.17379, 7.03615, 6.05209, 6.6280399999999995, 6.83518, 7.09008, 6.1070199999999994, 6.63857, 6.17794, 6.551080000000001, 6.712960000000001, 6.30992, 7.07834, 6.39693, 6.57228, 7.346010000000001, 6.938280000000001, 6.715380000000001, 6.7511, 6.715380000000001, 6.58617, 5.59842, 6.3935900000000006, 7.26193, 6.49072, 6.829789999999999, 6.745239999999999, 6.721430000000001, 5.97635, 6.59715, 6.00389, 6.9828600000000005, 6.29157, 6.62007, 6.85646, 6.86901, 7.04752, 6.23441, 6.551080000000001, 6.63726, 6.14633, 6.0282800000000005, 6.563860000000001, 6.73102, 6.2634, 6.3243599999999995, 6.721430000000001, 6.6796, 7.062189999999999, 6.10925, 7.313219999999999, 6.34564, 6.561030000000001, 6.17379, 7.06987, 6.87626, 6.505780000000001, 6.745239999999999, 6.39859, 6.966019999999999, 6.4488900000000005, 7.1309, 6.68461, 6.575080000000001, 6.40192, 6.70073, 6.56808, 6.7334, 6.30992, 7.0775, 6.6796, 6.8384100000000005, 5.42935, 7.03615, 6.6592899999999995, 6.85751, 6.745239999999999, 7.313219999999999, 6.86693, 7.08171, 6.85646, 6.47697, 6.47697, 6.907760000000001, 6.28972, 7.46737, 7.2724, 6.61874, 6.30079, 7.0255399999999995, 6.27099, 6.90575, 6.34564, 6.47697, 6.9828600000000005, 7.450080000000001, 6.224559999999999, 6.551080000000001, 6.551080000000001, 6.551080000000001, 6.23441, 6.77422, 7.1309, 6.52209, 7.49332, 6.39192, 6.739339999999999, 7.4832399999999994, 6.16331, 6.68461, 6.90575, 6.715380000000001, 6.90575, 7.1309, 6.86171, 6.68461, 6.715380000000001, 5.70378, 6.551080000000001, 6.802389999999999, 6.33683, 6.9187, 7.0579, 6.35611, 7.02376, 6.45834, 5.8141300000000005, 5.4161, 5.5797300000000005, 6.90575, 6.82655, 6.90575, 5.9269300000000005, 7.42833, 5.87212, 6.463030000000001, 7.52833, 6.86797, 6.95655, 6.88755, 6.60665, 6.90575, 6.4677, 7.3651800000000005, 6.748760000000001, 6.77992, 6.975410000000001, 7.43838, 7.82405, 6.5439099999999994, 6.42162, 6.8844899999999996, 7.16085, 6.52209, 6.04025, 5.52146, 6.90575, 7.00307, 6.907760000000001, 6.23441, 6.463030000000001, 6.817830000000001, 7.279319999999999, 6.907760000000001, 7.54961, 7.323169999999999, 6.90575, 6.41017, 6.90575, 6.65286, 6.787839999999999, 6.62007, 7.0967199999999995, 5.9269300000000005, 6.55393, 7.0255399999999995, 6.17379, 7.00307, 7.31122, 6.39693, 7.31122, 6.31355, 5.8141300000000005, 6.44572, 6.59578, 6.47697, 7.226210000000001, 6.62007, 6.69332, 6.7511, 6.77422, 7.09008, 5.8579300000000005, 7.183110000000001, 7.728860000000001, 6.54965, 7.04752, 7.25488, 6.9256, 6.907760000000001, 6.3952599999999995, 5.65249, 7.041410000000001, 6.4599, 6.96035, 7.1333, 6.99942, 6.38012, 7.200419999999999, 6.06379, 5.42053, 7.18007, 7.1309, 6.461469999999999, 6.85646, 7.17012, 7.03527, 6.19848, 6.62007, 7.313219999999999, 5.8861, 6.52209, 5.8861, 7.20786, 6.907760000000001, 6.90575, 6.05209, 7.1452, 6.02102, 5.82895, 6.33683, 6.04025, 6.2146099999999995, 7.8935699999999995, 6.34564, 6.64249, 6.8977, 6.3699, 6.6567300000000005, 6.813439999999999, 6.53669, 6.90575, 6.05209, 6.47697, 6.05209, 7.21524, 6.551080000000001, 6.66568, 6.57925, 6.2146099999999995, 6.8426800000000005, 6.907760000000001, 6.90575, 7.106610000000001, 5.52146, 6.424869999999999, 6.65415, 6.86693, 6.745239999999999, 6.88346, 6.53669, 6.3207699999999996, 7.696210000000001, 7.64779, 7.313219999999999, 6.95655, 5.95584, 6.715380000000001, 6.44254, 6.8966899999999995, 6.61338, 6.8426800000000005, 6.23245, 6.95655, 6.768489999999999, 5.52146, 7.3981699999999995, 6.06379, 6.2205900000000005, 6.68461, 7.12287, 6.813439999999999, 6.752269999999999, 6.551080000000001, 6.86066, 6.7334, 6.318969999999999, 6.79122, 6.0822199999999995, 5.95324, 6.745239999999999, 7.1309, 6.54103, 7.06048, 6.24222, 6.68461, 6.9177100000000005, 6.05209, 7.04752, 6.78672, 7.09008, 7.1309, 6.47697, 7.1025, 5.9814099999999994, 7.24423, 6.44254, 7.451239999999999, 7.198180000000001, 7.27101, 7.245660000000001, 6.51471, 7.279319999999999, 6.85646, 7.279319999999999, 6.3952599999999995, 7.67322, 6.76273, 6.82437, 6.47697, 6.885510000000001, 7.07918, 7.279319999999999, 7.1309, 6.966019999999999, 6.73102, 6.70073, 6.633319999999999, 6.07993, 6.46925, 7.00307, 5.940169999999999, 7.6009, 6.22654, 6.907760000000001, 6.32615, 6.508769999999999, 6.551080000000001, 7.0884100000000005, 6.39693, 6.829789999999999, 7.31986, 6.21661, 7.11802, 6.77422, 7.26193, 6.90575, 7.17012, 7.00307, 5.99146, 7.46737, 6.57786, 6.3081, 6.90575, 6.58755, 6.8254600000000005, 6.311730000000001, 6.39693, 6.95655, 6.62007, 6.3952599999999995, 7.04752, 6.48311, 6.50429, 6.39693, 6.90575, 6.60665, 6.90575, 6.318969999999999, 6.802389999999999, 6.70441, 6.51471, 6.77992, 5.99146, 6.68461, 6.29157, 6.62007, 6.40523, 6.18826, 7.24423, 6.83518, 7.09008, 7.84502, 6.62007, 7.1624, 6.813439999999999, 6.907760000000001, 6.68461, 6.14633, 7.17012, 6.53814, 6.2146099999999995, 6.882439999999999, 6.36647, 6.47697, 7.54697, 6.60665, 6.29895, 6.68461, 7.408530000000001, 7.2724, 6.46614, 6.90575, 6.95655, 5.8579300000000005, 6.745239999999999, 5.7462, 6.36303, 7.20786, 7.04752, 7.04316, 6.551080000000001, 6.58064, 6.17379, 6.83195, 6.8533, 5.70378, 7.20786, 6.62007, 6.95655, 5.93225, 6.90575, 6.34564, 7.09008, 7.014810000000001, 6.73815, 6.65028, 7.03878, 6.10032, 7.266830000000001, 6.95655, 6.58617, 6.49072, 7.20786, 6.68461, 6.602589999999999, 5.78383, 6.551080000000001, 6.87626, 5.16479, 7.54961, 6.551080000000001, 6.84055, 6.49224, 6.58893, 5.2983199999999995, 6.60665, 6.907760000000001, 7.64969, 6.9177100000000005, 6.35957, 6.18415, 6.68461, 7.43838, 6.66441, 6.551080000000001, 5.99146, 5.82008, 6.41182, 6.43775, 6.10925, 6.43775, 6.4599, 6.04025, 7.00307, 5.99146, 6.852239999999999, 6.51175, 6.5439099999999994, 6.6515699999999995, 7.522939999999999, 6.16331, 6.551080000000001, 6.907760000000001, 7.04752, 6.44572, 6.3243599999999995, 6.41346, 6.551080000000001, 6.802389999999999, 6.62007, 6.5439099999999994, 6.57925, 6.38012, 6.4151, 6.52209, 6.29157, 6.39693, 6.59715, 5.01064, 6.2146099999999995, 6.97167, 6.75926, 6.73102, 6.66823, 7.37776, 6.77422, 7.1309, 6.90575, 6.10925, 7.408530000000001, 6.30992, 6.39693, 6.04025, 7.0396600000000005, 7.09589, 7.10003, 6.73102, 6.87523, 6.90575, 7.20786, 7.173960000000001, 6.90575, 6.47389, 6.99026, 7.0884100000000005, 6.206580000000001, 5.5606800000000005, 6.56526, 6.44572, 6.802389999999999, 6.551080000000001, 6.53379, 6.90575, 6.46614, 6.61338, 6.90575, 6.85646, 6.47389, 6.10925, 6.99118, 6.2441699999999996, 7.1592899999999995, 6.697030000000001, 6.90575, 6.59987, 7.01571, 6.42162, 6.716589999999999, 6.85646, 7.46737, 6.58617, 6.95655, 6.29157, 6.907760000000001, 6.8426800000000005, 6.46459, 6.62007, 6.95177, 6.58617, 6.50129, 6.2952699999999995, 6.85646, 6.15698, 6.90575, 7.6009, 6.30992, 7.00307, 6.17379, 6.15273, 7.01392, 6.62007, 7.346010000000001, 6.90575, 6.68461, 6.50429, 7.24423, 7.0942300000000005, 5.78383, 6.54535, 6.3716099999999996, 7.86327, 6.62007, 7.09008, 6.703189999999999, 6.354369999999999, 6.53233, 6.58617, 6.602589999999999, 7.46737, 6.9622399999999995, 6.424869999999999, 6.39693, 6.38012, 6.802389999999999, 6.43935, 6.259580000000001, 7.044910000000001, 6.42162, 6.90575, 6.802389999999999, 6.44413, 7.127689999999999, 6.45677, 6.40192, 6.55393, 6.593039999999999, 7.06902, 6.59987, 6.802389999999999, 6.715380000000001, 6.715380000000001, 6.39693, 6.57786, 6.68461, 7.00307, 6.42972, 6.85435, 6.58893, 6.937310000000001, 6.2106, 6.708080000000001, 6.0845, 6.907760000000001, 6.16331, 6.43775, 6.2146099999999995, 6.2441699999999996, 6.2634, 6.74406, 6.85646, 6.73221, 5.72031, 5.97635, 6.13123, 7.54961, 6.37673, 6.90575, 6.62007, 6.768489999999999, 6.63595, 5.82895, 6.90575, 6.75577, 6.04025, 6.77194, 6.77422, 6.99485, 6.58617, 5.8999, 6.2146099999999995, 6.2146099999999995, 6.6567300000000005, 6.62007, 6.9489, 7.354360000000001, 7.279319999999999, 5.8861, 6.6592899999999995, 7.06305, 6.61338, 7.00307, 6.49224, 6.07993, 6.84588, 6.35611, 6.35611, 6.8977, 6.551080000000001, 7.20786, 6.90575, 7.59287, 6.17587, 7.1309, 7.393260000000001, 6.95655, 6.834110000000001, 6.07993, 7.10988, 6.802389999999999, 6.224559999999999, 6.57925, 6.927560000000001, 6.90575, 7.09008, 7.1309, 6.90575, 6.907760000000001, 5.8693, 6.16542, 6.62007, 7.6009, 6.963189999999999, 6.95655, 6.90575, 6.43775, 6.90575, 6.796819999999999, 6.66568, 6.73459, 6.907760000000001, 6.8533, 6.813439999999999, 7.196689999999999, 6.43615, 6.9147300000000005, 6.551080000000001, 6.77194, 6.90575, 6.90575, 6.66823, 6.47697, 7.0255399999999995, 7.522939999999999, 6.62007, 6.354369999999999, 7.1546199999999995, 6.90575, 6.551080000000001, 5.78383, 6.753439999999999, 6.77422, 7.313219999999999, 6.967910000000001, 6.816739999999999, 7.6009, 6.745239999999999, 6.51471, 7.37588, 6.86485, 6.41346, 6.7093, 6.551080000000001, 6.22654, 7.24423, 5.70378, 6.06146, 6.16331, 7.05359, 6.49224, 6.86171, 6.58617, 7.1309, 6.77422, 7.93737, 6.39693, 6.58617, 7.67322, 6.551080000000001, 6.2146099999999995, 6.77422, 6.2634, 6.99485, 6.45047, 6.66185, 6.94119, 6.90575, 7.21891, 7.57558, 7.495539999999999, 6.29157, 6.10925, 6.59715, 7.09008, 6.03787, 6.556780000000001, 6.2146099999999995, 6.354369999999999, 7.6009, 6.83303, 6.63068, 6.551080000000001, 7.279319999999999, 6.354369999999999, 7.925160000000001, 6.77422, 7.183110000000001, 6.1136800000000004, 6.77992, 6.62007, 7.00307, 7.86327, 6.70073, 6.795710000000001, 7.1309, 6.32794, 6.16121, 5.6801699999999995, 6.65286, 6.802389999999999, 6.715380000000001, 6.95655, 6.78333, 6.90575, 6.67582, 6.47697, 6.907760000000001, 6.90575, 6.682110000000001, 6.19236, 6.53233, 6.882439999999999, 7.0255399999999995, 6.23048, 6.715380000000001, 7.872839999999999, 6.49072, 6.90575, 6.4892, 6.63726, 6.12249, 6.3613, 6.79122, 6.53233, 6.05209, 6.907760000000001, 6.697030000000001, 6.8742, 6.08677, 6.6280399999999995, 6.907760000000001, 6.05209, 5.70378, 5.68698, 7.02997, 6.715380000000001, 6.2146099999999995, 6.90575, 7.313219999999999, 6.3699, 6.12249, 6.14847, 6.07074, 6.77992, 6.54822, 6.62007, 6.59987, 6.62007, 6.8966899999999995, 6.802389999999999, 6.7226300000000005, 6.07993, 6.51026, 6.907760000000001, 6.50429, 6.47697, 6.58617, 5.88053, 6.77422, 6.8977, 5.9135, 6.17379, 8.047189999999999, 6.93537, 6.2146099999999995, 6.507280000000001, 7.46737, 5.82895, 7.034389999999999, 6.7569300000000005, 7.2998, 6.95655, 6.17794, 6.68461, 7.495539999999999, 6.62007, 6.88755, 6.45205, 6.802389999999999, 6.32794, 6.10925, 6.68461, 8.03916, 6.829789999999999, 6.6745600000000005, 6.714169999999999, 6.43775, 5.4161, 7.00307, 6.43455, 6.90575, 7.346660000000001, 6.9256, 7.6009, 7.10988, 7.24423, 6.7569300000000005, 6.48004, 6.38856, 6.889589999999999, 7.313219999999999, 6.9256, 6.59167, 6.57786, 6.53669, 6.39693, 6.33328, 6.33328, 7.313219999999999, 6.551080000000001, 7.408530000000001, 6.802389999999999, 7.3908, 6.90575, 5.86079, 6.9256, 6.95655, 6.13123, 5.99894, 6.551080000000001, 7.06561, 6.57925, 6.90575, 6.73102, 7.09008, 6.566669999999999, 6.9966800000000005, 6.43775, 6.62007, 6.68461, 6.424869999999999, 6.646389999999999, 5.39363, 5.96615, 6.2146099999999995, 6.802389999999999, 6.90575, 6.9613, 5.70378, 6.78672, 6.65286, 7.24423, 7.09008, 6.602589999999999, 6.42162, 7.0422899999999995, 7.034389999999999, 6.52209, 6.59987, 6.44572, 6.20456, 6.57925, 6.38012, 6.16331, 5.96615, 7.43838, 6.818919999999999, 6.551080000000001, 6.53669, 6.95655, 5.76832, 7.2100800000000005, 6.48311, 6.507280000000001, 6.45362, 6.765039999999999, 6.2634, 6.2691, 7.18917, 5.9135, 6.6896, 6.2146099999999995, 6.802389999999999, 6.50129, 6.2634, 7.38647, 6.96885, 6.10925, 7.196689999999999, 6.3403599999999996, 6.14419, 6.818919999999999, 6.72623, 6.90575, 7.04752, 6.7569300000000005, 6.62936, 7.09008, 6.692080000000001, 6.62007, 5.9839400000000005, 6.013719999999999, 6.95655, 7.49332, 6.62007, 6.31355, 6.62007, 6.753439999999999, 6.77422, 6.2653, 7.495539999999999, 6.7334, 6.95655, 6.56526, 6.88755, 7.47307, 6.224559999999999, 6.47697, 6.90575, 6.90575, 7.909860000000001, 6.69084, 6.3716099999999996, 6.52209, 6.07304, 7.106610000000001, 6.2146099999999995, 6.40523, 6.69084, 5.627619999999999, 6.802389999999999, 6.6567300000000005, 6.68461, 6.697030000000001, 6.22654, 7.740660000000001, 5.95324, 6.907760000000001, 6.43775, 6.43775, 6.813439999999999, 5.76832, 6.9256, 7.64969, 6.47697, 6.43615, 5.8579300000000005, 6.10925, 7.1309, 5.89715, 6.907760000000001, 6.745239999999999, 6.33683, 6.43775, 6.85646, 6.77422, 6.768489999999999, 5.97889, 6.2146099999999995, 7.029089999999999, 6.62007, 7.06133, 7.24423, 6.95177, 7.54961, 6.354369999999999, 6.87626, 6.318969999999999, 6.570880000000001, 6.34388, 6.62007, 7.61332, 7.09008, 6.7511, 6.8977, 6.551080000000001, 7.40914, 7.034389999999999, 7.18917, 6.49072, 6.30992, 5.70378, 6.55393, 6.1070199999999994, 6.72743, 6.05209, 7.0967199999999995, 6.30992, 6.90575, 6.551080000000001, 6.907760000000001, 6.785589999999999, 6.39693, 6.05209, 6.90575, 6.36819, 6.697030000000001, 6.814539999999999, 6.639880000000001, 6.23637, 6.62007, 7.24423, 6.77194, 6.551080000000001, 6.802389999999999, 5.8999, 5.52146, 6.57228, 7.062189999999999, 6.47697, 6.2441699999999996, 6.829789999999999, 6.95655, 6.47697, 6.907760000000001, 6.38012, 7.293019999999999, 6.91175, 6.68461, 6.45834, 6.556780000000001, 6.5582, 6.91175, 6.45362, 7.1309, 6.36303, 6.8773, 6.955589999999999, 7.80588, 6.9613, 5.4161, 6.907760000000001, 6.90575, 7.18992, 7.507689999999999, 6.90575, 6.385190000000001, 6.748760000000001, 7.31122, 6.6107, 6.807930000000001, 6.79794, 6.1717, 6.16331, 6.6592899999999995, 7.0483899999999995, 6.598510000000001, 5.5797300000000005, 6.633319999999999, 7.6009, 6.09131, 7.106610000000001, 6.90575, 6.04025, 7.66153, 7.22548, 6.48768, 6.87213, 7.17012, 6.23245, 6.39693, 6.4677, 7.35244, 7.183110000000001, 6.56948, 8.00637, 7.05272, 6.33328, 6.90575, 6.802389999999999, 6.30992, 6.551080000000001, 6.10925, 6.77422, 6.30992, 7.522939999999999, 6.49979, 6.802389999999999, 5.7525699999999995, 7.05704, 7.16858, 6.802389999999999, 6.58617, 6.551080000000001, 7.20564, 6.551080000000001, 6.47697, 6.0330900000000005, 7.1507, 6.852239999999999, 7.6009, 6.70564, 5.7525699999999995, 6.90575, 6.802389999999999, 6.11147, 6.95655, 6.84375, 6.95655, 6.8977, 7.34923, 6.93245, 6.34564, 6.79122, 7.03878, 5.8861, 7.400010000000001, 5.8579300000000005, 7.37588, 6.83195, 7.00307, 6.84162, 6.354369999999999, 6.93342, 6.608, 6.85646, 6.61607, 5.82305, 6.056780000000001, 6.90575, 6.697030000000001, 6.5395900000000005, 6.6120399999999995, 6.63726, 7.1309, 6.739339999999999, 7.86327, 6.55393, 6.47697, 6.7511, 6.907760000000001, 6.05912, 6.54535, 6.551080000000001, 7.00307, 6.51471, 7.0422899999999995, 6.57925, 6.66823, 7.71869, 5.52146, 7.1309, 6.551080000000001, 6.44572, 7.00307, 5.39363, 6.253830000000001, 7.401839999999999, 5.99146, 7.2724, 6.907760000000001, 6.90575, 6.3315, 6.3699, 6.39693, 5.43808, 7.82405, 6.95655, 6.09582, 5.95324, 6.07535, 5.8999, 6.90575, 6.8426800000000005, 7.0518600000000005, 6.993930000000001, 6.907760000000001, 6.79122, 6.7511, 6.2146099999999995, 6.78897, 6.67203, 7.259119999999999, 7.6811, 6.745239999999999, 7.27031, 6.721430000000001, 6.2146099999999995, 6.2804, 6.90575, 6.563860000000001, 6.99485, 7.37776, 7.06048, 7.6009, 6.30992, 6.84375, 7.0282, 6.66696, 6.90575, 6.47235, 6.56244, 8.0229, 6.90575, 6.6592899999999995, 6.80351, 6.92658, 6.4892, 6.39693, 6.28227, 7.06902, 6.08677, 5.958419999999999, 7.1309, 5.68698, 6.62007, 6.33683, 6.984719999999999, 5.89715, 6.06611, 6.753439999999999, 6.354369999999999, 6.52209, 6.52209, 7.362010000000001, 6.8200199999999995, 6.73102, 6.39693, 6.8773, 6.2146099999999995, 6.507280000000001, 7.313219999999999, 6.81014, 6.802389999999999, 6.49072, 6.0845, 7.46737, 6.82437, 5.48064, 6.745239999999999, 6.11147, 6.2634, 7.181589999999999, 6.551080000000001, 7.05618, 6.29157, 7.2998, 5.86079, 6.51619, 6.56948, 6.937310000000001, 5.83188, 6.9256, 6.90575, 6.10925, 6.39693, 7.09008, 6.82437, 6.3952599999999995, 6.753439999999999, 6.966019999999999, 6.802389999999999, 7.239210000000001, 6.5582, 6.907760000000001, 6.98008, 6.62407, 5.70378, 6.551080000000001, 6.41673, 7.313219999999999, 6.62007, 6.84588, 6.95655, 6.42162, 6.68461, 6.715380000000001, 6.85646, 6.57786, 5.8579300000000005, 6.2146099999999995, 7.313219999999999, 7.37776, 6.07993, 6.30992, 7.1309, 6.69084, 6.70564, 6.27099, 5.7462, 6.16752, 7.279319999999999, 6.73102, 6.53669, 6.24222, 7.03527, 7.04752, 6.507280000000001, 6.93049, 6.59715, 7.09008, 6.45047, 6.33328, 6.68461, 6.62007, 6.6592899999999995, 6.90575, 7.04752, 6.30992, 6.58617, 7.43838, 6.6346300000000005, 6.59167, 6.1181, 6.41836, 7.2724, 6.56526, 6.90575, 7.91936, 6.54103, 6.90575, 7.57558, 6.2146099999999995, 6.20456, 6.802389999999999, 6.899719999999999, 7.484369999999999, 6.90575, 6.51471, 5.7462, 6.39693, 6.94698, 7.084230000000001, 6.96885, 6.907760000000001, 7.00307, 7.293019999999999, 7.173189999999999, 6.77422, 6.815639999999999, 6.43294, 6.813439999999999, 6.90575, 6.88857, 6.90575, 7.09008, 6.90575, 7.226210000000001, 5.76832, 5.70378, 7.279319999999999, 6.73102, 6.05912, 6.68461, 6.6592899999999995, 7.91936, 6.507280000000001, 6.035480000000001, 7.00307, 6.47697, 6.551080000000001, 6.206580000000001, 6.90575, 6.2146099999999995, 6.907760000000001, 6.715380000000001, 6.96885, 6.68461, 6.57368, 6.745239999999999, 6.39859, 6.53669, 5.76832, 6.2146099999999995, 6.8426800000000005, 7.520230000000001, 5.5797300000000005, 6.51323, 7.1082399999999994, 6.551080000000001, 6.5582, 7.17012, 6.768489999999999, 6.39693, 7.393260000000001, 6.6958, 6.39693, 6.95177, 6.2146099999999995, 7.09008, 6.5582, 7.09008, 6.9613, 6.4892, 7.676010000000001, 6.715380000000001, 5.70378, 6.907760000000001, 6.3935900000000006, 7.54961, 6.86171, 6.43775, 5.79606, 6.83087, 6.6783399999999995, 6.54535, 6.02345, 6.593039999999999, 5.9269300000000005, 6.77422, 6.44572, 7.04752, 6.3716099999999996, 6.72743, 7.37776, 7.17012, 6.8426800000000005, 7.00307, 6.126869999999999, 6.50129, 6.8773, 6.56526, 6.354369999999999, 6.96885, 6.575080000000001, 6.62007, 6.42811, 6.752269999999999, 6.90575, 6.78672, 7.1309, 8.12089, 6.829789999999999, 7.00307, 6.2146099999999995, 6.1944099999999995, 7.740660000000001, 6.551080000000001, 6.907760000000001, 6.2146099999999995, 6.96979, 6.68461, 7.14283, 6.2634, 6.139880000000001, 7.1293, 6.89467, 5.43808, 6.646389999999999, 6.621410000000001, 5.5797300000000005, 7.183110000000001, 6.07993, 6.5467900000000006, 6.34388, 6.39024, 7.0255399999999995, 6.424869999999999, 6.68461, 6.49979, 7.37776, 6.7901, 6.17379, 6.4488900000000005, 6.614730000000001, 6.802389999999999, 6.60665, 7.09008, 6.51323, 6.93245, 6.6592899999999995, 6.30992, 6.30992, 6.7226300000000005, 7.37776, 6.09807, 6.8977, 6.35784, 6.37502, 6.57925, 7.7021, 7.46737, 7.6009, 7.36455, 5.4161, 6.59715, 6.639880000000001, 6.36303, 5.82895, 6.59715, 6.62007, 6.551080000000001, 7.09008, 6.47697, 6.78333, 6.563860000000001, 7.0076, 6.880380000000001, 6.745239999999999, 5.50126, 6.82437, 6.4677, 7.127689999999999, 7.1309, 6.62007, 7.82084, 7.288930000000001, 6.72743, 6.583410000000001, 6.39693, 6.68461, 7.10988, 6.563860000000001, 6.354369999999999, 6.7546, 7.196689999999999, 6.44731, 5.99146, 6.74052, 7.24423, 6.67203, 6.86485, 7.1309, 7.6009, 6.6107, 7.24423, 6.9256, 7.11314, 6.86693, 5.82895, 6.85118, 6.58617, 6.85646, 5.70378, 6.2146099999999995, 6.92363, 5.67675, 6.84588, 6.86171, 6.813439999999999, 6.62936, 6.50279, 5.7589, 6.7417, 7.18917, 6.2146099999999995, 6.93245, 6.78897, 6.74759, 7.00307, 6.2146099999999995, 6.3935900000000006, 7.09008, 7.84385, 6.73815, 6.802389999999999, 6.57647, 6.78672, 6.39693, 6.9707300000000005, 8.3082, 7.1309, 7.17012, 6.593039999999999, 6.90575, 6.62007, 6.86693, 6.259580000000001, 6.41999, 6.90575, 5.52146, 6.907760000000001, 7.43838, 6.64509, 7.09008, 6.39693, 7.0255399999999995, 6.802389999999999, 6.77422, 7.903969999999999, 6.1944099999999995, 6.745239999999999, 6.80461, 7.037030000000001, 7.04752, 6.08904, 6.47697, 6.65286, 6.76388, 6.90575, 6.70073, 6.802389999999999, 6.87626, 6.90575, 7.1507, 7.07834, 7.21082, 6.52942, 6.701960000000001, 6.8426800000000005, 6.0282800000000005, 6.3207699999999996, 6.69827, 6.24611, 6.57786, 6.18826, 6.975410000000001, 7.16085, 6.30992, 6.593039999999999, 6.83303, 7.61874, 6.48158, 5.99146, 6.44095, 6.99485, 6.85646, 6.907760000000001, 6.8384100000000005, 6.79122, 5.01064, 6.551080000000001, 6.6695, 7.279319999999999, 6.57925, 6.813439999999999, 6.30992, 6.68461, 6.47389, 6.802389999999999, 6.785589999999999, 6.45362, 7.313219999999999, 6.551080000000001, 6.745239999999999, 7.29097, 5.8861, 6.98008, 6.802389999999999, 7.20786, 6.802389999999999, 6.983789999999999, 6.75926, 6.68461, 6.55962, 6.8977, 6.05912, 6.90575, 7.4570300000000005, 7.1309, 6.85646, 6.566669999999999, 6.829789999999999, 6.85646, 6.79347, 6.643789999999999, 6.77422, 7.90101, 6.32794, 6.25767, 7.81883, 6.966019999999999, 6.33328, 6.2146099999999995, 6.77422, 5.65249, 6.8384100000000005, 6.62007, 6.813439999999999, 6.551080000000001, 6.920669999999999, 7.195189999999999, 6.62007, 6.745239999999999, 6.3315, 6.69332, 6.745239999999999, 6.90575, 7.0396600000000005, 6.90575, 5.8260000000000005, 6.07535, 6.30992, 6.96885, 6.47697, 6.39693, 7.24423, 7.12367, 7.17012, 6.60394, 6.18415, 6.68461, 6.44413, 6.4677, 6.72623, 6.2146099999999995, 6.47697, 6.907760000000001, 6.4552, 7.1546199999999995, 6.39693, 7.37776, 7.18917, 6.10925, 6.5903, 7.136480000000001, 5.95584, 7.03878, 6.461469999999999, 6.697030000000001, 5.9839400000000005, 6.66568, 6.2146099999999995, 6.56526, 6.51471, 5.61677, 6.49375, 7.06048, 6.715380000000001, 6.10925, 6.95655, 7.1309, 6.95655, 6.90575, 6.76273, 6.311730000000001, 7.1507, 6.317159999999999, 7.00307, 6.29157, 6.86693, 6.68461, 6.90575, 6.95655, 7.17012, 7.0255399999999995, 6.86171, 7.495539999999999, 6.49224, 6.90575, 6.8865300000000005, 7.57353, 6.602589999999999, 6.35611, 6.85646, 5.8579300000000005, 6.30992, 6.23048, 6.5467900000000006, 6.530880000000001, 6.802389999999999, 7.6009, 6.55962, 6.46459, 6.834110000000001, 7.313219999999999, 6.802389999999999, 6.7334, 6.18415, 6.66441, 6.05209, 7.251339999999999, 5.87774, 6.802389999999999, 7.43838, 6.35957, 6.43775, 6.5820300000000005, 6.768489999999999, 7.17012, 6.68461, 5.6733199999999995, 6.90575, 7.281389999999999, 7.17702, 6.90575, 6.95845, 6.44572, 5.84354, 6.583410000000001, 6.91672, 6.46925, 6.90575, 8.229510000000001, 7.027310000000001, 6.551080000000001, 6.84055, 7.136480000000001, 6.71174, 6.787839999999999, 6.74288, 7.0934, 7.200419999999999, 6.83087, 7.37776, 6.79122, 6.67203, 6.55393, 6.39693, 7.46737, 6.802389999999999, 7.165489999999999, 6.62007, 6.90575, 7.0255399999999995, 7.70661, 6.47389, 6.35957, 6.07535, 6.907760000000001, 5.99894, 7.1107, 6.593039999999999, 6.30992, 7.20786, 6.43775, 6.556780000000001, 6.83518, 6.77878, 6.966019999999999, 6.95273, 6.3716099999999996, 6.745239999999999, 6.43133, 6.907760000000001, 6.68461, 6.64898, 6.28972, 7.00307, 6.2146099999999995, 6.66058, 6.967910000000001, 7.016610000000001, 6.68461, 7.09008, 6.85646, 6.77765, 6.90575, 5.66988, 7.09008, 6.53379, 6.84801, 6.90575, 5.99146, 7.21891, 6.30992, 5.8999, 6.90575, 6.745239999999999, 7.07242, 7.6009, 5.8861, 6.817830000000001, 6.23637, 7.346010000000001, 6.6592899999999995, 7.46737, 6.975410000000001, 6.79122, 6.719010000000001, 6.720219999999999, 6.90575, 6.90575, 6.68336, 6.892639999999999, 6.86485, 6.947939999999999, 6.955589999999999, 7.216710000000001, 6.90575, 6.65286, 5.78383, 6.551080000000001, 5.66988, 7.0255399999999995, 7.04752, 6.3935900000000006, 6.807930000000001, 6.74288, 6.802389999999999, 6.4599, 6.354369999999999, 6.2146099999999995, 6.18208, 7.398789999999999, 7.37776, 7.35883, 6.47697, 7.18463, 6.745239999999999, 7.05876, 6.694560000000001, 6.84588, 6.68461, 7.64969, 6.59578, 7.027310000000001, 6.715380000000001, 6.04025, 5.84644, 6.2146099999999995, 6.88857, 6.507280000000001, 6.23441, 7.098380000000001, 6.2804, 7.6256, 6.633319999999999, 6.6346300000000005, 7.195189999999999, 5.76205, 5.68698, 6.43455, 6.52649, 6.49527, 6.51915, 7.54961, 6.1203, 7.09008, 7.00307, 5.7365699999999995, 6.36475, 5.7462, 6.77422, 6.10925, 6.73459, 7.1293, 6.49224, 5.7365699999999995, 6.28413, 7.17012, 6.2146099999999995, 6.90575, 6.6515699999999995, 6.56948, 6.80461, 6.03787, 5.47227, 7.313219999999999, 6.11589, 6.68461, 6.2146099999999995, 6.72743, 7.09008, 5.96615, 8.26873, 6.17794, 6.3935900000000006, 7.12287, 7.04752, 6.43775, 5.95324, 6.6796, 6.758089999999999, 6.68461, 6.30992, 5.70378, 6.90575, 7.495539999999999, 6.84588, 6.745239999999999, 6.21261, 7.251339999999999, 6.10032, 8.048789999999999, 7.313219999999999, 6.802389999999999, 6.745239999999999, 7.17012, 6.907760000000001, 6.90575, 6.551080000000001, 5.82305, 6.90575, 7.17012, 5.7365699999999995, 6.2441699999999996, 5.64191, 8.08641, 5.59842, 7.08171, 6.9594, 6.97354, 6.21261, 7.30653, 6.55962, 6.58617, 6.74406, 7.56008, 6.1944099999999995, 7.408530000000001, 6.61338, 6.01616, 6.32794, 7.18007, 6.74052, 6.47697, 6.95655, 6.95655, 6.58617, 5.61313, 6.66568, 6.85646, 6.44572, 7.313219999999999, 7.1309, 6.62672, 5.99146, 6.18826, 5.59842, 6.23441, 6.49224, 6.821110000000001, 6.56526, 6.47697, 6.813439999999999, 7.43838, 7.2717, 5.7462, 6.056780000000001, 6.30262, 6.38351, 6.551080000000001, 5.8944, 5.45959, 6.43775, 6.90575, 6.53233, 5.84932, 6.61874, 6.06843, 6.1203, 6.06843, 7.88231, 6.90575, 6.7569300000000005, 5.7651900000000005, 6.938280000000001, 7.08255, 6.41346, 5.53339, 6.882439999999999, 7.37776, 6.44413, 6.90575, 6.51471, 7.2998, 6.5439099999999994, 6.551080000000001, 6.49375, 6.90575, 7.35372, 7.135689999999999, 7.46737, 5.7365699999999995, 6.63595, 6.802389999999999, 7.346010000000001, 5.76832, 6.90575, 6.86693, 7.1309, 5.78383, 6.829789999999999, 6.65286, 6.7334, 5.5797300000000005, 7.2998, 6.65415, 6.9256, 6.90575, 6.39693, 6.52209, 6.3699, 6.770789999999999, 6.39693, 6.49072, 6.02345, 7.32251, 6.13123, 6.29711, 7.04752, 6.799060000000001, 6.272880000000001, 6.23832, 5.79606, 6.354369999999999, 6.49527, 6.57925, 6.697030000000001, 5.52146, 6.703189999999999, 7.04752, 6.65286, 6.752269999999999, 6.2146099999999995, 6.42162, 6.90575, 7.014810000000001, 6.62007, 6.85646, 6.745239999999999, 6.9256, 6.58617, 6.51471, 5.96615, 6.90575, 6.52942, 6.19644, 6.16331, 6.56526, 6.813439999999999, 7.09008, 6.19236, 5.8141300000000005, 6.49979, 6.769639999999999, 6.08677, 6.6253899999999994, 6.7369699999999995, 7.064760000000001, 6.01616, 7.11883, 6.48158, 6.51175, 5.7525699999999995, 7.46737, 6.57228, 6.551080000000001, 7.67322, 6.35957, 6.907760000000001, 6.58617, 5.8579300000000005, 7.1309, 6.57925, 6.14633, 6.43294, 6.39693, 7.46737, 6.95655, 6.54247, 6.3716099999999996, 7.293019999999999, 6.08677, 7.64969, 6.95655, 8.13153, 6.3613, 6.10925, 6.551080000000001, 6.907760000000001, 6.97261, 6.907760000000001, 6.43775, 6.3243599999999995, 6.83518, 6.993930000000001, 6.6567300000000005, 6.712960000000001, 6.984719999999999, 7.062189999999999, 6.907760000000001, 6.77992, 7.195189999999999, 7.185389999999999, 6.16331, 6.07993, 6.01616, 6.72743, 6.33683, 6.70073, 7.20786, 7.0103100000000005, 6.3716099999999996, 6.551080000000001, 7.1309, 6.7334, 7.495539999999999, 6.24028, 6.354369999999999, 6.90575, 6.551080000000001, 7.00307, 6.85013, 7.0255399999999995, 6.39693, 7.495539999999999, 6.768489999999999, 6.23441, 6.461469999999999, 6.5395900000000005, 6.907760000000001, 6.62007, 6.05209, 6.28413, 6.126869999999999, 7.12287, 6.745239999999999, 6.30992, 7.21744, 6.39693, 6.49072, 6.47697, 6.05209, 6.47697, 7.24423, 6.802389999999999, 7.09008, 6.44572, 7.00307, 6.62007, 6.966019999999999, 6.721430000000001, 6.62936, 6.813439999999999, 6.551080000000001, 6.28227, 7.64969, 6.9575, 7.3696, 6.461469999999999, 6.18002, 6.90575, 7.20786, 6.78333, 6.57647, 6.5903, 7.00307, 6.74993, 6.57925, 6.907760000000001, 7.18917, 6.16331, 6.59578, 6.802389999999999, 6.272880000000001, 7.014810000000001, 6.745239999999999, 6.2146099999999995, 6.43615, 6.64509, 6.608, 6.68461, 6.58617, 6.62007, 6.19032, 7.00307, 5.96358, 6.95655, 6.12249, 6.62007, 7.313219999999999, 6.39693, 7.09008, 6.83303, 6.98101, 6.6871100000000006, 7.09008, 6.81014, 7.37776, 6.51767, 6.85435, 6.14204, 7.64969, 7.91936, 6.907760000000001, 6.9256, 6.6733, 7.5574699999999995, 6.13773, 6.67203, 6.30992, 6.47697, 6.8956800000000005, 6.56948, 6.33328, 6.802389999999999, 6.9707300000000005, 8.00637, 6.65286, 6.57368, 5.5797300000000005, 5.70711, 6.57786, 6.92363, 6.57368, 7.37776, 6.2146099999999995, 7.408530000000001, 7.1155800000000005, 7.91936, 7.09008, 7.37776, 7.1309, 6.58617, 6.14633, 6.11147, 6.6592899999999995, 6.90575, 7.092569999999999, 6.86485, 5.66988, 7.57558, 7.200419999999999, 6.95655, 6.2146099999999995, 6.05209, 6.44254, 6.35957, 5.72031, 6.4599, 6.60394, 6.51471, 5.73334, 6.975410000000001, 6.39693, 7.400010000000001, 5.90808, 8.537, 6.07993, 7.36645, 5.9269300000000005, 6.67708, 6.99942, 6.61338, 7.64969, 6.68461, 6.57925, 6.2186, 7.09008, 7.1082399999999994, 6.83518, 7.09008, 6.58617, 5.8861, 6.90575, 6.43615, 6.84162, 7.313219999999999, 6.68461, 6.55962, 6.07993, 6.3952599999999995, 6.633319999999999, 6.42162, 7.09008, 6.13123, 7.313219999999999, 6.30992, 6.79122, 6.720219999999999, 6.66823, 7.2861899999999995, 6.643789999999999, 6.802389999999999, 5.66988, 6.703189999999999, 6.39693, 5.98896, 7.620710000000001, 6.06611, 6.0822199999999995, 6.77878, 6.57786, 5.43808, 7.09008, 7.6009, 6.28972, 6.48768, 5.8141300000000005, 6.68461, 6.41182, 7.37776, 7.525639999999999, 6.74993, 6.72623, 7.09008, 7.25347, 7.585789999999999, 6.45362, 6.354369999999999, 6.984719999999999, 6.90575, 6.937310000000001, 6.907760000000001, 7.0775, 7.346010000000001, 7.027310000000001, 6.907760000000001, 6.9489, 6.907760000000001, 6.3315, 7.495539999999999, 6.01127, 6.802389999999999, 6.745239999999999, 6.58617, 6.90575, 6.633319999999999, 6.80572, 6.2480400000000005, 6.2634, 6.31355, 7.35819, 6.86485, 6.49677, 6.68461, 6.633319999999999, 7.30317, 6.95655, 6.907760000000001, 5.742999999999999, 6.04025, 6.39693, 7.313219999999999, 6.90575, 7.09008, 6.47697, 7.196689999999999, 6.47697, 6.30262, 6.745239999999999, 7.07412, 6.354369999999999, 6.10925, 6.68461, 7.42357, 6.768489999999999, 6.95655, 6.715380000000001, 6.7901, 6.56244, 6.9828600000000005, 6.253830000000001, 7.02465, 6.49224, 6.49979, 6.27099, 5.8861, 6.57228, 7.393260000000001, 6.829789999999999, 6.32794, 6.28786, 5.9839400000000005, 6.68461, 5.84354, 6.05209, 6.62007, 7.12287, 6.2146099999999995, 6.84162, 7.00307, 6.2146099999999995, 6.983789999999999, 6.35611, 5.93225, 6.17379, 6.95655, 6.39693, 6.88755, 7.04316, 6.90575, 6.84162, 6.45362, 6.83518, 5.273, 6.85646, 6.46925, 5.99146, 6.62007, 6.2186, 7.00307, 6.1717, 5.99146, 6.22654, 6.633319999999999, 6.77308, 7.1107, 6.95655, 6.967910000000001, 6.995769999999999, 6.66568, 6.594410000000001, 6.90575, 6.5439099999999994, 6.62007, 6.60665, 7.04752, 7.062189999999999, 7.313219999999999, 7.04752, 7.0884100000000005, 6.937310000000001, 6.90575, 6.23441, 6.47697, 6.25767, 6.05209, 6.2146099999999995, 6.551080000000001, 6.90575, 7.09008, 6.68461, 6.2146099999999995, 6.386880000000001, 6.44413, 6.58617, 6.10925, 6.90073, 6.745239999999999, 7.2233, 6.8773, 5.8579300000000005, 6.813439999999999, 6.86693, 7.037030000000001, 6.36303, 6.40523, 6.2146099999999995, 6.17379, 7.6009, 6.30992, 6.685860000000001, 5.99146, 6.38856, 6.47697, 7.46737, 6.551080000000001, 6.9226399999999995, 6.87213, 6.73102, 6.30992, 5.19296, 7.45298, 5.72359, 6.39693, 7.1309, 6.882439999999999, 5.95584, 5.940169999999999, 6.7093, 6.90675, 6.551080000000001, 6.9147300000000005, 6.85646, 6.563860000000001, 6.381819999999999, 5.78996, 6.769639999999999, 6.73102, 7.06133, 6.68461, 6.2146099999999995, 6.62007, 6.912739999999999, 6.4708, 6.2634, 6.41017, 7.08171, 6.90575, 7.6009, 6.556780000000001, 6.52062, 6.907760000000001, 6.60935, 5.8141300000000005, 6.30992, 6.51471, 6.9828600000000005, 6.85646, 6.30992, 6.39693, 7.338889999999999, 6.22654, 6.26149, 6.84055, 6.311730000000001, 7.01392, 6.49224, 6.2205900000000005, 7.44659, 5.94803, 7.388330000000001, 6.85118, 7.24423, 6.632000000000001, 6.65544, 6.90575, 7.10906, 6.3081, 6.944089999999999, 6.83518, 6.222580000000001, 6.84588, 7.17012, 6.52503, 6.2860000000000005, 6.80128, 6.07993 ], "xaxis": "x", "y": [ "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "female", "female", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "female", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "female", "male", "female", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "female", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "female", "male", "female", "male", "male", "female", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "female", "male", "male", "female", "male", "male", "female", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "female", "female", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male" ], "yaxis": "y" }, { "legendgroup": "married", "marker": { "color": "blue" }, "name": "Married", "orientation": "h", "type": "box", "x": [ 6.99942, 5.99146, 7.67322, 7.09008, 5.61677, 6.55536, 6.646389999999999, 7.02643, 6.4552, 7.32975, 6.39693, 6.95845, 7.06902, 6.04025, 6.907760000000001, 7.91936, 6.745239999999999, 6.30079, 7.068169999999999, 6.07535, 6.907760000000001, 6.7417, 7.71869, 6.882439999999999, 6.47697, 6.50279, 6.77878, 6.907760000000001, 6.93342, 7.06902, 6.57368, 6.829789999999999, 7.557989999999999, 6.892639999999999, 7.0255399999999995, 6.57925, 7.313219999999999, 6.47697, 7.1309, 6.551080000000001, 6.882439999999999, 6.907760000000001, 6.682110000000001, 6.39693, 6.48004, 6.60665, 7.00307, 6.10925, 5.78383, 6.94505, 6.9546399999999995, 7.17012, 7.11477, 6.993930000000001, 6.593039999999999, 6.49979, 6.5439099999999994, 6.39192, 6.614730000000001, 6.51471, 6.30992, 6.30992, 7.116389999999999, 6.46925, 6.30992, 7.554860000000001, 6.90675, 6.85646, 5.94803, 6.90575, 6.90575, 7.408530000000001, 7.0076, 6.88857, 7.35947, 6.39693, 7.041410000000001, 6.66696, 6.30992, 7.313219999999999, 6.62007, 6.787839999999999, 6.90575, 6.802389999999999, 7.00307, 7.074960000000001, 7.5606, 6.17379, 5.99146, 6.16331, 5.94803, 6.2146099999999995, 6.43775, 7.282760000000001, 6.39693, 6.813439999999999, 6.694560000000001, 6.65286, 6.29157, 6.23048, 6.67203, 6.16331, 6.88755, 6.95655, 7.56008, 6.28227, 6.30992, 6.05912, 6.30992, 6.602589999999999, 7.47307, 6.2146099999999995, 6.95655, 6.90575, 6.461469999999999, 7.09008, 7.46737, 6.829789999999999, 6.60665, 6.74052, 6.745239999999999, 7.6009, 6.62007, 6.551080000000001, 6.48158, 6.907760000000001, 6.663130000000001, 7.60589, 6.53669, 6.5582, 6.16121, 6.19236, 6.2146099999999995, 5.8999, 7.37776, 6.6995, 6.58617, 6.23832, 6.27476, 6.48311, 6.69084, 6.54965, 6.745239999999999, 6.882439999999999, 6.663130000000001, 5.70378, 6.7226300000000005, 7.20786, 6.05209, 6.802389999999999, 6.79122, 6.62007, 6.42162, 6.12249, 6.90575, 6.28227, 6.745239999999999, 6.206580000000001, 5.99146, 6.682110000000001, 6.49677, 7.408530000000001, 6.10925, 6.317159999999999, 6.2146099999999995, 6.551080000000001, 6.25575, 7.0884100000000005, 6.16331, 6.68461, 5.8999, 7.01392, 7.1107, 6.9363399999999995, 5.73334, 6.90575, 6.1070199999999994, 6.85646, 6.44572, 6.551080000000001, 6.84588, 8.10168, 7.31255, 5.99645, 6.90575, 6.802389999999999, 7.111510000000001, 6.2146099999999995, 6.66696, 6.907760000000001, 6.90575, 6.6592899999999995, 8.047189999999999, 6.62407, 7.0076, 6.30992, 6.17379, 6.55393, 6.3952599999999995, 6.24611, 7.78322, 6.563860000000001, 6.60665, 7.12448, 6.507280000000001, 6.461469999999999, 6.8977, 6.43775, 7.82405, 7.75148, 6.62407, 7.346010000000001, 6.2146099999999995, 7.1309, 6.51471, 5.96615, 6.84055, 7.041410000000001, 6.51471, 6.551080000000001, 7.346010000000001, 6.966019999999999, 6.90575, 7.17012, 6.5820300000000005, 7.04752, 6.354369999999999, 6.59578, 7.82405, 6.5467900000000006, 6.551080000000001, 6.39693, 6.88755, 6.39693, 6.39693, 6.65286, 6.36647, 6.622739999999999, 6.90575, 5.7525699999999995, 6.15273, 7.04752, 5.52146, 6.770789999999999, 6.907760000000001, 7.00125, 7.064760000000001, 7.00307, 6.907760000000001, 5.463830000000001, 6.05209, 6.745239999999999, 7.045780000000001, 6.54535, 6.37673, 6.62007, 6.907760000000001, 6.10925, 6.39693, 8.16052, 6.745239999999999, 7.03527, 5.43808, 6.765039999999999, 6.77422, 7.1309, 6.77422, 6.87213, 6.551080000000001, 6.907760000000001, 6.6567300000000005, 6.80017, 7.226210000000001, 6.10925, 6.90575, 6.70073, 7.495539999999999, 8.05516, 6.9256, 7.06987, 6.694560000000001, 6.90575, 6.43775, 6.97261, 7.29709, 7.179310000000001, 7.313219999999999, 6.7226300000000005, 6.82437, 6.715380000000001, 7.173189999999999, 6.62007, 6.77878, 6.7226300000000005, 6.47697, 6.85118, 6.49224, 7.313219999999999, 6.62007, 7.158510000000001, 6.818919999999999, 6.68461, 6.57647, 6.43455, 5.68358, 5.89715, 6.2146099999999995, 6.34564, 6.556780000000001, 6.7093, 6.93925, 7.00307, 6.551080000000001, 6.90575, 6.53669, 6.69084, 7.313219999999999, 6.10925, 6.05209, 6.90575, 6.62007, 6.4552, 6.77422, 6.87005, 6.65544, 6.42162, 5.9269300000000005, 6.6783399999999995, 6.317159999999999, 6.42972, 7.1309, 6.62007, 6.96508, 6.19236, 6.61607, 5.5606800000000005, 6.57368, 6.39693, 6.2634, 6.77422, 6.715380000000001, 7.408530000000001, 6.17379, 5.96615, 5.90808, 6.39693, 7.333019999999999, 6.37502, 6.16331, 6.317159999999999, 7.04752, 6.68461, 5.0814, 6.98008, 6.912739999999999, 6.86693, 7.3670800000000005, 6.68461, 7.09008, 6.90575, 6.90575, 6.62007, 6.45362, 6.49072, 6.47697, 6.9431199999999995, 6.90575, 6.10925, 6.67203, 4.605169999999999, 6.7334, 7.34278, 6.802389999999999, 6.90575, 6.658010000000001, 6.9256, 6.90575, 6.91075, 6.6592899999999995, 5.8579300000000005, 6.6592899999999995, 6.16331, 7.441319999999999, 6.47851, 7.07834, 6.745239999999999, 7.20786, 6.36475, 6.63857, 7.475910000000001, 6.62007, 6.4892, 7.00307, 6.7901, 6.56948, 6.65286, 7.43838, 7.15383, 6.86485, 7.064760000000001, 6.88755, 7.26193, 6.23245, 6.30445, 6.92461, 6.715380000000001, 7.313219999999999, 7.37776, 5.8579300000000005, 6.85646, 6.2441699999999996, 7.26193, 6.90575, 5.99146, 6.907760000000001, 6.85646, 6.272880000000001, 6.66568, 7.481560000000001, 7.04752, 6.61338, 6.40688, 6.73815, 5.8579300000000005, 7.57558, 6.83518, 6.38856, 6.768489999999999, 6.90575, 6.86693, 5.4161, 6.39693, 6.34739, 7.1507, 6.58617, 7.282760000000001, 7.00307, 6.66058, 6.58064, 6.30079, 6.90575, 6.10925, 6.64249, 5.76832, 6.715380000000001, 6.62007, 7.1309, 6.51471, 5.99146, 6.95655, 6.65286, 6.16331, 6.24611, 7.1309, 6.16542, 5.93489, 7.1333, 7.24423, 6.04025, 6.86901, 6.802389999999999, 7.04752, 6.70073, 6.1203, 6.90575, 7.313219999999999, 6.54822, 6.95655, 7.50108, 6.39693, 6.19644, 6.551080000000001, 7.07918, 5.8579300000000005, 5.70378, 6.7369699999999995, 5.7525699999999995, 7.745, 6.318969999999999, 6.87213, 5.89715, 6.39693, 6.30628, 6.8773, 6.708080000000001, 5.9454199999999995, 6.52942, 6.818919999999999, 7.041410000000001, 6.4677, 6.06611, 6.882439999999999, 6.94986, 6.703189999999999, 6.37502, 5.70378, 7.03615, 7.37776, 5.66988, 6.907760000000001, 6.882439999999999, 6.752269999999999, 6.48158, 6.47697, 7.04752, 6.802389999999999, 6.768489999999999, 6.2480400000000005, 6.984719999999999, 5.9269300000000005, 6.49224, 6.385190000000001, 7.1309, 7.663880000000001, 6.33328, 7.07242, 6.907760000000001, 6.48311, 6.43775, 8.05516, 6.807930000000001, 6.785589999999999, 6.907760000000001, 6.403569999999999, 6.035480000000001, 7.24423, 6.05209, 7.338889999999999, 7.0255399999999995, 7.00307, 5.99146, 6.33683, 6.07993, 7.488289999999999, 6.51175, 5.7365699999999995, 7.00307, 5.8999, 5.7365699999999995, 6.90575, 6.697030000000001, 6.354369999999999, 6.802389999999999, 6.62007, 6.68461, 6.68835, 6.62007, 6.36475, 5.8260000000000005, 6.85646, 6.44572, 6.95655, 7.20786, 6.3716099999999996, 6.8977, 6.47697, 6.802389999999999, 6.90575, 6.84055, 7.676010000000001, 6.85646, 6.43775, 7.20786, 6.89163, 7.0121199999999995, 6.85646, 6.77422, 6.54965, 6.65286, 6.05209, 6.697030000000001, 6.90575, 6.68461, 6.62007, 7.24423, 6.36819, 6.8844899999999996, 6.62007, 6.745239999999999, 6.19236, 5.7525699999999995, 6.39693, 6.85646, 6.025869999999999, 6.7334, 5.9269300000000005, 5.98896, 6.48004, 6.20456, 6.55393, 6.5903, 7.02643, 7.15305, 6.31536, 6.19236, 6.43615, 6.6871100000000006, 6.42162, 6.06379, 6.93537, 7.09008, 6.802389999999999, 6.47697, 6.2634, 7.79028, 6.10032, 6.0282800000000005, 7.408530000000001, 6.6174, 6.907760000000001, 6.90575, 5.95324, 6.1070199999999994, 5.99146, 6.05209, 6.2441699999999996, 6.00141, 6.39693, 6.79122, 6.9196800000000005, 6.9147300000000005, 6.90575, 6.408530000000001, 5.9269300000000005, 6.646389999999999, 6.746410000000001, 6.30992, 6.42972, 6.18826, 6.5467900000000006, 7.522939999999999, 5.51745, 6.7334, 6.07993, 6.907760000000001, 6.90575, 6.715380000000001, 7.04752, 6.66185, 6.47697, 7.23418, 6.54247, 6.753439999999999, 6.51471, 7.034389999999999, 6.65286, 7.262630000000001, 6.47697, 7.20786, 6.90575, 6.30992, 6.984719999999999, 6.85646, 6.85646, 6.30445, 6.32972, 6.05209, 6.34564, 6.95655, 6.49224, 6.62007, 5.82895, 6.39693, 6.06146, 6.43775, 6.03787, 6.3952599999999995, 6.22654, 7.144410000000001, 6.90575, 6.91374, 5.70378, 7.6009, 6.5903, 7.1592899999999995, 6.57786, 6.6783399999999995, 6.72383, 6.41182, 6.53233, 6.907760000000001, 6.7334, 7.236339999999999, 6.20456, 6.802389999999999, 6.10925, 6.715380000000001, 6.72743, 6.551080000000001, 7.084230000000001, 6.97635, 7.20786, 6.685860000000001, 6.8977, 7.00307, 6.35089, 5.70378, 6.59167, 6.461469999999999, 6.984719999999999, 6.53233, 6.646389999999999, 6.39693, 6.16331, 6.95655, 7.459910000000001, 6.19848, 7.0255399999999995, 7.1309, 6.745239999999999, 6.22654, 6.10925, 7.08171, 6.64249, 7.49332, 6.2634, 7.495539999999999, 7.1546199999999995, 7.1309, 6.3716099999999996, 6.745239999999999, 6.18415, 5.82895, 6.10925, 6.58617, 6.48158, 6.20456, 7.313219999999999, 6.94022, 6.90575, 6.41836, 6.10925, 7.48717, 7.0193, 6.983789999999999, 6.633319999999999, 6.10925, 6.29157, 7.49109, 6.91672, 6.90575, 6.93537, 6.51323, 6.715380000000001, 5.8141300000000005, 6.47697, 7.37212, 6.646389999999999, 6.56244, 7.0184, 6.84055, 7.24423, 6.834110000000001, 7.09008, 6.52942, 7.4553, 6.23245, 7.00307, 6.37502, 7.1309, 7.24423, 6.48158, 6.57925, 6.68461, 6.30992, 6.34388, 6.10925, 6.90575, 6.90575, 7.24423, 7.75577, 6.82437, 6.43775, 6.18415, 6.43775, 5.34711, 6.90575, 7.1107, 6.44572, 6.42162, 6.769639999999999, 6.93245, 6.818919999999999, 6.551080000000001, 7.279319999999999, 6.58617, 6.96508, 6.44572, 6.7093, 6.83195, 6.28972, 7.1082399999999994, 7.135689999999999, 6.49072, 7.251339999999999, 8.51719, 6.58064, 6.807930000000001, 7.14756, 7.33368, 6.77422, 6.60394, 6.68461, 7.1309, 5.99146, 7.201169999999999, 5.99146, 6.10925, 6.68461, 6.39693, 6.927560000000001, 6.85751, 6.33683, 6.95655, 6.08677, 7.24423, 7.1309, 6.17587, 6.802389999999999, 6.30992, 6.36303, 5.8999, 6.77422, 6.2860000000000005, 6.828710000000001, 6.47697, 6.72743, 6.55251, 6.29157, 5.59842, 6.5582, 6.62407, 5.9814099999999994, 6.76273, 7.06902, 5.9269300000000005, 6.80128, 6.354369999999999, 7.313219999999999, 6.966019999999999, 5.95324, 6.6592899999999995, 6.39693, 6.57786, 6.62007, 6.65286, 5.9454199999999995, 6.293419999999999, 5.4161, 5.87493, 5.64545, 6.79122, 6.987489999999999, 6.30992, 5.7525699999999995, 6.55536, 7.09008, 6.28972, 6.2146099999999995, 7.04752, 6.90575, 6.10925, 6.6783399999999995, 6.39693, 7.259119999999999, 7.43838, 6.47697, 7.1309, 6.2952699999999995, 6.77422, 6.2634, 6.739339999999999, 7.46737, 6.47697, 6.90575, 7.279319999999999, 6.815639999999999, 7.1309, 6.05209, 6.65028, 6.27099, 7.17012, 6.354369999999999, 6.29157, 6.802389999999999, 6.551080000000001, 6.602589999999999, 6.47697, 6.63857, 6.58755, 6.77422, 6.621410000000001, 6.907760000000001, 7.09589, 6.882439999999999, 5.45959, 6.05209, 5.82305, 7.67322, 6.85646, 5.8579300000000005, 5.78074, 6.2146099999999995, 7.2957399999999994, 5.84354, 6.802389999999999, 6.58064, 6.2634, 7.00307, 6.90575, 7.21891, 7.503839999999999, 6.12905, 6.45677, 6.950810000000001, 5.97126, 6.23048, 6.15273, 6.02345, 7.57558, 6.96035, 6.3716099999999996, 6.2146099999999995, 6.7334, 6.86066, 6.378430000000001, 6.48004, 7.00307, 6.8200199999999995, 6.47697, 6.90575, 7.39388, 7.4787300000000005, 6.2146099999999995, 6.802389999999999, 6.43775, 7.24065, 5.70378, 6.13773, 6.3952599999999995, 7.1025, 7.04752, 5.883319999999999, 7.09008, 6.77992, 6.9256, 6.035480000000001, 7.22766, 7.475339999999999, 6.62007, 5.72031, 6.272880000000001, 6.01616, 6.27099, 7.91936, 6.2146099999999995, 6.85646, 6.354369999999999, 6.907760000000001, 6.2634, 6.51471, 6.92166, 6.253830000000001, 5.9269300000000005, 6.745239999999999, 6.30992, 7.3651800000000005, 6.24998, 6.893660000000001, 6.53669, 6.43615, 7.04752, 6.30992, 6.39693, 5.59842, 6.1334, 6.58617, 6.765039999999999, 6.85646, 6.892639999999999, 6.95655, 5.99146, 6.43775, 6.90575, 6.81124, 6.966019999999999, 6.8865300000000005, 6.62007, 7.334980000000001, 6.72743, 6.93245, 7.27031, 7.03878, 6.901739999999999, 7.0255399999999995, 6.10925, 6.83518, 6.77992, 6.68461, 7.696210000000001, 6.53669, 6.52942, 6.126869999999999, 6.54965, 6.715380000000001, 7.31122, 5.8693, 6.90575, 6.0282800000000005, 6.30992, 6.23245, 6.31536, 7.486610000000001, 5.8579300000000005, 6.52942, 6.8426800000000005, 6.14204, 6.88755, 6.62007, 6.34564, 6.44413, 6.62007, 5.99146, 6.93245, 7.37776, 6.907760000000001, 5.99146, 7.18917, 6.7093, 6.75926, 6.3315, 6.5439099999999994, 6.1717, 7.9459100000000005, 6.77422, 7.424760000000001, 6.45362, 5.70378, 6.43775, 6.90575, 7.6009, 6.90575, 7.46737, 6.694560000000001, 6.907760000000001, 8.16052, 6.17379, 6.98008, 5.81711, 6.984719999999999, 6.44254, 6.802389999999999, 6.30079, 5.99146, 6.802389999999999, 7.32647, 6.745239999999999, 7.1309, 6.7901, 5.96101, 6.62007, 6.84055, 6.58617, 6.51471, 7.1309, 6.17379, 7.00307, 7.78322, 6.62007, 5.7525699999999995, 6.62407, 6.07993, 6.795710000000001, 7.212289999999999, 6.05209, 6.38856, 6.93925, 6.47697, 6.8773, 6.354369999999999, 7.9724699999999995, 6.11589, 7.64969, 6.703189999999999, 6.658010000000001, 6.47697, 6.50429, 6.58617, 5.74939, 6.893660000000001, 6.51471, 6.06611, 6.68461, 6.65544, 7.331060000000001, 6.64118, 6.33328, 6.47697, 7.475910000000001, 6.72743, 7.20786, 6.81124, 7.0201899999999995, 7.279319999999999, 8.02027, 6.80461, 5.99645, 7.10906, 6.40523, 6.77422, 7.01571, 6.54822, 6.14204, 6.57786, 6.47697, 6.386880000000001, 7.0255399999999995, 7.24423, 5.93225, 5.9269300000000005, 7.46737, 5.8141300000000005, 6.69084, 6.47697, 6.85646, 6.88755, 7.24423, 6.2634, 6.95655, 6.67077, 6.85646, 7.313219999999999, 5.86647, 6.98008, 6.75577, 6.01616, 6.566669999999999, 7.09008, 6.697030000000001, 5.78383, 6.79794, 6.2634, 6.61874, 6.64118, 7.1309, 6.98101, 6.90575, 5.90263, 6.17794, 6.77422, 6.96035, 6.6515699999999995, 6.35957, 6.829789999999999, 6.66568, 7.09008, 6.10925, 6.85646, 6.90575, 6.95655, 6.126869999999999, 7.1309, 6.4552, 6.58617, 7.23778, 6.278519999999999, 6.66568, 6.21261, 6.57925, 6.907760000000001, 6.30992, 6.802389999999999, 6.88755, 7.08171, 6.6567300000000005, 7.696210000000001, 6.68461, 6.10925, 6.785589999999999, 6.43775, 6.47697, 6.802389999999999, 7.04752, 6.6592899999999995, 5.4161, 6.48311, 6.408530000000001, 6.84055, 7.17778, 6.2634, 6.4892, 6.62007, 6.95177, 6.785589999999999, 7.033510000000001, 6.04025, 7.1107, 6.57647, 6.85646, 6.39693, 6.23637, 6.530880000000001, 6.36819, 6.43775, 6.90575, 6.30992, 6.85646, 6.62007, 6.04025, 6.79122, 6.30992, 6.62007, 5.76832, 6.81014, 6.551080000000001, 6.56526, 6.551080000000001, 7.09008, 6.86693, 6.9613, 6.7901, 6.95655, 6.65286, 5.9814099999999994, 6.43775, 6.28227, 5.940169999999999, 7.46737, 6.35957, 7.18007, 6.2146099999999995, 7.46737, 6.90575, 6.253830000000001, 6.52209, 6.1025599999999995, 7.37776, 6.90575, 5.99146, 7.46737, 6.1025599999999995, 5.99146, 6.18826, 6.4552, 6.59987, 6.15698, 7.346010000000001, 6.68461, 7.6009, 7.14913, 6.96885, 7.27031, 6.317159999999999, 6.72503, 5.8861, 5.99146, 6.62007, 6.6871100000000006, 7.17012, 6.802389999999999, 5.93754, 6.995769999999999, 6.802389999999999, 6.52356, 6.55251, 6.56526, 6.72383, 7.09008, 6.885510000000001, 6.68461, 6.52209, 7.313219999999999, 6.94698, 6.561030000000001, 6.907760000000001, 7.71869, 6.1717, 5.96615, 7.143619999999999, 6.41673, 6.907760000000001, 6.29157, 6.354369999999999, 7.00307, 6.802389999999999, 6.90375, 5.958419999999999, 6.1944099999999995, 7.09008, 6.90575, 6.47697, 7.26193, 5.98645, 6.60665, 6.424869999999999, 6.745239999999999, 5.8579300000000005, 7.37776, 6.13773, 6.882439999999999, 6.907760000000001, 6.858569999999999, 6.745239999999999, 7.495539999999999, 7.1546199999999995, 6.68461, 6.2804, 6.6592899999999995, 6.77422, 6.893660000000001, 6.86693, 7.408530000000001, 6.72743, 6.42972, 6.633319999999999, 7.0579, 6.68461, 7.185389999999999, 7.26543, 7.05099, 6.10925, 6.60123, 7.233460000000001, 6.90575, 6.77194, 6.715380000000001, 5.8861, 6.6567300000000005, 6.3243599999999995, 6.55393, 6.90575, 6.10925, 6.9613, 6.90575, 6.907760000000001, 6.90975, 7.64969, 7.1309, 6.745239999999999, 5.99146, 6.354369999999999, 5.4161, 6.55536, 6.02102, 6.7334, 6.47697, 6.47697, 6.53669, 6.95655, 6.551080000000001, 6.16331, 7.6009, 6.90575, 6.10925, 7.17242, 6.3421199999999995, 6.9196800000000005, 6.65286, 6.51471, 7.24423, 6.39693, 6.85646, 6.551080000000001, 6.86693, 6.35611, 6.90575, 5.65948, 6.34914, 7.696210000000001, 7.17012, 6.802389999999999, 5.940169999999999, 6.253830000000001, 6.90575, 6.48464, 6.49224, 6.82763, 6.90575, 6.26149, 7.014810000000001, 6.551080000000001, 6.2634, 7.04752, 6.90575, 7.20786, 7.02997, 7.803839999999999, 6.31355, 6.89467, 6.829789999999999, 7.17012, 7.54961, 7.28207, 6.69084, 7.1929300000000005, 6.33328, 5.84354, 6.85646, 6.29157, 6.912739999999999, 6.80017, 6.97635, 6.2653, 6.07535, 7.1309, 7.17012, 6.59715, 7.0884100000000005, 6.77992, 7.16627, 6.19644, 5.50126, 6.39693, 5.9814099999999994, 6.90575, 6.90575, 6.6958, 5.01728, 7.279319999999999, 7.136480000000001, 6.608, 6.68461, 7.9831, 6.77422, 6.9828600000000005, 6.30992, 6.2146099999999995, 7.09506, 6.44572, 6.2634, 6.90575, 6.90575, 7.08339, 5.96615, 6.9622399999999995, 5.82008, 7.11233, 6.912739999999999, 6.68461, 6.85646, 6.4708, 6.8254600000000005, 7.346010000000001, 6.68085, 7.24423, 6.8426800000000005, 6.62007, 6.1070199999999994, 6.33328, 6.15698, 6.15698, 6.893660000000001, 6.43775, 6.30262, 6.253830000000001, 7.30317, 6.829789999999999, 6.56808, 5.8999, 5.99146, 6.36303, 7.20786, 6.752269999999999, 6.95655, 6.02102, 6.633319999999999, 6.2634, 7.183110000000001, 6.33328, 6.907760000000001, 6.9707300000000005, 6.6174, 7.43838, 6.45047, 6.9707300000000005, 6.3952599999999995, 7.09008, 6.49979, 6.94986, 7.06902, 6.6567300000000005, 6.745239999999999, 6.68461, 7.22766, 6.68461, 6.93049, 7.1309, 6.975410000000001, 6.2672, 6.50279, 6.551080000000001, 6.59987, 6.7334, 6.16331, 6.2146099999999995, 6.95655, 6.694560000000001, 6.44572, 6.6783399999999995, 7.408530000000001, 7.09008, 6.849069999999999, 6.614730000000001, 6.72743, 6.17379, 7.03615, 6.05209, 6.6280399999999995, 6.83518, 7.09008, 6.1070199999999994, 6.63857, 6.17794, 6.551080000000001, 6.712960000000001, 6.30992, 7.07834, 6.39693, 6.57228, 7.346010000000001, 6.938280000000001, 6.715380000000001, 6.7511, 6.715380000000001, 6.58617, 5.59842, 6.3935900000000006, 7.26193, 6.49072, 6.829789999999999, 6.745239999999999, 6.721430000000001, 5.97635, 6.59715, 6.00389, 6.9828600000000005, 6.29157, 6.62007, 6.85646, 6.86901, 7.04752, 6.23441, 6.551080000000001, 6.63726, 6.14633, 6.0282800000000005, 6.563860000000001, 6.73102, 6.2634, 6.3243599999999995, 6.721430000000001, 6.6796, 7.062189999999999, 6.10925, 7.313219999999999, 6.34564, 6.561030000000001, 6.17379, 7.06987, 6.87626, 6.505780000000001, 6.745239999999999, 6.39859, 6.966019999999999, 6.4488900000000005, 7.1309, 6.68461, 6.575080000000001, 6.40192, 6.70073, 6.56808, 6.7334, 6.30992, 7.0775, 6.6796, 6.8384100000000005, 5.42935, 7.03615, 6.6592899999999995, 6.85751, 6.745239999999999, 7.313219999999999, 6.86693, 7.08171, 6.85646, 6.47697, 6.47697, 6.907760000000001, 6.28972, 7.46737, 7.2724, 6.61874, 6.30079, 7.0255399999999995, 6.27099, 6.90575, 6.34564, 6.47697, 6.9828600000000005, 7.450080000000001, 6.224559999999999, 6.551080000000001, 6.551080000000001, 6.551080000000001, 6.23441, 6.77422, 7.1309, 6.52209, 7.49332, 6.39192, 6.739339999999999, 7.4832399999999994, 6.16331, 6.68461, 6.90575, 6.715380000000001, 6.90575, 7.1309, 6.86171, 6.68461, 6.715380000000001, 5.70378, 6.551080000000001, 6.802389999999999, 6.33683, 6.9187, 7.0579, 6.35611, 7.02376, 6.45834, 5.8141300000000005, 5.4161, 5.5797300000000005, 6.90575, 6.82655, 6.90575, 5.9269300000000005, 7.42833, 5.87212, 6.463030000000001, 7.52833, 6.86797, 6.95655, 6.88755, 6.60665, 6.90575, 6.4677, 7.3651800000000005, 6.748760000000001, 6.77992, 6.975410000000001, 7.43838, 7.82405, 6.5439099999999994, 6.42162, 6.8844899999999996, 7.16085, 6.52209, 6.04025, 5.52146, 6.90575, 7.00307, 6.907760000000001, 6.23441, 6.463030000000001, 6.817830000000001, 7.279319999999999, 6.907760000000001, 7.54961, 7.323169999999999, 6.90575, 6.41017, 6.90575, 6.65286, 6.787839999999999, 6.62007, 7.0967199999999995, 5.9269300000000005, 6.55393, 7.0255399999999995, 6.17379, 7.00307, 7.31122, 6.39693, 7.31122, 6.31355, 5.8141300000000005, 6.44572, 6.59578, 6.47697, 7.226210000000001, 6.62007, 6.69332, 6.7511, 6.77422, 7.09008, 5.8579300000000005, 7.183110000000001, 7.728860000000001, 6.54965, 7.04752, 7.25488, 6.9256, 6.907760000000001, 6.3952599999999995, 5.65249, 7.041410000000001, 6.4599, 6.96035, 7.1333, 6.99942, 6.38012, 7.200419999999999, 6.06379, 5.42053, 7.18007, 7.1309, 6.461469999999999, 6.85646, 7.17012, 7.03527, 6.19848, 6.62007, 7.313219999999999, 5.8861, 6.52209, 5.8861, 7.20786, 6.907760000000001, 6.90575, 6.05209, 7.1452, 6.02102, 5.82895, 6.33683, 6.04025, 6.2146099999999995, 7.8935699999999995, 6.34564, 6.64249, 6.8977, 6.3699, 6.6567300000000005, 6.813439999999999, 6.53669, 6.90575, 6.05209, 6.47697, 6.05209, 7.21524, 6.551080000000001, 6.66568, 6.57925, 6.2146099999999995, 6.8426800000000005, 6.907760000000001, 6.90575, 7.106610000000001, 5.52146, 6.424869999999999, 6.65415, 6.86693, 6.745239999999999, 6.88346, 6.53669, 6.3207699999999996, 7.696210000000001, 7.64779, 7.313219999999999, 6.95655, 5.95584, 6.715380000000001, 6.44254, 6.8966899999999995, 6.61338, 6.8426800000000005, 6.23245, 6.95655, 6.768489999999999, 5.52146, 7.3981699999999995, 6.06379, 6.2205900000000005, 6.68461, 7.12287, 6.813439999999999, 6.752269999999999, 6.551080000000001, 6.86066, 6.7334, 6.318969999999999, 6.79122, 6.0822199999999995, 5.95324, 6.745239999999999, 7.1309, 6.54103, 7.06048, 6.24222, 6.68461, 6.9177100000000005, 6.05209, 7.04752, 6.78672, 7.09008, 7.1309, 6.47697, 7.1025, 5.9814099999999994, 7.24423, 6.44254, 7.451239999999999, 7.198180000000001, 7.27101, 7.245660000000001, 6.51471, 7.279319999999999, 6.85646, 7.279319999999999, 6.3952599999999995, 7.67322, 6.76273, 6.82437, 6.47697, 6.885510000000001, 7.07918, 7.279319999999999, 7.1309, 6.966019999999999, 6.73102, 6.70073, 6.633319999999999, 6.07993, 6.46925, 7.00307, 5.940169999999999, 7.6009, 6.22654, 6.907760000000001, 6.32615, 6.508769999999999, 6.551080000000001, 7.0884100000000005, 6.39693, 6.829789999999999, 7.31986, 6.21661, 7.11802, 6.77422, 7.26193, 6.90575, 7.17012, 7.00307, 5.99146, 7.46737, 6.57786, 6.3081, 6.90575, 6.58755, 6.8254600000000005, 6.311730000000001, 6.39693, 6.95655, 6.62007, 6.3952599999999995, 7.04752, 6.48311, 6.50429, 6.39693, 6.90575, 6.60665, 6.90575, 6.318969999999999, 6.802389999999999, 6.70441, 6.51471, 6.77992, 5.99146, 6.68461, 6.29157, 6.62007, 6.40523, 6.18826, 7.24423, 6.83518, 7.09008, 7.84502, 6.62007, 7.1624, 6.813439999999999, 6.907760000000001, 6.68461, 6.14633, 7.17012, 6.53814, 6.2146099999999995, 6.882439999999999, 6.36647, 6.47697, 7.54697, 6.60665, 6.29895, 6.68461, 7.408530000000001, 7.2724, 6.46614, 6.90575, 6.95655, 5.8579300000000005, 6.745239999999999, 5.7462, 6.36303, 7.20786, 7.04752, 7.04316, 6.551080000000001, 6.58064, 6.17379, 6.83195, 6.8533, 5.70378, 7.20786, 6.62007, 6.95655, 5.93225, 6.90575, 6.34564, 7.09008, 7.014810000000001, 6.73815, 6.65028, 7.03878, 6.10032, 7.266830000000001, 6.95655, 6.58617, 6.49072, 7.20786, 6.68461, 6.602589999999999, 5.78383, 6.551080000000001, 6.87626, 5.16479, 7.54961, 6.551080000000001, 6.84055, 6.49224, 6.58893, 5.2983199999999995, 6.60665, 6.907760000000001, 7.64969, 6.9177100000000005, 6.35957, 6.18415, 6.68461, 7.43838, 6.66441, 6.551080000000001, 5.99146, 5.82008, 6.41182, 6.43775, 6.10925, 6.43775, 6.4599, 6.04025, 7.00307, 5.99146, 6.852239999999999, 6.51175, 6.5439099999999994, 6.6515699999999995, 7.522939999999999, 6.16331, 6.551080000000001, 6.907760000000001, 7.04752, 6.44572, 6.3243599999999995, 6.41346, 6.551080000000001, 6.802389999999999, 6.62007, 6.5439099999999994, 6.57925, 6.38012, 6.4151, 6.52209, 6.29157, 6.39693, 6.59715, 5.01064, 6.2146099999999995, 6.97167, 6.75926, 6.73102, 6.66823, 7.37776, 6.77422, 7.1309, 6.90575, 6.10925, 7.408530000000001, 6.30992, 6.39693, 6.04025, 7.0396600000000005, 7.09589, 7.10003, 6.73102, 6.87523, 6.90575, 7.20786, 7.173960000000001, 6.90575, 6.47389, 6.99026, 7.0884100000000005, 6.206580000000001, 5.5606800000000005, 6.56526, 6.44572, 6.802389999999999, 6.551080000000001, 6.53379, 6.90575, 6.46614, 6.61338, 6.90575, 6.85646, 6.47389, 6.10925, 6.99118, 6.2441699999999996, 7.1592899999999995, 6.697030000000001, 6.90575, 6.59987, 7.01571, 6.42162, 6.716589999999999, 6.85646, 7.46737, 6.58617, 6.95655, 6.29157, 6.907760000000001, 6.8426800000000005, 6.46459, 6.62007, 6.95177, 6.58617, 6.50129, 6.2952699999999995, 6.85646, 6.15698, 6.90575, 7.6009, 6.30992, 7.00307, 6.17379, 6.15273, 7.01392, 6.62007, 7.346010000000001, 6.90575, 6.68461, 6.50429, 7.24423, 7.0942300000000005, 5.78383, 6.54535, 6.3716099999999996, 7.86327, 6.62007, 7.09008, 6.703189999999999, 6.354369999999999, 6.53233, 6.58617, 6.602589999999999, 7.46737, 6.9622399999999995, 6.424869999999999, 6.39693, 6.38012, 6.802389999999999, 6.43935, 6.259580000000001, 7.044910000000001, 6.42162, 6.90575, 6.802389999999999, 6.44413, 7.127689999999999, 6.45677, 6.40192, 6.55393, 6.593039999999999, 7.06902, 6.59987, 6.802389999999999, 6.715380000000001, 6.715380000000001, 6.39693, 6.57786, 6.68461, 7.00307, 6.42972, 6.85435, 6.58893, 6.937310000000001, 6.2106, 6.708080000000001, 6.0845, 6.907760000000001, 6.16331, 6.43775, 6.2146099999999995, 6.2441699999999996, 6.2634, 6.74406, 6.85646, 6.73221, 5.72031, 5.97635, 6.13123, 7.54961, 6.37673, 6.90575, 6.62007, 6.768489999999999, 6.63595, 5.82895, 6.90575, 6.75577, 6.04025, 6.77194, 6.77422, 6.99485, 6.58617, 5.8999, 6.2146099999999995, 6.2146099999999995, 6.6567300000000005, 6.62007, 6.9489, 7.354360000000001, 7.279319999999999, 5.8861, 6.6592899999999995, 7.06305, 6.61338, 7.00307, 6.49224, 6.07993, 6.84588, 6.35611, 6.35611, 6.8977, 6.551080000000001, 7.20786, 6.90575, 7.59287, 6.17587, 7.1309, 7.393260000000001, 6.95655, 6.834110000000001, 6.07993, 7.10988, 6.802389999999999, 6.224559999999999, 6.57925, 6.927560000000001, 6.90575, 7.09008, 7.1309, 6.90575, 6.907760000000001, 5.8693, 6.16542, 6.62007, 7.6009, 6.963189999999999, 6.95655, 6.90575, 6.43775, 6.90575, 6.796819999999999, 6.66568, 6.73459, 6.907760000000001, 6.8533, 6.813439999999999, 7.196689999999999, 6.43615, 6.9147300000000005, 6.551080000000001, 6.77194, 6.90575, 6.90575, 6.66823, 6.47697, 7.0255399999999995, 7.522939999999999, 6.62007, 6.354369999999999, 7.1546199999999995, 6.90575, 6.551080000000001, 5.78383, 6.753439999999999, 6.77422, 7.313219999999999, 6.967910000000001, 6.816739999999999, 7.6009, 6.745239999999999, 6.51471, 7.37588, 6.86485, 6.41346, 6.7093, 6.551080000000001, 6.22654, 7.24423, 5.70378, 6.06146, 6.16331, 7.05359, 6.49224, 6.86171, 6.58617, 7.1309, 6.77422, 7.93737, 6.39693, 6.58617, 7.67322, 6.551080000000001, 6.2146099999999995, 6.77422, 6.2634, 6.99485, 6.45047, 6.66185, 6.94119, 6.90575, 7.21891, 7.57558, 7.495539999999999, 6.29157, 6.10925, 6.59715, 7.09008, 6.03787, 6.556780000000001, 6.2146099999999995, 6.354369999999999, 7.6009, 6.83303, 6.63068, 6.551080000000001, 7.279319999999999, 6.354369999999999, 7.925160000000001, 6.77422, 7.183110000000001, 6.1136800000000004, 6.77992, 6.62007, 7.00307, 7.86327, 6.70073, 6.795710000000001, 7.1309, 6.32794, 6.16121, 5.6801699999999995, 6.65286, 6.802389999999999, 6.715380000000001, 6.95655, 6.78333, 6.90575, 6.67582, 6.47697, 6.907760000000001, 6.90575, 6.682110000000001, 6.19236, 6.53233, 6.882439999999999, 7.0255399999999995, 6.23048, 6.715380000000001, 7.872839999999999, 6.49072, 6.90575, 6.4892, 6.63726, 6.12249, 6.3613, 6.79122, 6.53233, 6.05209, 6.907760000000001, 6.697030000000001, 6.8742, 6.08677, 6.6280399999999995, 6.907760000000001, 6.05209, 5.70378, 5.68698, 7.02997, 6.715380000000001, 6.2146099999999995, 6.90575, 7.313219999999999, 6.3699, 6.12249, 6.14847, 6.07074, 6.77992, 6.54822, 6.62007, 6.59987, 6.62007, 6.8966899999999995, 6.802389999999999, 6.7226300000000005, 6.07993, 6.51026, 6.907760000000001, 6.50429, 6.47697, 6.58617, 5.88053, 6.77422, 6.8977, 5.9135, 6.17379, 8.047189999999999, 6.93537, 6.2146099999999995, 6.507280000000001, 7.46737, 5.82895, 7.034389999999999, 6.7569300000000005, 7.2998, 6.95655, 6.17794, 6.68461, 7.495539999999999, 6.62007, 6.88755, 6.45205, 6.802389999999999, 6.32794, 6.10925, 6.68461, 8.03916, 6.829789999999999, 6.6745600000000005, 6.714169999999999, 6.43775, 5.4161, 7.00307, 6.43455, 6.90575, 7.346660000000001, 6.9256, 7.6009, 7.10988, 7.24423, 6.7569300000000005, 6.48004, 6.38856, 6.889589999999999, 7.313219999999999, 6.9256, 6.59167, 6.57786, 6.53669, 6.39693, 6.33328, 6.33328, 7.313219999999999, 6.551080000000001, 7.408530000000001, 6.802389999999999, 7.3908, 6.90575, 5.86079, 6.9256, 6.95655, 6.13123, 5.99894, 6.551080000000001, 7.06561, 6.57925, 6.90575, 6.73102, 7.09008, 6.566669999999999, 6.9966800000000005, 6.43775, 6.62007, 6.68461, 6.424869999999999, 6.646389999999999, 5.39363, 5.96615, 6.2146099999999995, 6.802389999999999, 6.90575, 6.9613, 5.70378, 6.78672, 6.65286, 7.24423, 7.09008, 6.602589999999999, 6.42162, 7.0422899999999995, 7.034389999999999, 6.52209, 6.59987, 6.44572, 6.20456, 6.57925, 6.38012, 6.16331, 5.96615, 7.43838, 6.818919999999999, 6.551080000000001, 6.53669, 6.95655, 5.76832, 7.2100800000000005, 6.48311, 6.507280000000001, 6.45362, 6.765039999999999, 6.2634, 6.2691, 7.18917, 5.9135, 6.6896, 6.2146099999999995, 6.802389999999999, 6.50129, 6.2634, 7.38647, 6.96885, 6.10925, 7.196689999999999, 6.3403599999999996, 6.14419, 6.818919999999999, 6.72623, 6.90575, 7.04752, 6.7569300000000005, 6.62936, 7.09008, 6.692080000000001, 6.62007, 5.9839400000000005, 6.013719999999999, 6.95655, 7.49332, 6.62007, 6.31355, 6.62007, 6.753439999999999, 6.77422, 6.2653, 7.495539999999999, 6.7334, 6.95655, 6.56526, 6.88755, 7.47307, 6.224559999999999, 6.47697, 6.90575, 6.90575, 7.909860000000001, 6.69084, 6.3716099999999996, 6.52209, 6.07304, 7.106610000000001, 6.2146099999999995, 6.40523, 6.69084, 5.627619999999999, 6.802389999999999, 6.6567300000000005, 6.68461, 6.697030000000001, 6.22654, 7.740660000000001, 5.95324, 6.907760000000001, 6.43775, 6.43775, 6.813439999999999, 5.76832, 6.9256, 7.64969, 6.47697, 6.43615, 5.8579300000000005, 6.10925, 7.1309, 5.89715, 6.907760000000001, 6.745239999999999, 6.33683, 6.43775, 6.85646, 6.77422, 6.768489999999999, 5.97889, 6.2146099999999995, 7.029089999999999, 6.62007, 7.06133, 7.24423, 6.95177, 7.54961, 6.354369999999999, 6.87626, 6.318969999999999, 6.570880000000001, 6.34388, 6.62007, 7.61332, 7.09008, 6.7511, 6.8977, 6.551080000000001, 7.40914, 7.034389999999999, 7.18917, 6.49072, 6.30992, 5.70378, 6.55393, 6.1070199999999994, 6.72743, 6.05209, 7.0967199999999995, 6.30992, 6.90575, 6.551080000000001, 6.907760000000001, 6.785589999999999, 6.39693, 6.05209, 6.90575, 6.36819, 6.697030000000001, 6.814539999999999, 6.639880000000001, 6.23637, 6.62007, 7.24423, 6.77194, 6.551080000000001, 6.802389999999999, 5.8999, 5.52146, 6.57228, 7.062189999999999, 6.47697, 6.2441699999999996, 6.829789999999999, 6.95655, 6.47697, 6.907760000000001, 6.38012, 7.293019999999999, 6.91175, 6.68461, 6.45834, 6.556780000000001, 6.5582, 6.91175, 6.45362, 7.1309, 6.36303, 6.8773, 6.955589999999999, 7.80588, 6.9613, 5.4161, 6.907760000000001, 6.90575, 7.18992, 7.507689999999999, 6.90575, 6.385190000000001, 6.748760000000001, 7.31122, 6.6107, 6.807930000000001, 6.79794, 6.1717, 6.16331, 6.6592899999999995, 7.0483899999999995, 6.598510000000001, 5.5797300000000005, 6.633319999999999, 7.6009, 6.09131, 7.106610000000001, 6.90575, 6.04025, 7.66153, 7.22548, 6.48768, 6.87213, 7.17012, 6.23245, 6.39693, 6.4677, 7.35244, 7.183110000000001, 6.56948, 8.00637, 7.05272, 6.33328, 6.90575, 6.802389999999999, 6.30992, 6.551080000000001, 6.10925, 6.77422, 6.30992, 7.522939999999999, 6.49979, 6.802389999999999, 5.7525699999999995, 7.05704, 7.16858, 6.802389999999999, 6.58617, 6.551080000000001, 7.20564, 6.551080000000001, 6.47697, 6.0330900000000005, 7.1507, 6.852239999999999, 7.6009, 6.70564, 5.7525699999999995, 6.90575, 6.802389999999999, 6.11147, 6.95655, 6.84375, 6.95655, 6.8977, 7.34923, 6.93245, 6.34564, 6.79122, 7.03878, 5.8861, 7.400010000000001, 5.8579300000000005, 7.37588, 6.83195, 7.00307, 6.84162, 6.354369999999999, 6.93342, 6.608, 6.85646, 6.61607, 5.82305, 6.056780000000001, 6.90575, 6.697030000000001, 6.5395900000000005, 6.6120399999999995, 6.63726, 7.1309, 6.739339999999999, 7.86327, 6.55393, 6.47697, 6.7511, 6.907760000000001, 6.05912, 6.54535, 6.551080000000001, 7.00307, 6.51471, 7.0422899999999995, 6.57925, 6.66823, 7.71869, 5.52146, 7.1309, 6.551080000000001, 6.44572, 7.00307, 5.39363, 6.253830000000001, 7.401839999999999, 5.99146, 7.2724, 6.907760000000001, 6.90575, 6.3315, 6.3699, 6.39693, 5.43808, 7.82405, 6.95655, 6.09582, 5.95324, 6.07535, 5.8999, 6.90575, 6.8426800000000005, 7.0518600000000005, 6.993930000000001, 6.907760000000001, 6.79122, 6.7511, 6.2146099999999995, 6.78897, 6.67203, 7.259119999999999, 7.6811, 6.745239999999999, 7.27031, 6.721430000000001, 6.2146099999999995, 6.2804, 6.90575, 6.563860000000001, 6.99485, 7.37776, 7.06048, 7.6009, 6.30992, 6.84375, 7.0282, 6.66696, 6.90575, 6.47235, 6.56244, 8.0229, 6.90575, 6.6592899999999995, 6.80351, 6.92658, 6.4892, 6.39693, 6.28227, 7.06902, 6.08677, 5.958419999999999, 7.1309, 5.68698, 6.62007, 6.33683, 6.984719999999999, 5.89715, 6.06611, 6.753439999999999, 6.354369999999999, 6.52209, 6.52209, 7.362010000000001, 6.8200199999999995, 6.73102, 6.39693, 6.8773, 6.2146099999999995, 6.507280000000001, 7.313219999999999, 6.81014, 6.802389999999999, 6.49072, 6.0845, 7.46737, 6.82437, 5.48064, 6.745239999999999, 6.11147, 6.2634, 7.181589999999999, 6.551080000000001, 7.05618, 6.29157, 7.2998, 5.86079, 6.51619, 6.56948, 6.937310000000001, 5.83188, 6.9256, 6.90575, 6.10925, 6.39693, 7.09008, 6.82437, 6.3952599999999995, 6.753439999999999, 6.966019999999999, 6.802389999999999, 7.239210000000001, 6.5582, 6.907760000000001, 6.98008, 6.62407, 5.70378, 6.551080000000001, 6.41673, 7.313219999999999, 6.62007, 6.84588, 6.95655, 6.42162, 6.68461, 6.715380000000001, 6.85646, 6.57786, 5.8579300000000005, 6.2146099999999995, 7.313219999999999, 7.37776, 6.07993, 6.30992, 7.1309, 6.69084, 6.70564, 6.27099, 5.7462, 6.16752, 7.279319999999999, 6.73102, 6.53669, 6.24222, 7.03527, 7.04752, 6.507280000000001, 6.93049, 6.59715, 7.09008, 6.45047, 6.33328, 6.68461, 6.62007, 6.6592899999999995, 6.90575, 7.04752, 6.30992, 6.58617, 7.43838, 6.6346300000000005, 6.59167, 6.1181, 6.41836, 7.2724, 6.56526, 6.90575, 7.91936, 6.54103, 6.90575, 7.57558, 6.2146099999999995, 6.20456, 6.802389999999999, 6.899719999999999, 7.484369999999999, 6.90575, 6.51471, 5.7462, 6.39693, 6.94698, 7.084230000000001, 6.96885, 6.907760000000001, 7.00307, 7.293019999999999, 7.173189999999999, 6.77422, 6.815639999999999, 6.43294, 6.813439999999999, 6.90575, 6.88857, 6.90575, 7.09008, 6.90575, 7.226210000000001, 5.76832, 5.70378, 7.279319999999999, 6.73102, 6.05912, 6.68461, 6.6592899999999995, 7.91936, 6.507280000000001, 6.035480000000001, 7.00307, 6.47697, 6.551080000000001, 6.206580000000001, 6.90575, 6.2146099999999995, 6.907760000000001, 6.715380000000001, 6.96885, 6.68461, 6.57368, 6.745239999999999, 6.39859, 6.53669, 5.76832, 6.2146099999999995, 6.8426800000000005, 7.520230000000001, 5.5797300000000005, 6.51323, 7.1082399999999994, 6.551080000000001, 6.5582, 7.17012, 6.768489999999999, 6.39693, 7.393260000000001, 6.6958, 6.39693, 6.95177, 6.2146099999999995, 7.09008, 6.5582, 7.09008, 6.9613, 6.4892, 7.676010000000001, 6.715380000000001, 5.70378, 6.907760000000001, 6.3935900000000006, 7.54961, 6.86171, 6.43775, 5.79606, 6.83087, 6.6783399999999995, 6.54535, 6.02345, 6.593039999999999, 5.9269300000000005, 6.77422, 6.44572, 7.04752, 6.3716099999999996, 6.72743, 7.37776, 7.17012, 6.8426800000000005, 7.00307, 6.126869999999999, 6.50129, 6.8773, 6.56526, 6.354369999999999, 6.96885, 6.575080000000001, 6.62007, 6.42811, 6.752269999999999, 6.90575, 6.78672, 7.1309, 8.12089, 6.829789999999999, 7.00307, 6.2146099999999995, 6.1944099999999995, 7.740660000000001, 6.551080000000001, 6.907760000000001, 6.2146099999999995, 6.96979, 6.68461, 7.14283, 6.2634, 6.139880000000001, 7.1293, 6.89467, 5.43808, 6.646389999999999, 6.621410000000001, 5.5797300000000005, 7.183110000000001, 6.07993, 6.5467900000000006, 6.34388, 6.39024, 7.0255399999999995, 6.424869999999999, 6.68461, 6.49979, 7.37776, 6.7901, 6.17379, 6.4488900000000005, 6.614730000000001, 6.802389999999999, 6.60665, 7.09008, 6.51323, 6.93245, 6.6592899999999995, 6.30992, 6.30992, 6.7226300000000005, 7.37776, 6.09807, 6.8977, 6.35784, 6.37502, 6.57925, 7.7021, 7.46737, 7.6009, 7.36455, 5.4161, 6.59715, 6.639880000000001, 6.36303, 5.82895, 6.59715, 6.62007, 6.551080000000001, 7.09008, 6.47697, 6.78333, 6.563860000000001, 7.0076, 6.880380000000001, 6.745239999999999, 5.50126, 6.82437, 6.4677, 7.127689999999999, 7.1309, 6.62007, 7.82084, 7.288930000000001, 6.72743, 6.583410000000001, 6.39693, 6.68461, 7.10988, 6.563860000000001, 6.354369999999999, 6.7546, 7.196689999999999, 6.44731, 5.99146, 6.74052, 7.24423, 6.67203, 6.86485, 7.1309, 7.6009, 6.6107, 7.24423, 6.9256, 7.11314, 6.86693, 5.82895, 6.85118, 6.58617, 6.85646, 5.70378, 6.2146099999999995, 6.92363, 5.67675, 6.84588, 6.86171, 6.813439999999999, 6.62936, 6.50279, 5.7589, 6.7417, 7.18917, 6.2146099999999995, 6.93245, 6.78897, 6.74759, 7.00307, 6.2146099999999995, 6.3935900000000006, 7.09008, 7.84385, 6.73815, 6.802389999999999, 6.57647, 6.78672, 6.39693, 6.9707300000000005, 8.3082, 7.1309, 7.17012, 6.593039999999999, 6.90575, 6.62007, 6.86693, 6.259580000000001, 6.41999, 6.90575, 5.52146, 6.907760000000001, 7.43838, 6.64509, 7.09008, 6.39693, 7.0255399999999995, 6.802389999999999, 6.77422, 7.903969999999999, 6.1944099999999995, 6.745239999999999, 6.80461, 7.037030000000001, 7.04752, 6.08904, 6.47697, 6.65286, 6.76388, 6.90575, 6.70073, 6.802389999999999, 6.87626, 6.90575, 7.1507, 7.07834, 7.21082, 6.52942, 6.701960000000001, 6.8426800000000005, 6.0282800000000005, 6.3207699999999996, 6.69827, 6.24611, 6.57786, 6.18826, 6.975410000000001, 7.16085, 6.30992, 6.593039999999999, 6.83303, 7.61874, 6.48158, 5.99146, 6.44095, 6.99485, 6.85646, 6.907760000000001, 6.8384100000000005, 6.79122, 5.01064, 6.551080000000001, 6.6695, 7.279319999999999, 6.57925, 6.813439999999999, 6.30992, 6.68461, 6.47389, 6.802389999999999, 6.785589999999999, 6.45362, 7.313219999999999, 6.551080000000001, 6.745239999999999, 7.29097, 5.8861, 6.98008, 6.802389999999999, 7.20786, 6.802389999999999, 6.983789999999999, 6.75926, 6.68461, 6.55962, 6.8977, 6.05912, 6.90575, 7.4570300000000005, 7.1309, 6.85646, 6.566669999999999, 6.829789999999999, 6.85646, 6.79347, 6.643789999999999, 6.77422, 7.90101, 6.32794, 6.25767, 7.81883, 6.966019999999999, 6.33328, 6.2146099999999995, 6.77422, 5.65249, 6.8384100000000005, 6.62007, 6.813439999999999, 6.551080000000001, 6.920669999999999, 7.195189999999999, 6.62007, 6.745239999999999, 6.3315, 6.69332, 6.745239999999999, 6.90575, 7.0396600000000005, 6.90575, 5.8260000000000005, 6.07535, 6.30992, 6.96885, 6.47697, 6.39693, 7.24423, 7.12367, 7.17012, 6.60394, 6.18415, 6.68461, 6.44413, 6.4677, 6.72623, 6.2146099999999995, 6.47697, 6.907760000000001, 6.4552, 7.1546199999999995, 6.39693, 7.37776, 7.18917, 6.10925, 6.5903, 7.136480000000001, 5.95584, 7.03878, 6.461469999999999, 6.697030000000001, 5.9839400000000005, 6.66568, 6.2146099999999995, 6.56526, 6.51471, 5.61677, 6.49375, 7.06048, 6.715380000000001, 6.10925, 6.95655, 7.1309, 6.95655, 6.90575, 6.76273, 6.311730000000001, 7.1507, 6.317159999999999, 7.00307, 6.29157, 6.86693, 6.68461, 6.90575, 6.95655, 7.17012, 7.0255399999999995, 6.86171, 7.495539999999999, 6.49224, 6.90575, 6.8865300000000005, 7.57353, 6.602589999999999, 6.35611, 6.85646, 5.8579300000000005, 6.30992, 6.23048, 6.5467900000000006, 6.530880000000001, 6.802389999999999, 7.6009, 6.55962, 6.46459, 6.834110000000001, 7.313219999999999, 6.802389999999999, 6.7334, 6.18415, 6.66441, 6.05209, 7.251339999999999, 5.87774, 6.802389999999999, 7.43838, 6.35957, 6.43775, 6.5820300000000005, 6.768489999999999, 7.17012, 6.68461, 5.6733199999999995, 6.90575, 7.281389999999999, 7.17702, 6.90575, 6.95845, 6.44572, 5.84354, 6.583410000000001, 6.91672, 6.46925, 6.90575, 8.229510000000001, 7.027310000000001, 6.551080000000001, 6.84055, 7.136480000000001, 6.71174, 6.787839999999999, 6.74288, 7.0934, 7.200419999999999, 6.83087, 7.37776, 6.79122, 6.67203, 6.55393, 6.39693, 7.46737, 6.802389999999999, 7.165489999999999, 6.62007, 6.90575, 7.0255399999999995, 7.70661, 6.47389, 6.35957, 6.07535, 6.907760000000001, 5.99894, 7.1107, 6.593039999999999, 6.30992, 7.20786, 6.43775, 6.556780000000001, 6.83518, 6.77878, 6.966019999999999, 6.95273, 6.3716099999999996, 6.745239999999999, 6.43133, 6.907760000000001, 6.68461, 6.64898, 6.28972, 7.00307, 6.2146099999999995, 6.66058, 6.967910000000001, 7.016610000000001, 6.68461, 7.09008, 6.85646, 6.77765, 6.90575, 5.66988, 7.09008, 6.53379, 6.84801, 6.90575, 5.99146, 7.21891, 6.30992, 5.8999, 6.90575, 6.745239999999999, 7.07242, 7.6009, 5.8861, 6.817830000000001, 6.23637, 7.346010000000001, 6.6592899999999995, 7.46737, 6.975410000000001, 6.79122, 6.719010000000001, 6.720219999999999, 6.90575, 6.90575, 6.68336, 6.892639999999999, 6.86485, 6.947939999999999, 6.955589999999999, 7.216710000000001, 6.90575, 6.65286, 5.78383, 6.551080000000001, 5.66988, 7.0255399999999995, 7.04752, 6.3935900000000006, 6.807930000000001, 6.74288, 6.802389999999999, 6.4599, 6.354369999999999, 6.2146099999999995, 6.18208, 7.398789999999999, 7.37776, 7.35883, 6.47697, 7.18463, 6.745239999999999, 7.05876, 6.694560000000001, 6.84588, 6.68461, 7.64969, 6.59578, 7.027310000000001, 6.715380000000001, 6.04025, 5.84644, 6.2146099999999995, 6.88857, 6.507280000000001, 6.23441, 7.098380000000001, 6.2804, 7.6256, 6.633319999999999, 6.6346300000000005, 7.195189999999999, 5.76205, 5.68698, 6.43455, 6.52649, 6.49527, 6.51915, 7.54961, 6.1203, 7.09008, 7.00307, 5.7365699999999995, 6.36475, 5.7462, 6.77422, 6.10925, 6.73459, 7.1293, 6.49224, 5.7365699999999995, 6.28413, 7.17012, 6.2146099999999995, 6.90575, 6.6515699999999995, 6.56948, 6.80461, 6.03787, 5.47227, 7.313219999999999, 6.11589, 6.68461, 6.2146099999999995, 6.72743, 7.09008, 5.96615, 8.26873, 6.17794, 6.3935900000000006, 7.12287, 7.04752, 6.43775, 5.95324, 6.6796, 6.758089999999999, 6.68461, 6.30992, 5.70378, 6.90575, 7.495539999999999, 6.84588, 6.745239999999999, 6.21261, 7.251339999999999, 6.10032, 8.048789999999999, 7.313219999999999, 6.802389999999999, 6.745239999999999, 7.17012, 6.907760000000001, 6.90575, 6.551080000000001, 5.82305, 6.90575, 7.17012, 5.7365699999999995, 6.2441699999999996, 5.64191, 8.08641, 5.59842, 7.08171, 6.9594, 6.97354, 6.21261, 7.30653, 6.55962, 6.58617, 6.74406, 7.56008, 6.1944099999999995, 7.408530000000001, 6.61338, 6.01616, 6.32794, 7.18007, 6.74052, 6.47697, 6.95655, 6.95655, 6.58617, 5.61313, 6.66568, 6.85646, 6.44572, 7.313219999999999, 7.1309, 6.62672, 5.99146, 6.18826, 5.59842, 6.23441, 6.49224, 6.821110000000001, 6.56526, 6.47697, 6.813439999999999, 7.43838, 7.2717, 5.7462, 6.056780000000001, 6.30262, 6.38351, 6.551080000000001, 5.8944, 5.45959, 6.43775, 6.90575, 6.53233, 5.84932, 6.61874, 6.06843, 6.1203, 6.06843, 7.88231, 6.90575, 6.7569300000000005, 5.7651900000000005, 6.938280000000001, 7.08255, 6.41346, 5.53339, 6.882439999999999, 7.37776, 6.44413, 6.90575, 6.51471, 7.2998, 6.5439099999999994, 6.551080000000001, 6.49375, 6.90575, 7.35372, 7.135689999999999, 7.46737, 5.7365699999999995, 6.63595, 6.802389999999999, 7.346010000000001, 5.76832, 6.90575, 6.86693, 7.1309, 5.78383, 6.829789999999999, 6.65286, 6.7334, 5.5797300000000005, 7.2998, 6.65415, 6.9256, 6.90575, 6.39693, 6.52209, 6.3699, 6.770789999999999, 6.39693, 6.49072, 6.02345, 7.32251, 6.13123, 6.29711, 7.04752, 6.799060000000001, 6.272880000000001, 6.23832, 5.79606, 6.354369999999999, 6.49527, 6.57925, 6.697030000000001, 5.52146, 6.703189999999999, 7.04752, 6.65286, 6.752269999999999, 6.2146099999999995, 6.42162, 6.90575, 7.014810000000001, 6.62007, 6.85646, 6.745239999999999, 6.9256, 6.58617, 6.51471, 5.96615, 6.90575, 6.52942, 6.19644, 6.16331, 6.56526, 6.813439999999999, 7.09008, 6.19236, 5.8141300000000005, 6.49979, 6.769639999999999, 6.08677, 6.6253899999999994, 6.7369699999999995, 7.064760000000001, 6.01616, 7.11883, 6.48158, 6.51175, 5.7525699999999995, 7.46737, 6.57228, 6.551080000000001, 7.67322, 6.35957, 6.907760000000001, 6.58617, 5.8579300000000005, 7.1309, 6.57925, 6.14633, 6.43294, 6.39693, 7.46737, 6.95655, 6.54247, 6.3716099999999996, 7.293019999999999, 6.08677, 7.64969, 6.95655, 8.13153, 6.3613, 6.10925, 6.551080000000001, 6.907760000000001, 6.97261, 6.907760000000001, 6.43775, 6.3243599999999995, 6.83518, 6.993930000000001, 6.6567300000000005, 6.712960000000001, 6.984719999999999, 7.062189999999999, 6.907760000000001, 6.77992, 7.195189999999999, 7.185389999999999, 6.16331, 6.07993, 6.01616, 6.72743, 6.33683, 6.70073, 7.20786, 7.0103100000000005, 6.3716099999999996, 6.551080000000001, 7.1309, 6.7334, 7.495539999999999, 6.24028, 6.354369999999999, 6.90575, 6.551080000000001, 7.00307, 6.85013, 7.0255399999999995, 6.39693, 7.495539999999999, 6.768489999999999, 6.23441, 6.461469999999999, 6.5395900000000005, 6.907760000000001, 6.62007, 6.05209, 6.28413, 6.126869999999999, 7.12287, 6.745239999999999, 6.30992, 7.21744, 6.39693, 6.49072, 6.47697, 6.05209, 6.47697, 7.24423, 6.802389999999999, 7.09008, 6.44572, 7.00307, 6.62007, 6.966019999999999, 6.721430000000001, 6.62936, 6.813439999999999, 6.551080000000001, 6.28227, 7.64969, 6.9575, 7.3696, 6.461469999999999, 6.18002, 6.90575, 7.20786, 6.78333, 6.57647, 6.5903, 7.00307, 6.74993, 6.57925, 6.907760000000001, 7.18917, 6.16331, 6.59578, 6.802389999999999, 6.272880000000001, 7.014810000000001, 6.745239999999999, 6.2146099999999995, 6.43615, 6.64509, 6.608, 6.68461, 6.58617, 6.62007, 6.19032, 7.00307, 5.96358, 6.95655, 6.12249, 6.62007, 7.313219999999999, 6.39693, 7.09008, 6.83303, 6.98101, 6.6871100000000006, 7.09008, 6.81014, 7.37776, 6.51767, 6.85435, 6.14204, 7.64969, 7.91936, 6.907760000000001, 6.9256, 6.6733, 7.5574699999999995, 6.13773, 6.67203, 6.30992, 6.47697, 6.8956800000000005, 6.56948, 6.33328, 6.802389999999999, 6.9707300000000005, 8.00637, 6.65286, 6.57368, 5.5797300000000005, 5.70711, 6.57786, 6.92363, 6.57368, 7.37776, 6.2146099999999995, 7.408530000000001, 7.1155800000000005, 7.91936, 7.09008, 7.37776, 7.1309, 6.58617, 6.14633, 6.11147, 6.6592899999999995, 6.90575, 7.092569999999999, 6.86485, 5.66988, 7.57558, 7.200419999999999, 6.95655, 6.2146099999999995, 6.05209, 6.44254, 6.35957, 5.72031, 6.4599, 6.60394, 6.51471, 5.73334, 6.975410000000001, 6.39693, 7.400010000000001, 5.90808, 8.537, 6.07993, 7.36645, 5.9269300000000005, 6.67708, 6.99942, 6.61338, 7.64969, 6.68461, 6.57925, 6.2186, 7.09008, 7.1082399999999994, 6.83518, 7.09008, 6.58617, 5.8861, 6.90575, 6.43615, 6.84162, 7.313219999999999, 6.68461, 6.55962, 6.07993, 6.3952599999999995, 6.633319999999999, 6.42162, 7.09008, 6.13123, 7.313219999999999, 6.30992, 6.79122, 6.720219999999999, 6.66823, 7.2861899999999995, 6.643789999999999, 6.802389999999999, 5.66988, 6.703189999999999, 6.39693, 5.98896, 7.620710000000001, 6.06611, 6.0822199999999995, 6.77878, 6.57786, 5.43808, 7.09008, 7.6009, 6.28972, 6.48768, 5.8141300000000005, 6.68461, 6.41182, 7.37776, 7.525639999999999, 6.74993, 6.72623, 7.09008, 7.25347, 7.585789999999999, 6.45362, 6.354369999999999, 6.984719999999999, 6.90575, 6.937310000000001, 6.907760000000001, 7.0775, 7.346010000000001, 7.027310000000001, 6.907760000000001, 6.9489, 6.907760000000001, 6.3315, 7.495539999999999, 6.01127, 6.802389999999999, 6.745239999999999, 6.58617, 6.90575, 6.633319999999999, 6.80572, 6.2480400000000005, 6.2634, 6.31355, 7.35819, 6.86485, 6.49677, 6.68461, 6.633319999999999, 7.30317, 6.95655, 6.907760000000001, 5.742999999999999, 6.04025, 6.39693, 7.313219999999999, 6.90575, 7.09008, 6.47697, 7.196689999999999, 6.47697, 6.30262, 6.745239999999999, 7.07412, 6.354369999999999, 6.10925, 6.68461, 7.42357, 6.768489999999999, 6.95655, 6.715380000000001, 6.7901, 6.56244, 6.9828600000000005, 6.253830000000001, 7.02465, 6.49224, 6.49979, 6.27099, 5.8861, 6.57228, 7.393260000000001, 6.829789999999999, 6.32794, 6.28786, 5.9839400000000005, 6.68461, 5.84354, 6.05209, 6.62007, 7.12287, 6.2146099999999995, 6.84162, 7.00307, 6.2146099999999995, 6.983789999999999, 6.35611, 5.93225, 6.17379, 6.95655, 6.39693, 6.88755, 7.04316, 6.90575, 6.84162, 6.45362, 6.83518, 5.273, 6.85646, 6.46925, 5.99146, 6.62007, 6.2186, 7.00307, 6.1717, 5.99146, 6.22654, 6.633319999999999, 6.77308, 7.1107, 6.95655, 6.967910000000001, 6.995769999999999, 6.66568, 6.594410000000001, 6.90575, 6.5439099999999994, 6.62007, 6.60665, 7.04752, 7.062189999999999, 7.313219999999999, 7.04752, 7.0884100000000005, 6.937310000000001, 6.90575, 6.23441, 6.47697, 6.25767, 6.05209, 6.2146099999999995, 6.551080000000001, 6.90575, 7.09008, 6.68461, 6.2146099999999995, 6.386880000000001, 6.44413, 6.58617, 6.10925, 6.90073, 6.745239999999999, 7.2233, 6.8773, 5.8579300000000005, 6.813439999999999, 6.86693, 7.037030000000001, 6.36303, 6.40523, 6.2146099999999995, 6.17379, 7.6009, 6.30992, 6.685860000000001, 5.99146, 6.38856, 6.47697, 7.46737, 6.551080000000001, 6.9226399999999995, 6.87213, 6.73102, 6.30992, 5.19296, 7.45298, 5.72359, 6.39693, 7.1309, 6.882439999999999, 5.95584, 5.940169999999999, 6.7093, 6.90675, 6.551080000000001, 6.9147300000000005, 6.85646, 6.563860000000001, 6.381819999999999, 5.78996, 6.769639999999999, 6.73102, 7.06133, 6.68461, 6.2146099999999995, 6.62007, 6.912739999999999, 6.4708, 6.2634, 6.41017, 7.08171, 6.90575, 7.6009, 6.556780000000001, 6.52062, 6.907760000000001, 6.60935, 5.8141300000000005, 6.30992, 6.51471, 6.9828600000000005, 6.85646, 6.30992, 6.39693, 7.338889999999999, 6.22654, 6.26149, 6.84055, 6.311730000000001, 7.01392, 6.49224, 6.2205900000000005, 7.44659, 5.94803, 7.388330000000001, 6.85118, 7.24423, 6.632000000000001, 6.65544, 6.90575, 7.10906, 6.3081, 6.944089999999999, 6.83518, 6.222580000000001, 6.84588, 7.17012, 6.52503, 6.2860000000000005, 6.80128, 6.07993 ], "xaxis": "x", "y": [ "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "no", "no", "no", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "no", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "no", "yes", "no", "no", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "no", "yes", "no", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "no", "no", "yes", "no", "yes", "no", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "no", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "no", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "no", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "no", "yes", "no", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "no", "yes", "no", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "no", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "no", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "no", "no", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "no", "yes", "no", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "no", "no", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "no", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "no", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "no", "no", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "no", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "no", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "no", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "no", "yes", "yes", "yes", "no", "no", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "no", "yes", "no", "yes", "no", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "no", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "no", "no", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "no", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "no", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "no", "no", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "no", "yes", "yes", "no", "no", "yes", "no", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "no", "yes", "yes", "no", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "no", "no", "yes", "no", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "no", "yes", "yes", "no", "no", "no", "no", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "no", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "no", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes" ], "yaxis": "y" }, { "box": { "visible": true }, "legendgroup": "gender", "marker": { "color": "green" }, "name": "Gender", "orientation": "h", "type": "violin", "x": [ 6.99942, 5.99146, 7.67322, 7.09008, 5.61677, 6.55536, 6.646389999999999, 7.02643, 6.4552, 7.32975, 6.39693, 6.95845, 7.06902, 6.04025, 6.907760000000001, 7.91936, 6.745239999999999, 6.30079, 7.068169999999999, 6.07535, 6.907760000000001, 6.7417, 7.71869, 6.882439999999999, 6.47697, 6.50279, 6.77878, 6.907760000000001, 6.93342, 7.06902, 6.57368, 6.829789999999999, 7.557989999999999, 6.892639999999999, 7.0255399999999995, 6.57925, 7.313219999999999, 6.47697, 7.1309, 6.551080000000001, 6.882439999999999, 6.907760000000001, 6.682110000000001, 6.39693, 6.48004, 6.60665, 7.00307, 6.10925, 5.78383, 6.94505, 6.9546399999999995, 7.17012, 7.11477, 6.993930000000001, 6.593039999999999, 6.49979, 6.5439099999999994, 6.39192, 6.614730000000001, 6.51471, 6.30992, 6.30992, 7.116389999999999, 6.46925, 6.30992, 7.554860000000001, 6.90675, 6.85646, 5.94803, 6.90575, 6.90575, 7.408530000000001, 7.0076, 6.88857, 7.35947, 6.39693, 7.041410000000001, 6.66696, 6.30992, 7.313219999999999, 6.62007, 6.787839999999999, 6.90575, 6.802389999999999, 7.00307, 7.074960000000001, 7.5606, 6.17379, 5.99146, 6.16331, 5.94803, 6.2146099999999995, 6.43775, 7.282760000000001, 6.39693, 6.813439999999999, 6.694560000000001, 6.65286, 6.29157, 6.23048, 6.67203, 6.16331, 6.88755, 6.95655, 7.56008, 6.28227, 6.30992, 6.05912, 6.30992, 6.602589999999999, 7.47307, 6.2146099999999995, 6.95655, 6.90575, 6.461469999999999, 7.09008, 7.46737, 6.829789999999999, 6.60665, 6.74052, 6.745239999999999, 7.6009, 6.62007, 6.551080000000001, 6.48158, 6.907760000000001, 6.663130000000001, 7.60589, 6.53669, 6.5582, 6.16121, 6.19236, 6.2146099999999995, 5.8999, 7.37776, 6.6995, 6.58617, 6.23832, 6.27476, 6.48311, 6.69084, 6.54965, 6.745239999999999, 6.882439999999999, 6.663130000000001, 5.70378, 6.7226300000000005, 7.20786, 6.05209, 6.802389999999999, 6.79122, 6.62007, 6.42162, 6.12249, 6.90575, 6.28227, 6.745239999999999, 6.206580000000001, 5.99146, 6.682110000000001, 6.49677, 7.408530000000001, 6.10925, 6.317159999999999, 6.2146099999999995, 6.551080000000001, 6.25575, 7.0884100000000005, 6.16331, 6.68461, 5.8999, 7.01392, 7.1107, 6.9363399999999995, 5.73334, 6.90575, 6.1070199999999994, 6.85646, 6.44572, 6.551080000000001, 6.84588, 8.10168, 7.31255, 5.99645, 6.90575, 6.802389999999999, 7.111510000000001, 6.2146099999999995, 6.66696, 6.907760000000001, 6.90575, 6.6592899999999995, 8.047189999999999, 6.62407, 7.0076, 6.30992, 6.17379, 6.55393, 6.3952599999999995, 6.24611, 7.78322, 6.563860000000001, 6.60665, 7.12448, 6.507280000000001, 6.461469999999999, 6.8977, 6.43775, 7.82405, 7.75148, 6.62407, 7.346010000000001, 6.2146099999999995, 7.1309, 6.51471, 5.96615, 6.84055, 7.041410000000001, 6.51471, 6.551080000000001, 7.346010000000001, 6.966019999999999, 6.90575, 7.17012, 6.5820300000000005, 7.04752, 6.354369999999999, 6.59578, 7.82405, 6.5467900000000006, 6.551080000000001, 6.39693, 6.88755, 6.39693, 6.39693, 6.65286, 6.36647, 6.622739999999999, 6.90575, 5.7525699999999995, 6.15273, 7.04752, 5.52146, 6.770789999999999, 6.907760000000001, 7.00125, 7.064760000000001, 7.00307, 6.907760000000001, 5.463830000000001, 6.05209, 6.745239999999999, 7.045780000000001, 6.54535, 6.37673, 6.62007, 6.907760000000001, 6.10925, 6.39693, 8.16052, 6.745239999999999, 7.03527, 5.43808, 6.765039999999999, 6.77422, 7.1309, 6.77422, 6.87213, 6.551080000000001, 6.907760000000001, 6.6567300000000005, 6.80017, 7.226210000000001, 6.10925, 6.90575, 6.70073, 7.495539999999999, 8.05516, 6.9256, 7.06987, 6.694560000000001, 6.90575, 6.43775, 6.97261, 7.29709, 7.179310000000001, 7.313219999999999, 6.7226300000000005, 6.82437, 6.715380000000001, 7.173189999999999, 6.62007, 6.77878, 6.7226300000000005, 6.47697, 6.85118, 6.49224, 7.313219999999999, 6.62007, 7.158510000000001, 6.818919999999999, 6.68461, 6.57647, 6.43455, 5.68358, 5.89715, 6.2146099999999995, 6.34564, 6.556780000000001, 6.7093, 6.93925, 7.00307, 6.551080000000001, 6.90575, 6.53669, 6.69084, 7.313219999999999, 6.10925, 6.05209, 6.90575, 6.62007, 6.4552, 6.77422, 6.87005, 6.65544, 6.42162, 5.9269300000000005, 6.6783399999999995, 6.317159999999999, 6.42972, 7.1309, 6.62007, 6.96508, 6.19236, 6.61607, 5.5606800000000005, 6.57368, 6.39693, 6.2634, 6.77422, 6.715380000000001, 7.408530000000001, 6.17379, 5.96615, 5.90808, 6.39693, 7.333019999999999, 6.37502, 6.16331, 6.317159999999999, 7.04752, 6.68461, 5.0814, 6.98008, 6.912739999999999, 6.86693, 7.3670800000000005, 6.68461, 7.09008, 6.90575, 6.90575, 6.62007, 6.45362, 6.49072, 6.47697, 6.9431199999999995, 6.90575, 6.10925, 6.67203, 4.605169999999999, 6.7334, 7.34278, 6.802389999999999, 6.90575, 6.658010000000001, 6.9256, 6.90575, 6.91075, 6.6592899999999995, 5.8579300000000005, 6.6592899999999995, 6.16331, 7.441319999999999, 6.47851, 7.07834, 6.745239999999999, 7.20786, 6.36475, 6.63857, 7.475910000000001, 6.62007, 6.4892, 7.00307, 6.7901, 6.56948, 6.65286, 7.43838, 7.15383, 6.86485, 7.064760000000001, 6.88755, 7.26193, 6.23245, 6.30445, 6.92461, 6.715380000000001, 7.313219999999999, 7.37776, 5.8579300000000005, 6.85646, 6.2441699999999996, 7.26193, 6.90575, 5.99146, 6.907760000000001, 6.85646, 6.272880000000001, 6.66568, 7.481560000000001, 7.04752, 6.61338, 6.40688, 6.73815, 5.8579300000000005, 7.57558, 6.83518, 6.38856, 6.768489999999999, 6.90575, 6.86693, 5.4161, 6.39693, 6.34739, 7.1507, 6.58617, 7.282760000000001, 7.00307, 6.66058, 6.58064, 6.30079, 6.90575, 6.10925, 6.64249, 5.76832, 6.715380000000001, 6.62007, 7.1309, 6.51471, 5.99146, 6.95655, 6.65286, 6.16331, 6.24611, 7.1309, 6.16542, 5.93489, 7.1333, 7.24423, 6.04025, 6.86901, 6.802389999999999, 7.04752, 6.70073, 6.1203, 6.90575, 7.313219999999999, 6.54822, 6.95655, 7.50108, 6.39693, 6.19644, 6.551080000000001, 7.07918, 5.8579300000000005, 5.70378, 6.7369699999999995, 5.7525699999999995, 7.745, 6.318969999999999, 6.87213, 5.89715, 6.39693, 6.30628, 6.8773, 6.708080000000001, 5.9454199999999995, 6.52942, 6.818919999999999, 7.041410000000001, 6.4677, 6.06611, 6.882439999999999, 6.94986, 6.703189999999999, 6.37502, 5.70378, 7.03615, 7.37776, 5.66988, 6.907760000000001, 6.882439999999999, 6.752269999999999, 6.48158, 6.47697, 7.04752, 6.802389999999999, 6.768489999999999, 6.2480400000000005, 6.984719999999999, 5.9269300000000005, 6.49224, 6.385190000000001, 7.1309, 7.663880000000001, 6.33328, 7.07242, 6.907760000000001, 6.48311, 6.43775, 8.05516, 6.807930000000001, 6.785589999999999, 6.907760000000001, 6.403569999999999, 6.035480000000001, 7.24423, 6.05209, 7.338889999999999, 7.0255399999999995, 7.00307, 5.99146, 6.33683, 6.07993, 7.488289999999999, 6.51175, 5.7365699999999995, 7.00307, 5.8999, 5.7365699999999995, 6.90575, 6.697030000000001, 6.354369999999999, 6.802389999999999, 6.62007, 6.68461, 6.68835, 6.62007, 6.36475, 5.8260000000000005, 6.85646, 6.44572, 6.95655, 7.20786, 6.3716099999999996, 6.8977, 6.47697, 6.802389999999999, 6.90575, 6.84055, 7.676010000000001, 6.85646, 6.43775, 7.20786, 6.89163, 7.0121199999999995, 6.85646, 6.77422, 6.54965, 6.65286, 6.05209, 6.697030000000001, 6.90575, 6.68461, 6.62007, 7.24423, 6.36819, 6.8844899999999996, 6.62007, 6.745239999999999, 6.19236, 5.7525699999999995, 6.39693, 6.85646, 6.025869999999999, 6.7334, 5.9269300000000005, 5.98896, 6.48004, 6.20456, 6.55393, 6.5903, 7.02643, 7.15305, 6.31536, 6.19236, 6.43615, 6.6871100000000006, 6.42162, 6.06379, 6.93537, 7.09008, 6.802389999999999, 6.47697, 6.2634, 7.79028, 6.10032, 6.0282800000000005, 7.408530000000001, 6.6174, 6.907760000000001, 6.90575, 5.95324, 6.1070199999999994, 5.99146, 6.05209, 6.2441699999999996, 6.00141, 6.39693, 6.79122, 6.9196800000000005, 6.9147300000000005, 6.90575, 6.408530000000001, 5.9269300000000005, 6.646389999999999, 6.746410000000001, 6.30992, 6.42972, 6.18826, 6.5467900000000006, 7.522939999999999, 5.51745, 6.7334, 6.07993, 6.907760000000001, 6.90575, 6.715380000000001, 7.04752, 6.66185, 6.47697, 7.23418, 6.54247, 6.753439999999999, 6.51471, 7.034389999999999, 6.65286, 7.262630000000001, 6.47697, 7.20786, 6.90575, 6.30992, 6.984719999999999, 6.85646, 6.85646, 6.30445, 6.32972, 6.05209, 6.34564, 6.95655, 6.49224, 6.62007, 5.82895, 6.39693, 6.06146, 6.43775, 6.03787, 6.3952599999999995, 6.22654, 7.144410000000001, 6.90575, 6.91374, 5.70378, 7.6009, 6.5903, 7.1592899999999995, 6.57786, 6.6783399999999995, 6.72383, 6.41182, 6.53233, 6.907760000000001, 6.7334, 7.236339999999999, 6.20456, 6.802389999999999, 6.10925, 6.715380000000001, 6.72743, 6.551080000000001, 7.084230000000001, 6.97635, 7.20786, 6.685860000000001, 6.8977, 7.00307, 6.35089, 5.70378, 6.59167, 6.461469999999999, 6.984719999999999, 6.53233, 6.646389999999999, 6.39693, 6.16331, 6.95655, 7.459910000000001, 6.19848, 7.0255399999999995, 7.1309, 6.745239999999999, 6.22654, 6.10925, 7.08171, 6.64249, 7.49332, 6.2634, 7.495539999999999, 7.1546199999999995, 7.1309, 6.3716099999999996, 6.745239999999999, 6.18415, 5.82895, 6.10925, 6.58617, 6.48158, 6.20456, 7.313219999999999, 6.94022, 6.90575, 6.41836, 6.10925, 7.48717, 7.0193, 6.983789999999999, 6.633319999999999, 6.10925, 6.29157, 7.49109, 6.91672, 6.90575, 6.93537, 6.51323, 6.715380000000001, 5.8141300000000005, 6.47697, 7.37212, 6.646389999999999, 6.56244, 7.0184, 6.84055, 7.24423, 6.834110000000001, 7.09008, 6.52942, 7.4553, 6.23245, 7.00307, 6.37502, 7.1309, 7.24423, 6.48158, 6.57925, 6.68461, 6.30992, 6.34388, 6.10925, 6.90575, 6.90575, 7.24423, 7.75577, 6.82437, 6.43775, 6.18415, 6.43775, 5.34711, 6.90575, 7.1107, 6.44572, 6.42162, 6.769639999999999, 6.93245, 6.818919999999999, 6.551080000000001, 7.279319999999999, 6.58617, 6.96508, 6.44572, 6.7093, 6.83195, 6.28972, 7.1082399999999994, 7.135689999999999, 6.49072, 7.251339999999999, 8.51719, 6.58064, 6.807930000000001, 7.14756, 7.33368, 6.77422, 6.60394, 6.68461, 7.1309, 5.99146, 7.201169999999999, 5.99146, 6.10925, 6.68461, 6.39693, 6.927560000000001, 6.85751, 6.33683, 6.95655, 6.08677, 7.24423, 7.1309, 6.17587, 6.802389999999999, 6.30992, 6.36303, 5.8999, 6.77422, 6.2860000000000005, 6.828710000000001, 6.47697, 6.72743, 6.55251, 6.29157, 5.59842, 6.5582, 6.62407, 5.9814099999999994, 6.76273, 7.06902, 5.9269300000000005, 6.80128, 6.354369999999999, 7.313219999999999, 6.966019999999999, 5.95324, 6.6592899999999995, 6.39693, 6.57786, 6.62007, 6.65286, 5.9454199999999995, 6.293419999999999, 5.4161, 5.87493, 5.64545, 6.79122, 6.987489999999999, 6.30992, 5.7525699999999995, 6.55536, 7.09008, 6.28972, 6.2146099999999995, 7.04752, 6.90575, 6.10925, 6.6783399999999995, 6.39693, 7.259119999999999, 7.43838, 6.47697, 7.1309, 6.2952699999999995, 6.77422, 6.2634, 6.739339999999999, 7.46737, 6.47697, 6.90575, 7.279319999999999, 6.815639999999999, 7.1309, 6.05209, 6.65028, 6.27099, 7.17012, 6.354369999999999, 6.29157, 6.802389999999999, 6.551080000000001, 6.602589999999999, 6.47697, 6.63857, 6.58755, 6.77422, 6.621410000000001, 6.907760000000001, 7.09589, 6.882439999999999, 5.45959, 6.05209, 5.82305, 7.67322, 6.85646, 5.8579300000000005, 5.78074, 6.2146099999999995, 7.2957399999999994, 5.84354, 6.802389999999999, 6.58064, 6.2634, 7.00307, 6.90575, 7.21891, 7.503839999999999, 6.12905, 6.45677, 6.950810000000001, 5.97126, 6.23048, 6.15273, 6.02345, 7.57558, 6.96035, 6.3716099999999996, 6.2146099999999995, 6.7334, 6.86066, 6.378430000000001, 6.48004, 7.00307, 6.8200199999999995, 6.47697, 6.90575, 7.39388, 7.4787300000000005, 6.2146099999999995, 6.802389999999999, 6.43775, 7.24065, 5.70378, 6.13773, 6.3952599999999995, 7.1025, 7.04752, 5.883319999999999, 7.09008, 6.77992, 6.9256, 6.035480000000001, 7.22766, 7.475339999999999, 6.62007, 5.72031, 6.272880000000001, 6.01616, 6.27099, 7.91936, 6.2146099999999995, 6.85646, 6.354369999999999, 6.907760000000001, 6.2634, 6.51471, 6.92166, 6.253830000000001, 5.9269300000000005, 6.745239999999999, 6.30992, 7.3651800000000005, 6.24998, 6.893660000000001, 6.53669, 6.43615, 7.04752, 6.30992, 6.39693, 5.59842, 6.1334, 6.58617, 6.765039999999999, 6.85646, 6.892639999999999, 6.95655, 5.99146, 6.43775, 6.90575, 6.81124, 6.966019999999999, 6.8865300000000005, 6.62007, 7.334980000000001, 6.72743, 6.93245, 7.27031, 7.03878, 6.901739999999999, 7.0255399999999995, 6.10925, 6.83518, 6.77992, 6.68461, 7.696210000000001, 6.53669, 6.52942, 6.126869999999999, 6.54965, 6.715380000000001, 7.31122, 5.8693, 6.90575, 6.0282800000000005, 6.30992, 6.23245, 6.31536, 7.486610000000001, 5.8579300000000005, 6.52942, 6.8426800000000005, 6.14204, 6.88755, 6.62007, 6.34564, 6.44413, 6.62007, 5.99146, 6.93245, 7.37776, 6.907760000000001, 5.99146, 7.18917, 6.7093, 6.75926, 6.3315, 6.5439099999999994, 6.1717, 7.9459100000000005, 6.77422, 7.424760000000001, 6.45362, 5.70378, 6.43775, 6.90575, 7.6009, 6.90575, 7.46737, 6.694560000000001, 6.907760000000001, 8.16052, 6.17379, 6.98008, 5.81711, 6.984719999999999, 6.44254, 6.802389999999999, 6.30079, 5.99146, 6.802389999999999, 7.32647, 6.745239999999999, 7.1309, 6.7901, 5.96101, 6.62007, 6.84055, 6.58617, 6.51471, 7.1309, 6.17379, 7.00307, 7.78322, 6.62007, 5.7525699999999995, 6.62407, 6.07993, 6.795710000000001, 7.212289999999999, 6.05209, 6.38856, 6.93925, 6.47697, 6.8773, 6.354369999999999, 7.9724699999999995, 6.11589, 7.64969, 6.703189999999999, 6.658010000000001, 6.47697, 6.50429, 6.58617, 5.74939, 6.893660000000001, 6.51471, 6.06611, 6.68461, 6.65544, 7.331060000000001, 6.64118, 6.33328, 6.47697, 7.475910000000001, 6.72743, 7.20786, 6.81124, 7.0201899999999995, 7.279319999999999, 8.02027, 6.80461, 5.99645, 7.10906, 6.40523, 6.77422, 7.01571, 6.54822, 6.14204, 6.57786, 6.47697, 6.386880000000001, 7.0255399999999995, 7.24423, 5.93225, 5.9269300000000005, 7.46737, 5.8141300000000005, 6.69084, 6.47697, 6.85646, 6.88755, 7.24423, 6.2634, 6.95655, 6.67077, 6.85646, 7.313219999999999, 5.86647, 6.98008, 6.75577, 6.01616, 6.566669999999999, 7.09008, 6.697030000000001, 5.78383, 6.79794, 6.2634, 6.61874, 6.64118, 7.1309, 6.98101, 6.90575, 5.90263, 6.17794, 6.77422, 6.96035, 6.6515699999999995, 6.35957, 6.829789999999999, 6.66568, 7.09008, 6.10925, 6.85646, 6.90575, 6.95655, 6.126869999999999, 7.1309, 6.4552, 6.58617, 7.23778, 6.278519999999999, 6.66568, 6.21261, 6.57925, 6.907760000000001, 6.30992, 6.802389999999999, 6.88755, 7.08171, 6.6567300000000005, 7.696210000000001, 6.68461, 6.10925, 6.785589999999999, 6.43775, 6.47697, 6.802389999999999, 7.04752, 6.6592899999999995, 5.4161, 6.48311, 6.408530000000001, 6.84055, 7.17778, 6.2634, 6.4892, 6.62007, 6.95177, 6.785589999999999, 7.033510000000001, 6.04025, 7.1107, 6.57647, 6.85646, 6.39693, 6.23637, 6.530880000000001, 6.36819, 6.43775, 6.90575, 6.30992, 6.85646, 6.62007, 6.04025, 6.79122, 6.30992, 6.62007, 5.76832, 6.81014, 6.551080000000001, 6.56526, 6.551080000000001, 7.09008, 6.86693, 6.9613, 6.7901, 6.95655, 6.65286, 5.9814099999999994, 6.43775, 6.28227, 5.940169999999999, 7.46737, 6.35957, 7.18007, 6.2146099999999995, 7.46737, 6.90575, 6.253830000000001, 6.52209, 6.1025599999999995, 7.37776, 6.90575, 5.99146, 7.46737, 6.1025599999999995, 5.99146, 6.18826, 6.4552, 6.59987, 6.15698, 7.346010000000001, 6.68461, 7.6009, 7.14913, 6.96885, 7.27031, 6.317159999999999, 6.72503, 5.8861, 5.99146, 6.62007, 6.6871100000000006, 7.17012, 6.802389999999999, 5.93754, 6.995769999999999, 6.802389999999999, 6.52356, 6.55251, 6.56526, 6.72383, 7.09008, 6.885510000000001, 6.68461, 6.52209, 7.313219999999999, 6.94698, 6.561030000000001, 6.907760000000001, 7.71869, 6.1717, 5.96615, 7.143619999999999, 6.41673, 6.907760000000001, 6.29157, 6.354369999999999, 7.00307, 6.802389999999999, 6.90375, 5.958419999999999, 6.1944099999999995, 7.09008, 6.90575, 6.47697, 7.26193, 5.98645, 6.60665, 6.424869999999999, 6.745239999999999, 5.8579300000000005, 7.37776, 6.13773, 6.882439999999999, 6.907760000000001, 6.858569999999999, 6.745239999999999, 7.495539999999999, 7.1546199999999995, 6.68461, 6.2804, 6.6592899999999995, 6.77422, 6.893660000000001, 6.86693, 7.408530000000001, 6.72743, 6.42972, 6.633319999999999, 7.0579, 6.68461, 7.185389999999999, 7.26543, 7.05099, 6.10925, 6.60123, 7.233460000000001, 6.90575, 6.77194, 6.715380000000001, 5.8861, 6.6567300000000005, 6.3243599999999995, 6.55393, 6.90575, 6.10925, 6.9613, 6.90575, 6.907760000000001, 6.90975, 7.64969, 7.1309, 6.745239999999999, 5.99146, 6.354369999999999, 5.4161, 6.55536, 6.02102, 6.7334, 6.47697, 6.47697, 6.53669, 6.95655, 6.551080000000001, 6.16331, 7.6009, 6.90575, 6.10925, 7.17242, 6.3421199999999995, 6.9196800000000005, 6.65286, 6.51471, 7.24423, 6.39693, 6.85646, 6.551080000000001, 6.86693, 6.35611, 6.90575, 5.65948, 6.34914, 7.696210000000001, 7.17012, 6.802389999999999, 5.940169999999999, 6.253830000000001, 6.90575, 6.48464, 6.49224, 6.82763, 6.90575, 6.26149, 7.014810000000001, 6.551080000000001, 6.2634, 7.04752, 6.90575, 7.20786, 7.02997, 7.803839999999999, 6.31355, 6.89467, 6.829789999999999, 7.17012, 7.54961, 7.28207, 6.69084, 7.1929300000000005, 6.33328, 5.84354, 6.85646, 6.29157, 6.912739999999999, 6.80017, 6.97635, 6.2653, 6.07535, 7.1309, 7.17012, 6.59715, 7.0884100000000005, 6.77992, 7.16627, 6.19644, 5.50126, 6.39693, 5.9814099999999994, 6.90575, 6.90575, 6.6958, 5.01728, 7.279319999999999, 7.136480000000001, 6.608, 6.68461, 7.9831, 6.77422, 6.9828600000000005, 6.30992, 6.2146099999999995, 7.09506, 6.44572, 6.2634, 6.90575, 6.90575, 7.08339, 5.96615, 6.9622399999999995, 5.82008, 7.11233, 6.912739999999999, 6.68461, 6.85646, 6.4708, 6.8254600000000005, 7.346010000000001, 6.68085, 7.24423, 6.8426800000000005, 6.62007, 6.1070199999999994, 6.33328, 6.15698, 6.15698, 6.893660000000001, 6.43775, 6.30262, 6.253830000000001, 7.30317, 6.829789999999999, 6.56808, 5.8999, 5.99146, 6.36303, 7.20786, 6.752269999999999, 6.95655, 6.02102, 6.633319999999999, 6.2634, 7.183110000000001, 6.33328, 6.907760000000001, 6.9707300000000005, 6.6174, 7.43838, 6.45047, 6.9707300000000005, 6.3952599999999995, 7.09008, 6.49979, 6.94986, 7.06902, 6.6567300000000005, 6.745239999999999, 6.68461, 7.22766, 6.68461, 6.93049, 7.1309, 6.975410000000001, 6.2672, 6.50279, 6.551080000000001, 6.59987, 6.7334, 6.16331, 6.2146099999999995, 6.95655, 6.694560000000001, 6.44572, 6.6783399999999995, 7.408530000000001, 7.09008, 6.849069999999999, 6.614730000000001, 6.72743, 6.17379, 7.03615, 6.05209, 6.6280399999999995, 6.83518, 7.09008, 6.1070199999999994, 6.63857, 6.17794, 6.551080000000001, 6.712960000000001, 6.30992, 7.07834, 6.39693, 6.57228, 7.346010000000001, 6.938280000000001, 6.715380000000001, 6.7511, 6.715380000000001, 6.58617, 5.59842, 6.3935900000000006, 7.26193, 6.49072, 6.829789999999999, 6.745239999999999, 6.721430000000001, 5.97635, 6.59715, 6.00389, 6.9828600000000005, 6.29157, 6.62007, 6.85646, 6.86901, 7.04752, 6.23441, 6.551080000000001, 6.63726, 6.14633, 6.0282800000000005, 6.563860000000001, 6.73102, 6.2634, 6.3243599999999995, 6.721430000000001, 6.6796, 7.062189999999999, 6.10925, 7.313219999999999, 6.34564, 6.561030000000001, 6.17379, 7.06987, 6.87626, 6.505780000000001, 6.745239999999999, 6.39859, 6.966019999999999, 6.4488900000000005, 7.1309, 6.68461, 6.575080000000001, 6.40192, 6.70073, 6.56808, 6.7334, 6.30992, 7.0775, 6.6796, 6.8384100000000005, 5.42935, 7.03615, 6.6592899999999995, 6.85751, 6.745239999999999, 7.313219999999999, 6.86693, 7.08171, 6.85646, 6.47697, 6.47697, 6.907760000000001, 6.28972, 7.46737, 7.2724, 6.61874, 6.30079, 7.0255399999999995, 6.27099, 6.90575, 6.34564, 6.47697, 6.9828600000000005, 7.450080000000001, 6.224559999999999, 6.551080000000001, 6.551080000000001, 6.551080000000001, 6.23441, 6.77422, 7.1309, 6.52209, 7.49332, 6.39192, 6.739339999999999, 7.4832399999999994, 6.16331, 6.68461, 6.90575, 6.715380000000001, 6.90575, 7.1309, 6.86171, 6.68461, 6.715380000000001, 5.70378, 6.551080000000001, 6.802389999999999, 6.33683, 6.9187, 7.0579, 6.35611, 7.02376, 6.45834, 5.8141300000000005, 5.4161, 5.5797300000000005, 6.90575, 6.82655, 6.90575, 5.9269300000000005, 7.42833, 5.87212, 6.463030000000001, 7.52833, 6.86797, 6.95655, 6.88755, 6.60665, 6.90575, 6.4677, 7.3651800000000005, 6.748760000000001, 6.77992, 6.975410000000001, 7.43838, 7.82405, 6.5439099999999994, 6.42162, 6.8844899999999996, 7.16085, 6.52209, 6.04025, 5.52146, 6.90575, 7.00307, 6.907760000000001, 6.23441, 6.463030000000001, 6.817830000000001, 7.279319999999999, 6.907760000000001, 7.54961, 7.323169999999999, 6.90575, 6.41017, 6.90575, 6.65286, 6.787839999999999, 6.62007, 7.0967199999999995, 5.9269300000000005, 6.55393, 7.0255399999999995, 6.17379, 7.00307, 7.31122, 6.39693, 7.31122, 6.31355, 5.8141300000000005, 6.44572, 6.59578, 6.47697, 7.226210000000001, 6.62007, 6.69332, 6.7511, 6.77422, 7.09008, 5.8579300000000005, 7.183110000000001, 7.728860000000001, 6.54965, 7.04752, 7.25488, 6.9256, 6.907760000000001, 6.3952599999999995, 5.65249, 7.041410000000001, 6.4599, 6.96035, 7.1333, 6.99942, 6.38012, 7.200419999999999, 6.06379, 5.42053, 7.18007, 7.1309, 6.461469999999999, 6.85646, 7.17012, 7.03527, 6.19848, 6.62007, 7.313219999999999, 5.8861, 6.52209, 5.8861, 7.20786, 6.907760000000001, 6.90575, 6.05209, 7.1452, 6.02102, 5.82895, 6.33683, 6.04025, 6.2146099999999995, 7.8935699999999995, 6.34564, 6.64249, 6.8977, 6.3699, 6.6567300000000005, 6.813439999999999, 6.53669, 6.90575, 6.05209, 6.47697, 6.05209, 7.21524, 6.551080000000001, 6.66568, 6.57925, 6.2146099999999995, 6.8426800000000005, 6.907760000000001, 6.90575, 7.106610000000001, 5.52146, 6.424869999999999, 6.65415, 6.86693, 6.745239999999999, 6.88346, 6.53669, 6.3207699999999996, 7.696210000000001, 7.64779, 7.313219999999999, 6.95655, 5.95584, 6.715380000000001, 6.44254, 6.8966899999999995, 6.61338, 6.8426800000000005, 6.23245, 6.95655, 6.768489999999999, 5.52146, 7.3981699999999995, 6.06379, 6.2205900000000005, 6.68461, 7.12287, 6.813439999999999, 6.752269999999999, 6.551080000000001, 6.86066, 6.7334, 6.318969999999999, 6.79122, 6.0822199999999995, 5.95324, 6.745239999999999, 7.1309, 6.54103, 7.06048, 6.24222, 6.68461, 6.9177100000000005, 6.05209, 7.04752, 6.78672, 7.09008, 7.1309, 6.47697, 7.1025, 5.9814099999999994, 7.24423, 6.44254, 7.451239999999999, 7.198180000000001, 7.27101, 7.245660000000001, 6.51471, 7.279319999999999, 6.85646, 7.279319999999999, 6.3952599999999995, 7.67322, 6.76273, 6.82437, 6.47697, 6.885510000000001, 7.07918, 7.279319999999999, 7.1309, 6.966019999999999, 6.73102, 6.70073, 6.633319999999999, 6.07993, 6.46925, 7.00307, 5.940169999999999, 7.6009, 6.22654, 6.907760000000001, 6.32615, 6.508769999999999, 6.551080000000001, 7.0884100000000005, 6.39693, 6.829789999999999, 7.31986, 6.21661, 7.11802, 6.77422, 7.26193, 6.90575, 7.17012, 7.00307, 5.99146, 7.46737, 6.57786, 6.3081, 6.90575, 6.58755, 6.8254600000000005, 6.311730000000001, 6.39693, 6.95655, 6.62007, 6.3952599999999995, 7.04752, 6.48311, 6.50429, 6.39693, 6.90575, 6.60665, 6.90575, 6.318969999999999, 6.802389999999999, 6.70441, 6.51471, 6.77992, 5.99146, 6.68461, 6.29157, 6.62007, 6.40523, 6.18826, 7.24423, 6.83518, 7.09008, 7.84502, 6.62007, 7.1624, 6.813439999999999, 6.907760000000001, 6.68461, 6.14633, 7.17012, 6.53814, 6.2146099999999995, 6.882439999999999, 6.36647, 6.47697, 7.54697, 6.60665, 6.29895, 6.68461, 7.408530000000001, 7.2724, 6.46614, 6.90575, 6.95655, 5.8579300000000005, 6.745239999999999, 5.7462, 6.36303, 7.20786, 7.04752, 7.04316, 6.551080000000001, 6.58064, 6.17379, 6.83195, 6.8533, 5.70378, 7.20786, 6.62007, 6.95655, 5.93225, 6.90575, 6.34564, 7.09008, 7.014810000000001, 6.73815, 6.65028, 7.03878, 6.10032, 7.266830000000001, 6.95655, 6.58617, 6.49072, 7.20786, 6.68461, 6.602589999999999, 5.78383, 6.551080000000001, 6.87626, 5.16479, 7.54961, 6.551080000000001, 6.84055, 6.49224, 6.58893, 5.2983199999999995, 6.60665, 6.907760000000001, 7.64969, 6.9177100000000005, 6.35957, 6.18415, 6.68461, 7.43838, 6.66441, 6.551080000000001, 5.99146, 5.82008, 6.41182, 6.43775, 6.10925, 6.43775, 6.4599, 6.04025, 7.00307, 5.99146, 6.852239999999999, 6.51175, 6.5439099999999994, 6.6515699999999995, 7.522939999999999, 6.16331, 6.551080000000001, 6.907760000000001, 7.04752, 6.44572, 6.3243599999999995, 6.41346, 6.551080000000001, 6.802389999999999, 6.62007, 6.5439099999999994, 6.57925, 6.38012, 6.4151, 6.52209, 6.29157, 6.39693, 6.59715, 5.01064, 6.2146099999999995, 6.97167, 6.75926, 6.73102, 6.66823, 7.37776, 6.77422, 7.1309, 6.90575, 6.10925, 7.408530000000001, 6.30992, 6.39693, 6.04025, 7.0396600000000005, 7.09589, 7.10003, 6.73102, 6.87523, 6.90575, 7.20786, 7.173960000000001, 6.90575, 6.47389, 6.99026, 7.0884100000000005, 6.206580000000001, 5.5606800000000005, 6.56526, 6.44572, 6.802389999999999, 6.551080000000001, 6.53379, 6.90575, 6.46614, 6.61338, 6.90575, 6.85646, 6.47389, 6.10925, 6.99118, 6.2441699999999996, 7.1592899999999995, 6.697030000000001, 6.90575, 6.59987, 7.01571, 6.42162, 6.716589999999999, 6.85646, 7.46737, 6.58617, 6.95655, 6.29157, 6.907760000000001, 6.8426800000000005, 6.46459, 6.62007, 6.95177, 6.58617, 6.50129, 6.2952699999999995, 6.85646, 6.15698, 6.90575, 7.6009, 6.30992, 7.00307, 6.17379, 6.15273, 7.01392, 6.62007, 7.346010000000001, 6.90575, 6.68461, 6.50429, 7.24423, 7.0942300000000005, 5.78383, 6.54535, 6.3716099999999996, 7.86327, 6.62007, 7.09008, 6.703189999999999, 6.354369999999999, 6.53233, 6.58617, 6.602589999999999, 7.46737, 6.9622399999999995, 6.424869999999999, 6.39693, 6.38012, 6.802389999999999, 6.43935, 6.259580000000001, 7.044910000000001, 6.42162, 6.90575, 6.802389999999999, 6.44413, 7.127689999999999, 6.45677, 6.40192, 6.55393, 6.593039999999999, 7.06902, 6.59987, 6.802389999999999, 6.715380000000001, 6.715380000000001, 6.39693, 6.57786, 6.68461, 7.00307, 6.42972, 6.85435, 6.58893, 6.937310000000001, 6.2106, 6.708080000000001, 6.0845, 6.907760000000001, 6.16331, 6.43775, 6.2146099999999995, 6.2441699999999996, 6.2634, 6.74406, 6.85646, 6.73221, 5.72031, 5.97635, 6.13123, 7.54961, 6.37673, 6.90575, 6.62007, 6.768489999999999, 6.63595, 5.82895, 6.90575, 6.75577, 6.04025, 6.77194, 6.77422, 6.99485, 6.58617, 5.8999, 6.2146099999999995, 6.2146099999999995, 6.6567300000000005, 6.62007, 6.9489, 7.354360000000001, 7.279319999999999, 5.8861, 6.6592899999999995, 7.06305, 6.61338, 7.00307, 6.49224, 6.07993, 6.84588, 6.35611, 6.35611, 6.8977, 6.551080000000001, 7.20786, 6.90575, 7.59287, 6.17587, 7.1309, 7.393260000000001, 6.95655, 6.834110000000001, 6.07993, 7.10988, 6.802389999999999, 6.224559999999999, 6.57925, 6.927560000000001, 6.90575, 7.09008, 7.1309, 6.90575, 6.907760000000001, 5.8693, 6.16542, 6.62007, 7.6009, 6.963189999999999, 6.95655, 6.90575, 6.43775, 6.90575, 6.796819999999999, 6.66568, 6.73459, 6.907760000000001, 6.8533, 6.813439999999999, 7.196689999999999, 6.43615, 6.9147300000000005, 6.551080000000001, 6.77194, 6.90575, 6.90575, 6.66823, 6.47697, 7.0255399999999995, 7.522939999999999, 6.62007, 6.354369999999999, 7.1546199999999995, 6.90575, 6.551080000000001, 5.78383, 6.753439999999999, 6.77422, 7.313219999999999, 6.967910000000001, 6.816739999999999, 7.6009, 6.745239999999999, 6.51471, 7.37588, 6.86485, 6.41346, 6.7093, 6.551080000000001, 6.22654, 7.24423, 5.70378, 6.06146, 6.16331, 7.05359, 6.49224, 6.86171, 6.58617, 7.1309, 6.77422, 7.93737, 6.39693, 6.58617, 7.67322, 6.551080000000001, 6.2146099999999995, 6.77422, 6.2634, 6.99485, 6.45047, 6.66185, 6.94119, 6.90575, 7.21891, 7.57558, 7.495539999999999, 6.29157, 6.10925, 6.59715, 7.09008, 6.03787, 6.556780000000001, 6.2146099999999995, 6.354369999999999, 7.6009, 6.83303, 6.63068, 6.551080000000001, 7.279319999999999, 6.354369999999999, 7.925160000000001, 6.77422, 7.183110000000001, 6.1136800000000004, 6.77992, 6.62007, 7.00307, 7.86327, 6.70073, 6.795710000000001, 7.1309, 6.32794, 6.16121, 5.6801699999999995, 6.65286, 6.802389999999999, 6.715380000000001, 6.95655, 6.78333, 6.90575, 6.67582, 6.47697, 6.907760000000001, 6.90575, 6.682110000000001, 6.19236, 6.53233, 6.882439999999999, 7.0255399999999995, 6.23048, 6.715380000000001, 7.872839999999999, 6.49072, 6.90575, 6.4892, 6.63726, 6.12249, 6.3613, 6.79122, 6.53233, 6.05209, 6.907760000000001, 6.697030000000001, 6.8742, 6.08677, 6.6280399999999995, 6.907760000000001, 6.05209, 5.70378, 5.68698, 7.02997, 6.715380000000001, 6.2146099999999995, 6.90575, 7.313219999999999, 6.3699, 6.12249, 6.14847, 6.07074, 6.77992, 6.54822, 6.62007, 6.59987, 6.62007, 6.8966899999999995, 6.802389999999999, 6.7226300000000005, 6.07993, 6.51026, 6.907760000000001, 6.50429, 6.47697, 6.58617, 5.88053, 6.77422, 6.8977, 5.9135, 6.17379, 8.047189999999999, 6.93537, 6.2146099999999995, 6.507280000000001, 7.46737, 5.82895, 7.034389999999999, 6.7569300000000005, 7.2998, 6.95655, 6.17794, 6.68461, 7.495539999999999, 6.62007, 6.88755, 6.45205, 6.802389999999999, 6.32794, 6.10925, 6.68461, 8.03916, 6.829789999999999, 6.6745600000000005, 6.714169999999999, 6.43775, 5.4161, 7.00307, 6.43455, 6.90575, 7.346660000000001, 6.9256, 7.6009, 7.10988, 7.24423, 6.7569300000000005, 6.48004, 6.38856, 6.889589999999999, 7.313219999999999, 6.9256, 6.59167, 6.57786, 6.53669, 6.39693, 6.33328, 6.33328, 7.313219999999999, 6.551080000000001, 7.408530000000001, 6.802389999999999, 7.3908, 6.90575, 5.86079, 6.9256, 6.95655, 6.13123, 5.99894, 6.551080000000001, 7.06561, 6.57925, 6.90575, 6.73102, 7.09008, 6.566669999999999, 6.9966800000000005, 6.43775, 6.62007, 6.68461, 6.424869999999999, 6.646389999999999, 5.39363, 5.96615, 6.2146099999999995, 6.802389999999999, 6.90575, 6.9613, 5.70378, 6.78672, 6.65286, 7.24423, 7.09008, 6.602589999999999, 6.42162, 7.0422899999999995, 7.034389999999999, 6.52209, 6.59987, 6.44572, 6.20456, 6.57925, 6.38012, 6.16331, 5.96615, 7.43838, 6.818919999999999, 6.551080000000001, 6.53669, 6.95655, 5.76832, 7.2100800000000005, 6.48311, 6.507280000000001, 6.45362, 6.765039999999999, 6.2634, 6.2691, 7.18917, 5.9135, 6.6896, 6.2146099999999995, 6.802389999999999, 6.50129, 6.2634, 7.38647, 6.96885, 6.10925, 7.196689999999999, 6.3403599999999996, 6.14419, 6.818919999999999, 6.72623, 6.90575, 7.04752, 6.7569300000000005, 6.62936, 7.09008, 6.692080000000001, 6.62007, 5.9839400000000005, 6.013719999999999, 6.95655, 7.49332, 6.62007, 6.31355, 6.62007, 6.753439999999999, 6.77422, 6.2653, 7.495539999999999, 6.7334, 6.95655, 6.56526, 6.88755, 7.47307, 6.224559999999999, 6.47697, 6.90575, 6.90575, 7.909860000000001, 6.69084, 6.3716099999999996, 6.52209, 6.07304, 7.106610000000001, 6.2146099999999995, 6.40523, 6.69084, 5.627619999999999, 6.802389999999999, 6.6567300000000005, 6.68461, 6.697030000000001, 6.22654, 7.740660000000001, 5.95324, 6.907760000000001, 6.43775, 6.43775, 6.813439999999999, 5.76832, 6.9256, 7.64969, 6.47697, 6.43615, 5.8579300000000005, 6.10925, 7.1309, 5.89715, 6.907760000000001, 6.745239999999999, 6.33683, 6.43775, 6.85646, 6.77422, 6.768489999999999, 5.97889, 6.2146099999999995, 7.029089999999999, 6.62007, 7.06133, 7.24423, 6.95177, 7.54961, 6.354369999999999, 6.87626, 6.318969999999999, 6.570880000000001, 6.34388, 6.62007, 7.61332, 7.09008, 6.7511, 6.8977, 6.551080000000001, 7.40914, 7.034389999999999, 7.18917, 6.49072, 6.30992, 5.70378, 6.55393, 6.1070199999999994, 6.72743, 6.05209, 7.0967199999999995, 6.30992, 6.90575, 6.551080000000001, 6.907760000000001, 6.785589999999999, 6.39693, 6.05209, 6.90575, 6.36819, 6.697030000000001, 6.814539999999999, 6.639880000000001, 6.23637, 6.62007, 7.24423, 6.77194, 6.551080000000001, 6.802389999999999, 5.8999, 5.52146, 6.57228, 7.062189999999999, 6.47697, 6.2441699999999996, 6.829789999999999, 6.95655, 6.47697, 6.907760000000001, 6.38012, 7.293019999999999, 6.91175, 6.68461, 6.45834, 6.556780000000001, 6.5582, 6.91175, 6.45362, 7.1309, 6.36303, 6.8773, 6.955589999999999, 7.80588, 6.9613, 5.4161, 6.907760000000001, 6.90575, 7.18992, 7.507689999999999, 6.90575, 6.385190000000001, 6.748760000000001, 7.31122, 6.6107, 6.807930000000001, 6.79794, 6.1717, 6.16331, 6.6592899999999995, 7.0483899999999995, 6.598510000000001, 5.5797300000000005, 6.633319999999999, 7.6009, 6.09131, 7.106610000000001, 6.90575, 6.04025, 7.66153, 7.22548, 6.48768, 6.87213, 7.17012, 6.23245, 6.39693, 6.4677, 7.35244, 7.183110000000001, 6.56948, 8.00637, 7.05272, 6.33328, 6.90575, 6.802389999999999, 6.30992, 6.551080000000001, 6.10925, 6.77422, 6.30992, 7.522939999999999, 6.49979, 6.802389999999999, 5.7525699999999995, 7.05704, 7.16858, 6.802389999999999, 6.58617, 6.551080000000001, 7.20564, 6.551080000000001, 6.47697, 6.0330900000000005, 7.1507, 6.852239999999999, 7.6009, 6.70564, 5.7525699999999995, 6.90575, 6.802389999999999, 6.11147, 6.95655, 6.84375, 6.95655, 6.8977, 7.34923, 6.93245, 6.34564, 6.79122, 7.03878, 5.8861, 7.400010000000001, 5.8579300000000005, 7.37588, 6.83195, 7.00307, 6.84162, 6.354369999999999, 6.93342, 6.608, 6.85646, 6.61607, 5.82305, 6.056780000000001, 6.90575, 6.697030000000001, 6.5395900000000005, 6.6120399999999995, 6.63726, 7.1309, 6.739339999999999, 7.86327, 6.55393, 6.47697, 6.7511, 6.907760000000001, 6.05912, 6.54535, 6.551080000000001, 7.00307, 6.51471, 7.0422899999999995, 6.57925, 6.66823, 7.71869, 5.52146, 7.1309, 6.551080000000001, 6.44572, 7.00307, 5.39363, 6.253830000000001, 7.401839999999999, 5.99146, 7.2724, 6.907760000000001, 6.90575, 6.3315, 6.3699, 6.39693, 5.43808, 7.82405, 6.95655, 6.09582, 5.95324, 6.07535, 5.8999, 6.90575, 6.8426800000000005, 7.0518600000000005, 6.993930000000001, 6.907760000000001, 6.79122, 6.7511, 6.2146099999999995, 6.78897, 6.67203, 7.259119999999999, 7.6811, 6.745239999999999, 7.27031, 6.721430000000001, 6.2146099999999995, 6.2804, 6.90575, 6.563860000000001, 6.99485, 7.37776, 7.06048, 7.6009, 6.30992, 6.84375, 7.0282, 6.66696, 6.90575, 6.47235, 6.56244, 8.0229, 6.90575, 6.6592899999999995, 6.80351, 6.92658, 6.4892, 6.39693, 6.28227, 7.06902, 6.08677, 5.958419999999999, 7.1309, 5.68698, 6.62007, 6.33683, 6.984719999999999, 5.89715, 6.06611, 6.753439999999999, 6.354369999999999, 6.52209, 6.52209, 7.362010000000001, 6.8200199999999995, 6.73102, 6.39693, 6.8773, 6.2146099999999995, 6.507280000000001, 7.313219999999999, 6.81014, 6.802389999999999, 6.49072, 6.0845, 7.46737, 6.82437, 5.48064, 6.745239999999999, 6.11147, 6.2634, 7.181589999999999, 6.551080000000001, 7.05618, 6.29157, 7.2998, 5.86079, 6.51619, 6.56948, 6.937310000000001, 5.83188, 6.9256, 6.90575, 6.10925, 6.39693, 7.09008, 6.82437, 6.3952599999999995, 6.753439999999999, 6.966019999999999, 6.802389999999999, 7.239210000000001, 6.5582, 6.907760000000001, 6.98008, 6.62407, 5.70378, 6.551080000000001, 6.41673, 7.313219999999999, 6.62007, 6.84588, 6.95655, 6.42162, 6.68461, 6.715380000000001, 6.85646, 6.57786, 5.8579300000000005, 6.2146099999999995, 7.313219999999999, 7.37776, 6.07993, 6.30992, 7.1309, 6.69084, 6.70564, 6.27099, 5.7462, 6.16752, 7.279319999999999, 6.73102, 6.53669, 6.24222, 7.03527, 7.04752, 6.507280000000001, 6.93049, 6.59715, 7.09008, 6.45047, 6.33328, 6.68461, 6.62007, 6.6592899999999995, 6.90575, 7.04752, 6.30992, 6.58617, 7.43838, 6.6346300000000005, 6.59167, 6.1181, 6.41836, 7.2724, 6.56526, 6.90575, 7.91936, 6.54103, 6.90575, 7.57558, 6.2146099999999995, 6.20456, 6.802389999999999, 6.899719999999999, 7.484369999999999, 6.90575, 6.51471, 5.7462, 6.39693, 6.94698, 7.084230000000001, 6.96885, 6.907760000000001, 7.00307, 7.293019999999999, 7.173189999999999, 6.77422, 6.815639999999999, 6.43294, 6.813439999999999, 6.90575, 6.88857, 6.90575, 7.09008, 6.90575, 7.226210000000001, 5.76832, 5.70378, 7.279319999999999, 6.73102, 6.05912, 6.68461, 6.6592899999999995, 7.91936, 6.507280000000001, 6.035480000000001, 7.00307, 6.47697, 6.551080000000001, 6.206580000000001, 6.90575, 6.2146099999999995, 6.907760000000001, 6.715380000000001, 6.96885, 6.68461, 6.57368, 6.745239999999999, 6.39859, 6.53669, 5.76832, 6.2146099999999995, 6.8426800000000005, 7.520230000000001, 5.5797300000000005, 6.51323, 7.1082399999999994, 6.551080000000001, 6.5582, 7.17012, 6.768489999999999, 6.39693, 7.393260000000001, 6.6958, 6.39693, 6.95177, 6.2146099999999995, 7.09008, 6.5582, 7.09008, 6.9613, 6.4892, 7.676010000000001, 6.715380000000001, 5.70378, 6.907760000000001, 6.3935900000000006, 7.54961, 6.86171, 6.43775, 5.79606, 6.83087, 6.6783399999999995, 6.54535, 6.02345, 6.593039999999999, 5.9269300000000005, 6.77422, 6.44572, 7.04752, 6.3716099999999996, 6.72743, 7.37776, 7.17012, 6.8426800000000005, 7.00307, 6.126869999999999, 6.50129, 6.8773, 6.56526, 6.354369999999999, 6.96885, 6.575080000000001, 6.62007, 6.42811, 6.752269999999999, 6.90575, 6.78672, 7.1309, 8.12089, 6.829789999999999, 7.00307, 6.2146099999999995, 6.1944099999999995, 7.740660000000001, 6.551080000000001, 6.907760000000001, 6.2146099999999995, 6.96979, 6.68461, 7.14283, 6.2634, 6.139880000000001, 7.1293, 6.89467, 5.43808, 6.646389999999999, 6.621410000000001, 5.5797300000000005, 7.183110000000001, 6.07993, 6.5467900000000006, 6.34388, 6.39024, 7.0255399999999995, 6.424869999999999, 6.68461, 6.49979, 7.37776, 6.7901, 6.17379, 6.4488900000000005, 6.614730000000001, 6.802389999999999, 6.60665, 7.09008, 6.51323, 6.93245, 6.6592899999999995, 6.30992, 6.30992, 6.7226300000000005, 7.37776, 6.09807, 6.8977, 6.35784, 6.37502, 6.57925, 7.7021, 7.46737, 7.6009, 7.36455, 5.4161, 6.59715, 6.639880000000001, 6.36303, 5.82895, 6.59715, 6.62007, 6.551080000000001, 7.09008, 6.47697, 6.78333, 6.563860000000001, 7.0076, 6.880380000000001, 6.745239999999999, 5.50126, 6.82437, 6.4677, 7.127689999999999, 7.1309, 6.62007, 7.82084, 7.288930000000001, 6.72743, 6.583410000000001, 6.39693, 6.68461, 7.10988, 6.563860000000001, 6.354369999999999, 6.7546, 7.196689999999999, 6.44731, 5.99146, 6.74052, 7.24423, 6.67203, 6.86485, 7.1309, 7.6009, 6.6107, 7.24423, 6.9256, 7.11314, 6.86693, 5.82895, 6.85118, 6.58617, 6.85646, 5.70378, 6.2146099999999995, 6.92363, 5.67675, 6.84588, 6.86171, 6.813439999999999, 6.62936, 6.50279, 5.7589, 6.7417, 7.18917, 6.2146099999999995, 6.93245, 6.78897, 6.74759, 7.00307, 6.2146099999999995, 6.3935900000000006, 7.09008, 7.84385, 6.73815, 6.802389999999999, 6.57647, 6.78672, 6.39693, 6.9707300000000005, 8.3082, 7.1309, 7.17012, 6.593039999999999, 6.90575, 6.62007, 6.86693, 6.259580000000001, 6.41999, 6.90575, 5.52146, 6.907760000000001, 7.43838, 6.64509, 7.09008, 6.39693, 7.0255399999999995, 6.802389999999999, 6.77422, 7.903969999999999, 6.1944099999999995, 6.745239999999999, 6.80461, 7.037030000000001, 7.04752, 6.08904, 6.47697, 6.65286, 6.76388, 6.90575, 6.70073, 6.802389999999999, 6.87626, 6.90575, 7.1507, 7.07834, 7.21082, 6.52942, 6.701960000000001, 6.8426800000000005, 6.0282800000000005, 6.3207699999999996, 6.69827, 6.24611, 6.57786, 6.18826, 6.975410000000001, 7.16085, 6.30992, 6.593039999999999, 6.83303, 7.61874, 6.48158, 5.99146, 6.44095, 6.99485, 6.85646, 6.907760000000001, 6.8384100000000005, 6.79122, 5.01064, 6.551080000000001, 6.6695, 7.279319999999999, 6.57925, 6.813439999999999, 6.30992, 6.68461, 6.47389, 6.802389999999999, 6.785589999999999, 6.45362, 7.313219999999999, 6.551080000000001, 6.745239999999999, 7.29097, 5.8861, 6.98008, 6.802389999999999, 7.20786, 6.802389999999999, 6.983789999999999, 6.75926, 6.68461, 6.55962, 6.8977, 6.05912, 6.90575, 7.4570300000000005, 7.1309, 6.85646, 6.566669999999999, 6.829789999999999, 6.85646, 6.79347, 6.643789999999999, 6.77422, 7.90101, 6.32794, 6.25767, 7.81883, 6.966019999999999, 6.33328, 6.2146099999999995, 6.77422, 5.65249, 6.8384100000000005, 6.62007, 6.813439999999999, 6.551080000000001, 6.920669999999999, 7.195189999999999, 6.62007, 6.745239999999999, 6.3315, 6.69332, 6.745239999999999, 6.90575, 7.0396600000000005, 6.90575, 5.8260000000000005, 6.07535, 6.30992, 6.96885, 6.47697, 6.39693, 7.24423, 7.12367, 7.17012, 6.60394, 6.18415, 6.68461, 6.44413, 6.4677, 6.72623, 6.2146099999999995, 6.47697, 6.907760000000001, 6.4552, 7.1546199999999995, 6.39693, 7.37776, 7.18917, 6.10925, 6.5903, 7.136480000000001, 5.95584, 7.03878, 6.461469999999999, 6.697030000000001, 5.9839400000000005, 6.66568, 6.2146099999999995, 6.56526, 6.51471, 5.61677, 6.49375, 7.06048, 6.715380000000001, 6.10925, 6.95655, 7.1309, 6.95655, 6.90575, 6.76273, 6.311730000000001, 7.1507, 6.317159999999999, 7.00307, 6.29157, 6.86693, 6.68461, 6.90575, 6.95655, 7.17012, 7.0255399999999995, 6.86171, 7.495539999999999, 6.49224, 6.90575, 6.8865300000000005, 7.57353, 6.602589999999999, 6.35611, 6.85646, 5.8579300000000005, 6.30992, 6.23048, 6.5467900000000006, 6.530880000000001, 6.802389999999999, 7.6009, 6.55962, 6.46459, 6.834110000000001, 7.313219999999999, 6.802389999999999, 6.7334, 6.18415, 6.66441, 6.05209, 7.251339999999999, 5.87774, 6.802389999999999, 7.43838, 6.35957, 6.43775, 6.5820300000000005, 6.768489999999999, 7.17012, 6.68461, 5.6733199999999995, 6.90575, 7.281389999999999, 7.17702, 6.90575, 6.95845, 6.44572, 5.84354, 6.583410000000001, 6.91672, 6.46925, 6.90575, 8.229510000000001, 7.027310000000001, 6.551080000000001, 6.84055, 7.136480000000001, 6.71174, 6.787839999999999, 6.74288, 7.0934, 7.200419999999999, 6.83087, 7.37776, 6.79122, 6.67203, 6.55393, 6.39693, 7.46737, 6.802389999999999, 7.165489999999999, 6.62007, 6.90575, 7.0255399999999995, 7.70661, 6.47389, 6.35957, 6.07535, 6.907760000000001, 5.99894, 7.1107, 6.593039999999999, 6.30992, 7.20786, 6.43775, 6.556780000000001, 6.83518, 6.77878, 6.966019999999999, 6.95273, 6.3716099999999996, 6.745239999999999, 6.43133, 6.907760000000001, 6.68461, 6.64898, 6.28972, 7.00307, 6.2146099999999995, 6.66058, 6.967910000000001, 7.016610000000001, 6.68461, 7.09008, 6.85646, 6.77765, 6.90575, 5.66988, 7.09008, 6.53379, 6.84801, 6.90575, 5.99146, 7.21891, 6.30992, 5.8999, 6.90575, 6.745239999999999, 7.07242, 7.6009, 5.8861, 6.817830000000001, 6.23637, 7.346010000000001, 6.6592899999999995, 7.46737, 6.975410000000001, 6.79122, 6.719010000000001, 6.720219999999999, 6.90575, 6.90575, 6.68336, 6.892639999999999, 6.86485, 6.947939999999999, 6.955589999999999, 7.216710000000001, 6.90575, 6.65286, 5.78383, 6.551080000000001, 5.66988, 7.0255399999999995, 7.04752, 6.3935900000000006, 6.807930000000001, 6.74288, 6.802389999999999, 6.4599, 6.354369999999999, 6.2146099999999995, 6.18208, 7.398789999999999, 7.37776, 7.35883, 6.47697, 7.18463, 6.745239999999999, 7.05876, 6.694560000000001, 6.84588, 6.68461, 7.64969, 6.59578, 7.027310000000001, 6.715380000000001, 6.04025, 5.84644, 6.2146099999999995, 6.88857, 6.507280000000001, 6.23441, 7.098380000000001, 6.2804, 7.6256, 6.633319999999999, 6.6346300000000005, 7.195189999999999, 5.76205, 5.68698, 6.43455, 6.52649, 6.49527, 6.51915, 7.54961, 6.1203, 7.09008, 7.00307, 5.7365699999999995, 6.36475, 5.7462, 6.77422, 6.10925, 6.73459, 7.1293, 6.49224, 5.7365699999999995, 6.28413, 7.17012, 6.2146099999999995, 6.90575, 6.6515699999999995, 6.56948, 6.80461, 6.03787, 5.47227, 7.313219999999999, 6.11589, 6.68461, 6.2146099999999995, 6.72743, 7.09008, 5.96615, 8.26873, 6.17794, 6.3935900000000006, 7.12287, 7.04752, 6.43775, 5.95324, 6.6796, 6.758089999999999, 6.68461, 6.30992, 5.70378, 6.90575, 7.495539999999999, 6.84588, 6.745239999999999, 6.21261, 7.251339999999999, 6.10032, 8.048789999999999, 7.313219999999999, 6.802389999999999, 6.745239999999999, 7.17012, 6.907760000000001, 6.90575, 6.551080000000001, 5.82305, 6.90575, 7.17012, 5.7365699999999995, 6.2441699999999996, 5.64191, 8.08641, 5.59842, 7.08171, 6.9594, 6.97354, 6.21261, 7.30653, 6.55962, 6.58617, 6.74406, 7.56008, 6.1944099999999995, 7.408530000000001, 6.61338, 6.01616, 6.32794, 7.18007, 6.74052, 6.47697, 6.95655, 6.95655, 6.58617, 5.61313, 6.66568, 6.85646, 6.44572, 7.313219999999999, 7.1309, 6.62672, 5.99146, 6.18826, 5.59842, 6.23441, 6.49224, 6.821110000000001, 6.56526, 6.47697, 6.813439999999999, 7.43838, 7.2717, 5.7462, 6.056780000000001, 6.30262, 6.38351, 6.551080000000001, 5.8944, 5.45959, 6.43775, 6.90575, 6.53233, 5.84932, 6.61874, 6.06843, 6.1203, 6.06843, 7.88231, 6.90575, 6.7569300000000005, 5.7651900000000005, 6.938280000000001, 7.08255, 6.41346, 5.53339, 6.882439999999999, 7.37776, 6.44413, 6.90575, 6.51471, 7.2998, 6.5439099999999994, 6.551080000000001, 6.49375, 6.90575, 7.35372, 7.135689999999999, 7.46737, 5.7365699999999995, 6.63595, 6.802389999999999, 7.346010000000001, 5.76832, 6.90575, 6.86693, 7.1309, 5.78383, 6.829789999999999, 6.65286, 6.7334, 5.5797300000000005, 7.2998, 6.65415, 6.9256, 6.90575, 6.39693, 6.52209, 6.3699, 6.770789999999999, 6.39693, 6.49072, 6.02345, 7.32251, 6.13123, 6.29711, 7.04752, 6.799060000000001, 6.272880000000001, 6.23832, 5.79606, 6.354369999999999, 6.49527, 6.57925, 6.697030000000001, 5.52146, 6.703189999999999, 7.04752, 6.65286, 6.752269999999999, 6.2146099999999995, 6.42162, 6.90575, 7.014810000000001, 6.62007, 6.85646, 6.745239999999999, 6.9256, 6.58617, 6.51471, 5.96615, 6.90575, 6.52942, 6.19644, 6.16331, 6.56526, 6.813439999999999, 7.09008, 6.19236, 5.8141300000000005, 6.49979, 6.769639999999999, 6.08677, 6.6253899999999994, 6.7369699999999995, 7.064760000000001, 6.01616, 7.11883, 6.48158, 6.51175, 5.7525699999999995, 7.46737, 6.57228, 6.551080000000001, 7.67322, 6.35957, 6.907760000000001, 6.58617, 5.8579300000000005, 7.1309, 6.57925, 6.14633, 6.43294, 6.39693, 7.46737, 6.95655, 6.54247, 6.3716099999999996, 7.293019999999999, 6.08677, 7.64969, 6.95655, 8.13153, 6.3613, 6.10925, 6.551080000000001, 6.907760000000001, 6.97261, 6.907760000000001, 6.43775, 6.3243599999999995, 6.83518, 6.993930000000001, 6.6567300000000005, 6.712960000000001, 6.984719999999999, 7.062189999999999, 6.907760000000001, 6.77992, 7.195189999999999, 7.185389999999999, 6.16331, 6.07993, 6.01616, 6.72743, 6.33683, 6.70073, 7.20786, 7.0103100000000005, 6.3716099999999996, 6.551080000000001, 7.1309, 6.7334, 7.495539999999999, 6.24028, 6.354369999999999, 6.90575, 6.551080000000001, 7.00307, 6.85013, 7.0255399999999995, 6.39693, 7.495539999999999, 6.768489999999999, 6.23441, 6.461469999999999, 6.5395900000000005, 6.907760000000001, 6.62007, 6.05209, 6.28413, 6.126869999999999, 7.12287, 6.745239999999999, 6.30992, 7.21744, 6.39693, 6.49072, 6.47697, 6.05209, 6.47697, 7.24423, 6.802389999999999, 7.09008, 6.44572, 7.00307, 6.62007, 6.966019999999999, 6.721430000000001, 6.62936, 6.813439999999999, 6.551080000000001, 6.28227, 7.64969, 6.9575, 7.3696, 6.461469999999999, 6.18002, 6.90575, 7.20786, 6.78333, 6.57647, 6.5903, 7.00307, 6.74993, 6.57925, 6.907760000000001, 7.18917, 6.16331, 6.59578, 6.802389999999999, 6.272880000000001, 7.014810000000001, 6.745239999999999, 6.2146099999999995, 6.43615, 6.64509, 6.608, 6.68461, 6.58617, 6.62007, 6.19032, 7.00307, 5.96358, 6.95655, 6.12249, 6.62007, 7.313219999999999, 6.39693, 7.09008, 6.83303, 6.98101, 6.6871100000000006, 7.09008, 6.81014, 7.37776, 6.51767, 6.85435, 6.14204, 7.64969, 7.91936, 6.907760000000001, 6.9256, 6.6733, 7.5574699999999995, 6.13773, 6.67203, 6.30992, 6.47697, 6.8956800000000005, 6.56948, 6.33328, 6.802389999999999, 6.9707300000000005, 8.00637, 6.65286, 6.57368, 5.5797300000000005, 5.70711, 6.57786, 6.92363, 6.57368, 7.37776, 6.2146099999999995, 7.408530000000001, 7.1155800000000005, 7.91936, 7.09008, 7.37776, 7.1309, 6.58617, 6.14633, 6.11147, 6.6592899999999995, 6.90575, 7.092569999999999, 6.86485, 5.66988, 7.57558, 7.200419999999999, 6.95655, 6.2146099999999995, 6.05209, 6.44254, 6.35957, 5.72031, 6.4599, 6.60394, 6.51471, 5.73334, 6.975410000000001, 6.39693, 7.400010000000001, 5.90808, 8.537, 6.07993, 7.36645, 5.9269300000000005, 6.67708, 6.99942, 6.61338, 7.64969, 6.68461, 6.57925, 6.2186, 7.09008, 7.1082399999999994, 6.83518, 7.09008, 6.58617, 5.8861, 6.90575, 6.43615, 6.84162, 7.313219999999999, 6.68461, 6.55962, 6.07993, 6.3952599999999995, 6.633319999999999, 6.42162, 7.09008, 6.13123, 7.313219999999999, 6.30992, 6.79122, 6.720219999999999, 6.66823, 7.2861899999999995, 6.643789999999999, 6.802389999999999, 5.66988, 6.703189999999999, 6.39693, 5.98896, 7.620710000000001, 6.06611, 6.0822199999999995, 6.77878, 6.57786, 5.43808, 7.09008, 7.6009, 6.28972, 6.48768, 5.8141300000000005, 6.68461, 6.41182, 7.37776, 7.525639999999999, 6.74993, 6.72623, 7.09008, 7.25347, 7.585789999999999, 6.45362, 6.354369999999999, 6.984719999999999, 6.90575, 6.937310000000001, 6.907760000000001, 7.0775, 7.346010000000001, 7.027310000000001, 6.907760000000001, 6.9489, 6.907760000000001, 6.3315, 7.495539999999999, 6.01127, 6.802389999999999, 6.745239999999999, 6.58617, 6.90575, 6.633319999999999, 6.80572, 6.2480400000000005, 6.2634, 6.31355, 7.35819, 6.86485, 6.49677, 6.68461, 6.633319999999999, 7.30317, 6.95655, 6.907760000000001, 5.742999999999999, 6.04025, 6.39693, 7.313219999999999, 6.90575, 7.09008, 6.47697, 7.196689999999999, 6.47697, 6.30262, 6.745239999999999, 7.07412, 6.354369999999999, 6.10925, 6.68461, 7.42357, 6.768489999999999, 6.95655, 6.715380000000001, 6.7901, 6.56244, 6.9828600000000005, 6.253830000000001, 7.02465, 6.49224, 6.49979, 6.27099, 5.8861, 6.57228, 7.393260000000001, 6.829789999999999, 6.32794, 6.28786, 5.9839400000000005, 6.68461, 5.84354, 6.05209, 6.62007, 7.12287, 6.2146099999999995, 6.84162, 7.00307, 6.2146099999999995, 6.983789999999999, 6.35611, 5.93225, 6.17379, 6.95655, 6.39693, 6.88755, 7.04316, 6.90575, 6.84162, 6.45362, 6.83518, 5.273, 6.85646, 6.46925, 5.99146, 6.62007, 6.2186, 7.00307, 6.1717, 5.99146, 6.22654, 6.633319999999999, 6.77308, 7.1107, 6.95655, 6.967910000000001, 6.995769999999999, 6.66568, 6.594410000000001, 6.90575, 6.5439099999999994, 6.62007, 6.60665, 7.04752, 7.062189999999999, 7.313219999999999, 7.04752, 7.0884100000000005, 6.937310000000001, 6.90575, 6.23441, 6.47697, 6.25767, 6.05209, 6.2146099999999995, 6.551080000000001, 6.90575, 7.09008, 6.68461, 6.2146099999999995, 6.386880000000001, 6.44413, 6.58617, 6.10925, 6.90073, 6.745239999999999, 7.2233, 6.8773, 5.8579300000000005, 6.813439999999999, 6.86693, 7.037030000000001, 6.36303, 6.40523, 6.2146099999999995, 6.17379, 7.6009, 6.30992, 6.685860000000001, 5.99146, 6.38856, 6.47697, 7.46737, 6.551080000000001, 6.9226399999999995, 6.87213, 6.73102, 6.30992, 5.19296, 7.45298, 5.72359, 6.39693, 7.1309, 6.882439999999999, 5.95584, 5.940169999999999, 6.7093, 6.90675, 6.551080000000001, 6.9147300000000005, 6.85646, 6.563860000000001, 6.381819999999999, 5.78996, 6.769639999999999, 6.73102, 7.06133, 6.68461, 6.2146099999999995, 6.62007, 6.912739999999999, 6.4708, 6.2634, 6.41017, 7.08171, 6.90575, 7.6009, 6.556780000000001, 6.52062, 6.907760000000001, 6.60935, 5.8141300000000005, 6.30992, 6.51471, 6.9828600000000005, 6.85646, 6.30992, 6.39693, 7.338889999999999, 6.22654, 6.26149, 6.84055, 6.311730000000001, 7.01392, 6.49224, 6.2205900000000005, 7.44659, 5.94803, 7.388330000000001, 6.85118, 7.24423, 6.632000000000001, 6.65544, 6.90575, 7.10906, 6.3081, 6.944089999999999, 6.83518, 6.222580000000001, 6.84588, 7.17012, 6.52503, 6.2860000000000005, 6.80128, 6.07993 ], "xaxis": "x2", "y": [ "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "female", "female", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "female", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "female", "male", "female", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "female", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "female", "male", "female", "male", "male", "female", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "female", "male", "male", "female", "male", "male", "female", "female", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "female", "male", "female", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "female", "male", "male", "male", "female", "female", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "male", "male", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "male", "male" ], "yaxis": "y2" }, { "box": { "visible": true }, "legendgroup": "married", "marker": { "color": "blue" }, "name": "Married", "orientation": "h", "type": "violin", "x": [ 6.99942, 5.99146, 7.67322, 7.09008, 5.61677, 6.55536, 6.646389999999999, 7.02643, 6.4552, 7.32975, 6.39693, 6.95845, 7.06902, 6.04025, 6.907760000000001, 7.91936, 6.745239999999999, 6.30079, 7.068169999999999, 6.07535, 6.907760000000001, 6.7417, 7.71869, 6.882439999999999, 6.47697, 6.50279, 6.77878, 6.907760000000001, 6.93342, 7.06902, 6.57368, 6.829789999999999, 7.557989999999999, 6.892639999999999, 7.0255399999999995, 6.57925, 7.313219999999999, 6.47697, 7.1309, 6.551080000000001, 6.882439999999999, 6.907760000000001, 6.682110000000001, 6.39693, 6.48004, 6.60665, 7.00307, 6.10925, 5.78383, 6.94505, 6.9546399999999995, 7.17012, 7.11477, 6.993930000000001, 6.593039999999999, 6.49979, 6.5439099999999994, 6.39192, 6.614730000000001, 6.51471, 6.30992, 6.30992, 7.116389999999999, 6.46925, 6.30992, 7.554860000000001, 6.90675, 6.85646, 5.94803, 6.90575, 6.90575, 7.408530000000001, 7.0076, 6.88857, 7.35947, 6.39693, 7.041410000000001, 6.66696, 6.30992, 7.313219999999999, 6.62007, 6.787839999999999, 6.90575, 6.802389999999999, 7.00307, 7.074960000000001, 7.5606, 6.17379, 5.99146, 6.16331, 5.94803, 6.2146099999999995, 6.43775, 7.282760000000001, 6.39693, 6.813439999999999, 6.694560000000001, 6.65286, 6.29157, 6.23048, 6.67203, 6.16331, 6.88755, 6.95655, 7.56008, 6.28227, 6.30992, 6.05912, 6.30992, 6.602589999999999, 7.47307, 6.2146099999999995, 6.95655, 6.90575, 6.461469999999999, 7.09008, 7.46737, 6.829789999999999, 6.60665, 6.74052, 6.745239999999999, 7.6009, 6.62007, 6.551080000000001, 6.48158, 6.907760000000001, 6.663130000000001, 7.60589, 6.53669, 6.5582, 6.16121, 6.19236, 6.2146099999999995, 5.8999, 7.37776, 6.6995, 6.58617, 6.23832, 6.27476, 6.48311, 6.69084, 6.54965, 6.745239999999999, 6.882439999999999, 6.663130000000001, 5.70378, 6.7226300000000005, 7.20786, 6.05209, 6.802389999999999, 6.79122, 6.62007, 6.42162, 6.12249, 6.90575, 6.28227, 6.745239999999999, 6.206580000000001, 5.99146, 6.682110000000001, 6.49677, 7.408530000000001, 6.10925, 6.317159999999999, 6.2146099999999995, 6.551080000000001, 6.25575, 7.0884100000000005, 6.16331, 6.68461, 5.8999, 7.01392, 7.1107, 6.9363399999999995, 5.73334, 6.90575, 6.1070199999999994, 6.85646, 6.44572, 6.551080000000001, 6.84588, 8.10168, 7.31255, 5.99645, 6.90575, 6.802389999999999, 7.111510000000001, 6.2146099999999995, 6.66696, 6.907760000000001, 6.90575, 6.6592899999999995, 8.047189999999999, 6.62407, 7.0076, 6.30992, 6.17379, 6.55393, 6.3952599999999995, 6.24611, 7.78322, 6.563860000000001, 6.60665, 7.12448, 6.507280000000001, 6.461469999999999, 6.8977, 6.43775, 7.82405, 7.75148, 6.62407, 7.346010000000001, 6.2146099999999995, 7.1309, 6.51471, 5.96615, 6.84055, 7.041410000000001, 6.51471, 6.551080000000001, 7.346010000000001, 6.966019999999999, 6.90575, 7.17012, 6.5820300000000005, 7.04752, 6.354369999999999, 6.59578, 7.82405, 6.5467900000000006, 6.551080000000001, 6.39693, 6.88755, 6.39693, 6.39693, 6.65286, 6.36647, 6.622739999999999, 6.90575, 5.7525699999999995, 6.15273, 7.04752, 5.52146, 6.770789999999999, 6.907760000000001, 7.00125, 7.064760000000001, 7.00307, 6.907760000000001, 5.463830000000001, 6.05209, 6.745239999999999, 7.045780000000001, 6.54535, 6.37673, 6.62007, 6.907760000000001, 6.10925, 6.39693, 8.16052, 6.745239999999999, 7.03527, 5.43808, 6.765039999999999, 6.77422, 7.1309, 6.77422, 6.87213, 6.551080000000001, 6.907760000000001, 6.6567300000000005, 6.80017, 7.226210000000001, 6.10925, 6.90575, 6.70073, 7.495539999999999, 8.05516, 6.9256, 7.06987, 6.694560000000001, 6.90575, 6.43775, 6.97261, 7.29709, 7.179310000000001, 7.313219999999999, 6.7226300000000005, 6.82437, 6.715380000000001, 7.173189999999999, 6.62007, 6.77878, 6.7226300000000005, 6.47697, 6.85118, 6.49224, 7.313219999999999, 6.62007, 7.158510000000001, 6.818919999999999, 6.68461, 6.57647, 6.43455, 5.68358, 5.89715, 6.2146099999999995, 6.34564, 6.556780000000001, 6.7093, 6.93925, 7.00307, 6.551080000000001, 6.90575, 6.53669, 6.69084, 7.313219999999999, 6.10925, 6.05209, 6.90575, 6.62007, 6.4552, 6.77422, 6.87005, 6.65544, 6.42162, 5.9269300000000005, 6.6783399999999995, 6.317159999999999, 6.42972, 7.1309, 6.62007, 6.96508, 6.19236, 6.61607, 5.5606800000000005, 6.57368, 6.39693, 6.2634, 6.77422, 6.715380000000001, 7.408530000000001, 6.17379, 5.96615, 5.90808, 6.39693, 7.333019999999999, 6.37502, 6.16331, 6.317159999999999, 7.04752, 6.68461, 5.0814, 6.98008, 6.912739999999999, 6.86693, 7.3670800000000005, 6.68461, 7.09008, 6.90575, 6.90575, 6.62007, 6.45362, 6.49072, 6.47697, 6.9431199999999995, 6.90575, 6.10925, 6.67203, 4.605169999999999, 6.7334, 7.34278, 6.802389999999999, 6.90575, 6.658010000000001, 6.9256, 6.90575, 6.91075, 6.6592899999999995, 5.8579300000000005, 6.6592899999999995, 6.16331, 7.441319999999999, 6.47851, 7.07834, 6.745239999999999, 7.20786, 6.36475, 6.63857, 7.475910000000001, 6.62007, 6.4892, 7.00307, 6.7901, 6.56948, 6.65286, 7.43838, 7.15383, 6.86485, 7.064760000000001, 6.88755, 7.26193, 6.23245, 6.30445, 6.92461, 6.715380000000001, 7.313219999999999, 7.37776, 5.8579300000000005, 6.85646, 6.2441699999999996, 7.26193, 6.90575, 5.99146, 6.907760000000001, 6.85646, 6.272880000000001, 6.66568, 7.481560000000001, 7.04752, 6.61338, 6.40688, 6.73815, 5.8579300000000005, 7.57558, 6.83518, 6.38856, 6.768489999999999, 6.90575, 6.86693, 5.4161, 6.39693, 6.34739, 7.1507, 6.58617, 7.282760000000001, 7.00307, 6.66058, 6.58064, 6.30079, 6.90575, 6.10925, 6.64249, 5.76832, 6.715380000000001, 6.62007, 7.1309, 6.51471, 5.99146, 6.95655, 6.65286, 6.16331, 6.24611, 7.1309, 6.16542, 5.93489, 7.1333, 7.24423, 6.04025, 6.86901, 6.802389999999999, 7.04752, 6.70073, 6.1203, 6.90575, 7.313219999999999, 6.54822, 6.95655, 7.50108, 6.39693, 6.19644, 6.551080000000001, 7.07918, 5.8579300000000005, 5.70378, 6.7369699999999995, 5.7525699999999995, 7.745, 6.318969999999999, 6.87213, 5.89715, 6.39693, 6.30628, 6.8773, 6.708080000000001, 5.9454199999999995, 6.52942, 6.818919999999999, 7.041410000000001, 6.4677, 6.06611, 6.882439999999999, 6.94986, 6.703189999999999, 6.37502, 5.70378, 7.03615, 7.37776, 5.66988, 6.907760000000001, 6.882439999999999, 6.752269999999999, 6.48158, 6.47697, 7.04752, 6.802389999999999, 6.768489999999999, 6.2480400000000005, 6.984719999999999, 5.9269300000000005, 6.49224, 6.385190000000001, 7.1309, 7.663880000000001, 6.33328, 7.07242, 6.907760000000001, 6.48311, 6.43775, 8.05516, 6.807930000000001, 6.785589999999999, 6.907760000000001, 6.403569999999999, 6.035480000000001, 7.24423, 6.05209, 7.338889999999999, 7.0255399999999995, 7.00307, 5.99146, 6.33683, 6.07993, 7.488289999999999, 6.51175, 5.7365699999999995, 7.00307, 5.8999, 5.7365699999999995, 6.90575, 6.697030000000001, 6.354369999999999, 6.802389999999999, 6.62007, 6.68461, 6.68835, 6.62007, 6.36475, 5.8260000000000005, 6.85646, 6.44572, 6.95655, 7.20786, 6.3716099999999996, 6.8977, 6.47697, 6.802389999999999, 6.90575, 6.84055, 7.676010000000001, 6.85646, 6.43775, 7.20786, 6.89163, 7.0121199999999995, 6.85646, 6.77422, 6.54965, 6.65286, 6.05209, 6.697030000000001, 6.90575, 6.68461, 6.62007, 7.24423, 6.36819, 6.8844899999999996, 6.62007, 6.745239999999999, 6.19236, 5.7525699999999995, 6.39693, 6.85646, 6.025869999999999, 6.7334, 5.9269300000000005, 5.98896, 6.48004, 6.20456, 6.55393, 6.5903, 7.02643, 7.15305, 6.31536, 6.19236, 6.43615, 6.6871100000000006, 6.42162, 6.06379, 6.93537, 7.09008, 6.802389999999999, 6.47697, 6.2634, 7.79028, 6.10032, 6.0282800000000005, 7.408530000000001, 6.6174, 6.907760000000001, 6.90575, 5.95324, 6.1070199999999994, 5.99146, 6.05209, 6.2441699999999996, 6.00141, 6.39693, 6.79122, 6.9196800000000005, 6.9147300000000005, 6.90575, 6.408530000000001, 5.9269300000000005, 6.646389999999999, 6.746410000000001, 6.30992, 6.42972, 6.18826, 6.5467900000000006, 7.522939999999999, 5.51745, 6.7334, 6.07993, 6.907760000000001, 6.90575, 6.715380000000001, 7.04752, 6.66185, 6.47697, 7.23418, 6.54247, 6.753439999999999, 6.51471, 7.034389999999999, 6.65286, 7.262630000000001, 6.47697, 7.20786, 6.90575, 6.30992, 6.984719999999999, 6.85646, 6.85646, 6.30445, 6.32972, 6.05209, 6.34564, 6.95655, 6.49224, 6.62007, 5.82895, 6.39693, 6.06146, 6.43775, 6.03787, 6.3952599999999995, 6.22654, 7.144410000000001, 6.90575, 6.91374, 5.70378, 7.6009, 6.5903, 7.1592899999999995, 6.57786, 6.6783399999999995, 6.72383, 6.41182, 6.53233, 6.907760000000001, 6.7334, 7.236339999999999, 6.20456, 6.802389999999999, 6.10925, 6.715380000000001, 6.72743, 6.551080000000001, 7.084230000000001, 6.97635, 7.20786, 6.685860000000001, 6.8977, 7.00307, 6.35089, 5.70378, 6.59167, 6.461469999999999, 6.984719999999999, 6.53233, 6.646389999999999, 6.39693, 6.16331, 6.95655, 7.459910000000001, 6.19848, 7.0255399999999995, 7.1309, 6.745239999999999, 6.22654, 6.10925, 7.08171, 6.64249, 7.49332, 6.2634, 7.495539999999999, 7.1546199999999995, 7.1309, 6.3716099999999996, 6.745239999999999, 6.18415, 5.82895, 6.10925, 6.58617, 6.48158, 6.20456, 7.313219999999999, 6.94022, 6.90575, 6.41836, 6.10925, 7.48717, 7.0193, 6.983789999999999, 6.633319999999999, 6.10925, 6.29157, 7.49109, 6.91672, 6.90575, 6.93537, 6.51323, 6.715380000000001, 5.8141300000000005, 6.47697, 7.37212, 6.646389999999999, 6.56244, 7.0184, 6.84055, 7.24423, 6.834110000000001, 7.09008, 6.52942, 7.4553, 6.23245, 7.00307, 6.37502, 7.1309, 7.24423, 6.48158, 6.57925, 6.68461, 6.30992, 6.34388, 6.10925, 6.90575, 6.90575, 7.24423, 7.75577, 6.82437, 6.43775, 6.18415, 6.43775, 5.34711, 6.90575, 7.1107, 6.44572, 6.42162, 6.769639999999999, 6.93245, 6.818919999999999, 6.551080000000001, 7.279319999999999, 6.58617, 6.96508, 6.44572, 6.7093, 6.83195, 6.28972, 7.1082399999999994, 7.135689999999999, 6.49072, 7.251339999999999, 8.51719, 6.58064, 6.807930000000001, 7.14756, 7.33368, 6.77422, 6.60394, 6.68461, 7.1309, 5.99146, 7.201169999999999, 5.99146, 6.10925, 6.68461, 6.39693, 6.927560000000001, 6.85751, 6.33683, 6.95655, 6.08677, 7.24423, 7.1309, 6.17587, 6.802389999999999, 6.30992, 6.36303, 5.8999, 6.77422, 6.2860000000000005, 6.828710000000001, 6.47697, 6.72743, 6.55251, 6.29157, 5.59842, 6.5582, 6.62407, 5.9814099999999994, 6.76273, 7.06902, 5.9269300000000005, 6.80128, 6.354369999999999, 7.313219999999999, 6.966019999999999, 5.95324, 6.6592899999999995, 6.39693, 6.57786, 6.62007, 6.65286, 5.9454199999999995, 6.293419999999999, 5.4161, 5.87493, 5.64545, 6.79122, 6.987489999999999, 6.30992, 5.7525699999999995, 6.55536, 7.09008, 6.28972, 6.2146099999999995, 7.04752, 6.90575, 6.10925, 6.6783399999999995, 6.39693, 7.259119999999999, 7.43838, 6.47697, 7.1309, 6.2952699999999995, 6.77422, 6.2634, 6.739339999999999, 7.46737, 6.47697, 6.90575, 7.279319999999999, 6.815639999999999, 7.1309, 6.05209, 6.65028, 6.27099, 7.17012, 6.354369999999999, 6.29157, 6.802389999999999, 6.551080000000001, 6.602589999999999, 6.47697, 6.63857, 6.58755, 6.77422, 6.621410000000001, 6.907760000000001, 7.09589, 6.882439999999999, 5.45959, 6.05209, 5.82305, 7.67322, 6.85646, 5.8579300000000005, 5.78074, 6.2146099999999995, 7.2957399999999994, 5.84354, 6.802389999999999, 6.58064, 6.2634, 7.00307, 6.90575, 7.21891, 7.503839999999999, 6.12905, 6.45677, 6.950810000000001, 5.97126, 6.23048, 6.15273, 6.02345, 7.57558, 6.96035, 6.3716099999999996, 6.2146099999999995, 6.7334, 6.86066, 6.378430000000001, 6.48004, 7.00307, 6.8200199999999995, 6.47697, 6.90575, 7.39388, 7.4787300000000005, 6.2146099999999995, 6.802389999999999, 6.43775, 7.24065, 5.70378, 6.13773, 6.3952599999999995, 7.1025, 7.04752, 5.883319999999999, 7.09008, 6.77992, 6.9256, 6.035480000000001, 7.22766, 7.475339999999999, 6.62007, 5.72031, 6.272880000000001, 6.01616, 6.27099, 7.91936, 6.2146099999999995, 6.85646, 6.354369999999999, 6.907760000000001, 6.2634, 6.51471, 6.92166, 6.253830000000001, 5.9269300000000005, 6.745239999999999, 6.30992, 7.3651800000000005, 6.24998, 6.893660000000001, 6.53669, 6.43615, 7.04752, 6.30992, 6.39693, 5.59842, 6.1334, 6.58617, 6.765039999999999, 6.85646, 6.892639999999999, 6.95655, 5.99146, 6.43775, 6.90575, 6.81124, 6.966019999999999, 6.8865300000000005, 6.62007, 7.334980000000001, 6.72743, 6.93245, 7.27031, 7.03878, 6.901739999999999, 7.0255399999999995, 6.10925, 6.83518, 6.77992, 6.68461, 7.696210000000001, 6.53669, 6.52942, 6.126869999999999, 6.54965, 6.715380000000001, 7.31122, 5.8693, 6.90575, 6.0282800000000005, 6.30992, 6.23245, 6.31536, 7.486610000000001, 5.8579300000000005, 6.52942, 6.8426800000000005, 6.14204, 6.88755, 6.62007, 6.34564, 6.44413, 6.62007, 5.99146, 6.93245, 7.37776, 6.907760000000001, 5.99146, 7.18917, 6.7093, 6.75926, 6.3315, 6.5439099999999994, 6.1717, 7.9459100000000005, 6.77422, 7.424760000000001, 6.45362, 5.70378, 6.43775, 6.90575, 7.6009, 6.90575, 7.46737, 6.694560000000001, 6.907760000000001, 8.16052, 6.17379, 6.98008, 5.81711, 6.984719999999999, 6.44254, 6.802389999999999, 6.30079, 5.99146, 6.802389999999999, 7.32647, 6.745239999999999, 7.1309, 6.7901, 5.96101, 6.62007, 6.84055, 6.58617, 6.51471, 7.1309, 6.17379, 7.00307, 7.78322, 6.62007, 5.7525699999999995, 6.62407, 6.07993, 6.795710000000001, 7.212289999999999, 6.05209, 6.38856, 6.93925, 6.47697, 6.8773, 6.354369999999999, 7.9724699999999995, 6.11589, 7.64969, 6.703189999999999, 6.658010000000001, 6.47697, 6.50429, 6.58617, 5.74939, 6.893660000000001, 6.51471, 6.06611, 6.68461, 6.65544, 7.331060000000001, 6.64118, 6.33328, 6.47697, 7.475910000000001, 6.72743, 7.20786, 6.81124, 7.0201899999999995, 7.279319999999999, 8.02027, 6.80461, 5.99645, 7.10906, 6.40523, 6.77422, 7.01571, 6.54822, 6.14204, 6.57786, 6.47697, 6.386880000000001, 7.0255399999999995, 7.24423, 5.93225, 5.9269300000000005, 7.46737, 5.8141300000000005, 6.69084, 6.47697, 6.85646, 6.88755, 7.24423, 6.2634, 6.95655, 6.67077, 6.85646, 7.313219999999999, 5.86647, 6.98008, 6.75577, 6.01616, 6.566669999999999, 7.09008, 6.697030000000001, 5.78383, 6.79794, 6.2634, 6.61874, 6.64118, 7.1309, 6.98101, 6.90575, 5.90263, 6.17794, 6.77422, 6.96035, 6.6515699999999995, 6.35957, 6.829789999999999, 6.66568, 7.09008, 6.10925, 6.85646, 6.90575, 6.95655, 6.126869999999999, 7.1309, 6.4552, 6.58617, 7.23778, 6.278519999999999, 6.66568, 6.21261, 6.57925, 6.907760000000001, 6.30992, 6.802389999999999, 6.88755, 7.08171, 6.6567300000000005, 7.696210000000001, 6.68461, 6.10925, 6.785589999999999, 6.43775, 6.47697, 6.802389999999999, 7.04752, 6.6592899999999995, 5.4161, 6.48311, 6.408530000000001, 6.84055, 7.17778, 6.2634, 6.4892, 6.62007, 6.95177, 6.785589999999999, 7.033510000000001, 6.04025, 7.1107, 6.57647, 6.85646, 6.39693, 6.23637, 6.530880000000001, 6.36819, 6.43775, 6.90575, 6.30992, 6.85646, 6.62007, 6.04025, 6.79122, 6.30992, 6.62007, 5.76832, 6.81014, 6.551080000000001, 6.56526, 6.551080000000001, 7.09008, 6.86693, 6.9613, 6.7901, 6.95655, 6.65286, 5.9814099999999994, 6.43775, 6.28227, 5.940169999999999, 7.46737, 6.35957, 7.18007, 6.2146099999999995, 7.46737, 6.90575, 6.253830000000001, 6.52209, 6.1025599999999995, 7.37776, 6.90575, 5.99146, 7.46737, 6.1025599999999995, 5.99146, 6.18826, 6.4552, 6.59987, 6.15698, 7.346010000000001, 6.68461, 7.6009, 7.14913, 6.96885, 7.27031, 6.317159999999999, 6.72503, 5.8861, 5.99146, 6.62007, 6.6871100000000006, 7.17012, 6.802389999999999, 5.93754, 6.995769999999999, 6.802389999999999, 6.52356, 6.55251, 6.56526, 6.72383, 7.09008, 6.885510000000001, 6.68461, 6.52209, 7.313219999999999, 6.94698, 6.561030000000001, 6.907760000000001, 7.71869, 6.1717, 5.96615, 7.143619999999999, 6.41673, 6.907760000000001, 6.29157, 6.354369999999999, 7.00307, 6.802389999999999, 6.90375, 5.958419999999999, 6.1944099999999995, 7.09008, 6.90575, 6.47697, 7.26193, 5.98645, 6.60665, 6.424869999999999, 6.745239999999999, 5.8579300000000005, 7.37776, 6.13773, 6.882439999999999, 6.907760000000001, 6.858569999999999, 6.745239999999999, 7.495539999999999, 7.1546199999999995, 6.68461, 6.2804, 6.6592899999999995, 6.77422, 6.893660000000001, 6.86693, 7.408530000000001, 6.72743, 6.42972, 6.633319999999999, 7.0579, 6.68461, 7.185389999999999, 7.26543, 7.05099, 6.10925, 6.60123, 7.233460000000001, 6.90575, 6.77194, 6.715380000000001, 5.8861, 6.6567300000000005, 6.3243599999999995, 6.55393, 6.90575, 6.10925, 6.9613, 6.90575, 6.907760000000001, 6.90975, 7.64969, 7.1309, 6.745239999999999, 5.99146, 6.354369999999999, 5.4161, 6.55536, 6.02102, 6.7334, 6.47697, 6.47697, 6.53669, 6.95655, 6.551080000000001, 6.16331, 7.6009, 6.90575, 6.10925, 7.17242, 6.3421199999999995, 6.9196800000000005, 6.65286, 6.51471, 7.24423, 6.39693, 6.85646, 6.551080000000001, 6.86693, 6.35611, 6.90575, 5.65948, 6.34914, 7.696210000000001, 7.17012, 6.802389999999999, 5.940169999999999, 6.253830000000001, 6.90575, 6.48464, 6.49224, 6.82763, 6.90575, 6.26149, 7.014810000000001, 6.551080000000001, 6.2634, 7.04752, 6.90575, 7.20786, 7.02997, 7.803839999999999, 6.31355, 6.89467, 6.829789999999999, 7.17012, 7.54961, 7.28207, 6.69084, 7.1929300000000005, 6.33328, 5.84354, 6.85646, 6.29157, 6.912739999999999, 6.80017, 6.97635, 6.2653, 6.07535, 7.1309, 7.17012, 6.59715, 7.0884100000000005, 6.77992, 7.16627, 6.19644, 5.50126, 6.39693, 5.9814099999999994, 6.90575, 6.90575, 6.6958, 5.01728, 7.279319999999999, 7.136480000000001, 6.608, 6.68461, 7.9831, 6.77422, 6.9828600000000005, 6.30992, 6.2146099999999995, 7.09506, 6.44572, 6.2634, 6.90575, 6.90575, 7.08339, 5.96615, 6.9622399999999995, 5.82008, 7.11233, 6.912739999999999, 6.68461, 6.85646, 6.4708, 6.8254600000000005, 7.346010000000001, 6.68085, 7.24423, 6.8426800000000005, 6.62007, 6.1070199999999994, 6.33328, 6.15698, 6.15698, 6.893660000000001, 6.43775, 6.30262, 6.253830000000001, 7.30317, 6.829789999999999, 6.56808, 5.8999, 5.99146, 6.36303, 7.20786, 6.752269999999999, 6.95655, 6.02102, 6.633319999999999, 6.2634, 7.183110000000001, 6.33328, 6.907760000000001, 6.9707300000000005, 6.6174, 7.43838, 6.45047, 6.9707300000000005, 6.3952599999999995, 7.09008, 6.49979, 6.94986, 7.06902, 6.6567300000000005, 6.745239999999999, 6.68461, 7.22766, 6.68461, 6.93049, 7.1309, 6.975410000000001, 6.2672, 6.50279, 6.551080000000001, 6.59987, 6.7334, 6.16331, 6.2146099999999995, 6.95655, 6.694560000000001, 6.44572, 6.6783399999999995, 7.408530000000001, 7.09008, 6.849069999999999, 6.614730000000001, 6.72743, 6.17379, 7.03615, 6.05209, 6.6280399999999995, 6.83518, 7.09008, 6.1070199999999994, 6.63857, 6.17794, 6.551080000000001, 6.712960000000001, 6.30992, 7.07834, 6.39693, 6.57228, 7.346010000000001, 6.938280000000001, 6.715380000000001, 6.7511, 6.715380000000001, 6.58617, 5.59842, 6.3935900000000006, 7.26193, 6.49072, 6.829789999999999, 6.745239999999999, 6.721430000000001, 5.97635, 6.59715, 6.00389, 6.9828600000000005, 6.29157, 6.62007, 6.85646, 6.86901, 7.04752, 6.23441, 6.551080000000001, 6.63726, 6.14633, 6.0282800000000005, 6.563860000000001, 6.73102, 6.2634, 6.3243599999999995, 6.721430000000001, 6.6796, 7.062189999999999, 6.10925, 7.313219999999999, 6.34564, 6.561030000000001, 6.17379, 7.06987, 6.87626, 6.505780000000001, 6.745239999999999, 6.39859, 6.966019999999999, 6.4488900000000005, 7.1309, 6.68461, 6.575080000000001, 6.40192, 6.70073, 6.56808, 6.7334, 6.30992, 7.0775, 6.6796, 6.8384100000000005, 5.42935, 7.03615, 6.6592899999999995, 6.85751, 6.745239999999999, 7.313219999999999, 6.86693, 7.08171, 6.85646, 6.47697, 6.47697, 6.907760000000001, 6.28972, 7.46737, 7.2724, 6.61874, 6.30079, 7.0255399999999995, 6.27099, 6.90575, 6.34564, 6.47697, 6.9828600000000005, 7.450080000000001, 6.224559999999999, 6.551080000000001, 6.551080000000001, 6.551080000000001, 6.23441, 6.77422, 7.1309, 6.52209, 7.49332, 6.39192, 6.739339999999999, 7.4832399999999994, 6.16331, 6.68461, 6.90575, 6.715380000000001, 6.90575, 7.1309, 6.86171, 6.68461, 6.715380000000001, 5.70378, 6.551080000000001, 6.802389999999999, 6.33683, 6.9187, 7.0579, 6.35611, 7.02376, 6.45834, 5.8141300000000005, 5.4161, 5.5797300000000005, 6.90575, 6.82655, 6.90575, 5.9269300000000005, 7.42833, 5.87212, 6.463030000000001, 7.52833, 6.86797, 6.95655, 6.88755, 6.60665, 6.90575, 6.4677, 7.3651800000000005, 6.748760000000001, 6.77992, 6.975410000000001, 7.43838, 7.82405, 6.5439099999999994, 6.42162, 6.8844899999999996, 7.16085, 6.52209, 6.04025, 5.52146, 6.90575, 7.00307, 6.907760000000001, 6.23441, 6.463030000000001, 6.817830000000001, 7.279319999999999, 6.907760000000001, 7.54961, 7.323169999999999, 6.90575, 6.41017, 6.90575, 6.65286, 6.787839999999999, 6.62007, 7.0967199999999995, 5.9269300000000005, 6.55393, 7.0255399999999995, 6.17379, 7.00307, 7.31122, 6.39693, 7.31122, 6.31355, 5.8141300000000005, 6.44572, 6.59578, 6.47697, 7.226210000000001, 6.62007, 6.69332, 6.7511, 6.77422, 7.09008, 5.8579300000000005, 7.183110000000001, 7.728860000000001, 6.54965, 7.04752, 7.25488, 6.9256, 6.907760000000001, 6.3952599999999995, 5.65249, 7.041410000000001, 6.4599, 6.96035, 7.1333, 6.99942, 6.38012, 7.200419999999999, 6.06379, 5.42053, 7.18007, 7.1309, 6.461469999999999, 6.85646, 7.17012, 7.03527, 6.19848, 6.62007, 7.313219999999999, 5.8861, 6.52209, 5.8861, 7.20786, 6.907760000000001, 6.90575, 6.05209, 7.1452, 6.02102, 5.82895, 6.33683, 6.04025, 6.2146099999999995, 7.8935699999999995, 6.34564, 6.64249, 6.8977, 6.3699, 6.6567300000000005, 6.813439999999999, 6.53669, 6.90575, 6.05209, 6.47697, 6.05209, 7.21524, 6.551080000000001, 6.66568, 6.57925, 6.2146099999999995, 6.8426800000000005, 6.907760000000001, 6.90575, 7.106610000000001, 5.52146, 6.424869999999999, 6.65415, 6.86693, 6.745239999999999, 6.88346, 6.53669, 6.3207699999999996, 7.696210000000001, 7.64779, 7.313219999999999, 6.95655, 5.95584, 6.715380000000001, 6.44254, 6.8966899999999995, 6.61338, 6.8426800000000005, 6.23245, 6.95655, 6.768489999999999, 5.52146, 7.3981699999999995, 6.06379, 6.2205900000000005, 6.68461, 7.12287, 6.813439999999999, 6.752269999999999, 6.551080000000001, 6.86066, 6.7334, 6.318969999999999, 6.79122, 6.0822199999999995, 5.95324, 6.745239999999999, 7.1309, 6.54103, 7.06048, 6.24222, 6.68461, 6.9177100000000005, 6.05209, 7.04752, 6.78672, 7.09008, 7.1309, 6.47697, 7.1025, 5.9814099999999994, 7.24423, 6.44254, 7.451239999999999, 7.198180000000001, 7.27101, 7.245660000000001, 6.51471, 7.279319999999999, 6.85646, 7.279319999999999, 6.3952599999999995, 7.67322, 6.76273, 6.82437, 6.47697, 6.885510000000001, 7.07918, 7.279319999999999, 7.1309, 6.966019999999999, 6.73102, 6.70073, 6.633319999999999, 6.07993, 6.46925, 7.00307, 5.940169999999999, 7.6009, 6.22654, 6.907760000000001, 6.32615, 6.508769999999999, 6.551080000000001, 7.0884100000000005, 6.39693, 6.829789999999999, 7.31986, 6.21661, 7.11802, 6.77422, 7.26193, 6.90575, 7.17012, 7.00307, 5.99146, 7.46737, 6.57786, 6.3081, 6.90575, 6.58755, 6.8254600000000005, 6.311730000000001, 6.39693, 6.95655, 6.62007, 6.3952599999999995, 7.04752, 6.48311, 6.50429, 6.39693, 6.90575, 6.60665, 6.90575, 6.318969999999999, 6.802389999999999, 6.70441, 6.51471, 6.77992, 5.99146, 6.68461, 6.29157, 6.62007, 6.40523, 6.18826, 7.24423, 6.83518, 7.09008, 7.84502, 6.62007, 7.1624, 6.813439999999999, 6.907760000000001, 6.68461, 6.14633, 7.17012, 6.53814, 6.2146099999999995, 6.882439999999999, 6.36647, 6.47697, 7.54697, 6.60665, 6.29895, 6.68461, 7.408530000000001, 7.2724, 6.46614, 6.90575, 6.95655, 5.8579300000000005, 6.745239999999999, 5.7462, 6.36303, 7.20786, 7.04752, 7.04316, 6.551080000000001, 6.58064, 6.17379, 6.83195, 6.8533, 5.70378, 7.20786, 6.62007, 6.95655, 5.93225, 6.90575, 6.34564, 7.09008, 7.014810000000001, 6.73815, 6.65028, 7.03878, 6.10032, 7.266830000000001, 6.95655, 6.58617, 6.49072, 7.20786, 6.68461, 6.602589999999999, 5.78383, 6.551080000000001, 6.87626, 5.16479, 7.54961, 6.551080000000001, 6.84055, 6.49224, 6.58893, 5.2983199999999995, 6.60665, 6.907760000000001, 7.64969, 6.9177100000000005, 6.35957, 6.18415, 6.68461, 7.43838, 6.66441, 6.551080000000001, 5.99146, 5.82008, 6.41182, 6.43775, 6.10925, 6.43775, 6.4599, 6.04025, 7.00307, 5.99146, 6.852239999999999, 6.51175, 6.5439099999999994, 6.6515699999999995, 7.522939999999999, 6.16331, 6.551080000000001, 6.907760000000001, 7.04752, 6.44572, 6.3243599999999995, 6.41346, 6.551080000000001, 6.802389999999999, 6.62007, 6.5439099999999994, 6.57925, 6.38012, 6.4151, 6.52209, 6.29157, 6.39693, 6.59715, 5.01064, 6.2146099999999995, 6.97167, 6.75926, 6.73102, 6.66823, 7.37776, 6.77422, 7.1309, 6.90575, 6.10925, 7.408530000000001, 6.30992, 6.39693, 6.04025, 7.0396600000000005, 7.09589, 7.10003, 6.73102, 6.87523, 6.90575, 7.20786, 7.173960000000001, 6.90575, 6.47389, 6.99026, 7.0884100000000005, 6.206580000000001, 5.5606800000000005, 6.56526, 6.44572, 6.802389999999999, 6.551080000000001, 6.53379, 6.90575, 6.46614, 6.61338, 6.90575, 6.85646, 6.47389, 6.10925, 6.99118, 6.2441699999999996, 7.1592899999999995, 6.697030000000001, 6.90575, 6.59987, 7.01571, 6.42162, 6.716589999999999, 6.85646, 7.46737, 6.58617, 6.95655, 6.29157, 6.907760000000001, 6.8426800000000005, 6.46459, 6.62007, 6.95177, 6.58617, 6.50129, 6.2952699999999995, 6.85646, 6.15698, 6.90575, 7.6009, 6.30992, 7.00307, 6.17379, 6.15273, 7.01392, 6.62007, 7.346010000000001, 6.90575, 6.68461, 6.50429, 7.24423, 7.0942300000000005, 5.78383, 6.54535, 6.3716099999999996, 7.86327, 6.62007, 7.09008, 6.703189999999999, 6.354369999999999, 6.53233, 6.58617, 6.602589999999999, 7.46737, 6.9622399999999995, 6.424869999999999, 6.39693, 6.38012, 6.802389999999999, 6.43935, 6.259580000000001, 7.044910000000001, 6.42162, 6.90575, 6.802389999999999, 6.44413, 7.127689999999999, 6.45677, 6.40192, 6.55393, 6.593039999999999, 7.06902, 6.59987, 6.802389999999999, 6.715380000000001, 6.715380000000001, 6.39693, 6.57786, 6.68461, 7.00307, 6.42972, 6.85435, 6.58893, 6.937310000000001, 6.2106, 6.708080000000001, 6.0845, 6.907760000000001, 6.16331, 6.43775, 6.2146099999999995, 6.2441699999999996, 6.2634, 6.74406, 6.85646, 6.73221, 5.72031, 5.97635, 6.13123, 7.54961, 6.37673, 6.90575, 6.62007, 6.768489999999999, 6.63595, 5.82895, 6.90575, 6.75577, 6.04025, 6.77194, 6.77422, 6.99485, 6.58617, 5.8999, 6.2146099999999995, 6.2146099999999995, 6.6567300000000005, 6.62007, 6.9489, 7.354360000000001, 7.279319999999999, 5.8861, 6.6592899999999995, 7.06305, 6.61338, 7.00307, 6.49224, 6.07993, 6.84588, 6.35611, 6.35611, 6.8977, 6.551080000000001, 7.20786, 6.90575, 7.59287, 6.17587, 7.1309, 7.393260000000001, 6.95655, 6.834110000000001, 6.07993, 7.10988, 6.802389999999999, 6.224559999999999, 6.57925, 6.927560000000001, 6.90575, 7.09008, 7.1309, 6.90575, 6.907760000000001, 5.8693, 6.16542, 6.62007, 7.6009, 6.963189999999999, 6.95655, 6.90575, 6.43775, 6.90575, 6.796819999999999, 6.66568, 6.73459, 6.907760000000001, 6.8533, 6.813439999999999, 7.196689999999999, 6.43615, 6.9147300000000005, 6.551080000000001, 6.77194, 6.90575, 6.90575, 6.66823, 6.47697, 7.0255399999999995, 7.522939999999999, 6.62007, 6.354369999999999, 7.1546199999999995, 6.90575, 6.551080000000001, 5.78383, 6.753439999999999, 6.77422, 7.313219999999999, 6.967910000000001, 6.816739999999999, 7.6009, 6.745239999999999, 6.51471, 7.37588, 6.86485, 6.41346, 6.7093, 6.551080000000001, 6.22654, 7.24423, 5.70378, 6.06146, 6.16331, 7.05359, 6.49224, 6.86171, 6.58617, 7.1309, 6.77422, 7.93737, 6.39693, 6.58617, 7.67322, 6.551080000000001, 6.2146099999999995, 6.77422, 6.2634, 6.99485, 6.45047, 6.66185, 6.94119, 6.90575, 7.21891, 7.57558, 7.495539999999999, 6.29157, 6.10925, 6.59715, 7.09008, 6.03787, 6.556780000000001, 6.2146099999999995, 6.354369999999999, 7.6009, 6.83303, 6.63068, 6.551080000000001, 7.279319999999999, 6.354369999999999, 7.925160000000001, 6.77422, 7.183110000000001, 6.1136800000000004, 6.77992, 6.62007, 7.00307, 7.86327, 6.70073, 6.795710000000001, 7.1309, 6.32794, 6.16121, 5.6801699999999995, 6.65286, 6.802389999999999, 6.715380000000001, 6.95655, 6.78333, 6.90575, 6.67582, 6.47697, 6.907760000000001, 6.90575, 6.682110000000001, 6.19236, 6.53233, 6.882439999999999, 7.0255399999999995, 6.23048, 6.715380000000001, 7.872839999999999, 6.49072, 6.90575, 6.4892, 6.63726, 6.12249, 6.3613, 6.79122, 6.53233, 6.05209, 6.907760000000001, 6.697030000000001, 6.8742, 6.08677, 6.6280399999999995, 6.907760000000001, 6.05209, 5.70378, 5.68698, 7.02997, 6.715380000000001, 6.2146099999999995, 6.90575, 7.313219999999999, 6.3699, 6.12249, 6.14847, 6.07074, 6.77992, 6.54822, 6.62007, 6.59987, 6.62007, 6.8966899999999995, 6.802389999999999, 6.7226300000000005, 6.07993, 6.51026, 6.907760000000001, 6.50429, 6.47697, 6.58617, 5.88053, 6.77422, 6.8977, 5.9135, 6.17379, 8.047189999999999, 6.93537, 6.2146099999999995, 6.507280000000001, 7.46737, 5.82895, 7.034389999999999, 6.7569300000000005, 7.2998, 6.95655, 6.17794, 6.68461, 7.495539999999999, 6.62007, 6.88755, 6.45205, 6.802389999999999, 6.32794, 6.10925, 6.68461, 8.03916, 6.829789999999999, 6.6745600000000005, 6.714169999999999, 6.43775, 5.4161, 7.00307, 6.43455, 6.90575, 7.346660000000001, 6.9256, 7.6009, 7.10988, 7.24423, 6.7569300000000005, 6.48004, 6.38856, 6.889589999999999, 7.313219999999999, 6.9256, 6.59167, 6.57786, 6.53669, 6.39693, 6.33328, 6.33328, 7.313219999999999, 6.551080000000001, 7.408530000000001, 6.802389999999999, 7.3908, 6.90575, 5.86079, 6.9256, 6.95655, 6.13123, 5.99894, 6.551080000000001, 7.06561, 6.57925, 6.90575, 6.73102, 7.09008, 6.566669999999999, 6.9966800000000005, 6.43775, 6.62007, 6.68461, 6.424869999999999, 6.646389999999999, 5.39363, 5.96615, 6.2146099999999995, 6.802389999999999, 6.90575, 6.9613, 5.70378, 6.78672, 6.65286, 7.24423, 7.09008, 6.602589999999999, 6.42162, 7.0422899999999995, 7.034389999999999, 6.52209, 6.59987, 6.44572, 6.20456, 6.57925, 6.38012, 6.16331, 5.96615, 7.43838, 6.818919999999999, 6.551080000000001, 6.53669, 6.95655, 5.76832, 7.2100800000000005, 6.48311, 6.507280000000001, 6.45362, 6.765039999999999, 6.2634, 6.2691, 7.18917, 5.9135, 6.6896, 6.2146099999999995, 6.802389999999999, 6.50129, 6.2634, 7.38647, 6.96885, 6.10925, 7.196689999999999, 6.3403599999999996, 6.14419, 6.818919999999999, 6.72623, 6.90575, 7.04752, 6.7569300000000005, 6.62936, 7.09008, 6.692080000000001, 6.62007, 5.9839400000000005, 6.013719999999999, 6.95655, 7.49332, 6.62007, 6.31355, 6.62007, 6.753439999999999, 6.77422, 6.2653, 7.495539999999999, 6.7334, 6.95655, 6.56526, 6.88755, 7.47307, 6.224559999999999, 6.47697, 6.90575, 6.90575, 7.909860000000001, 6.69084, 6.3716099999999996, 6.52209, 6.07304, 7.106610000000001, 6.2146099999999995, 6.40523, 6.69084, 5.627619999999999, 6.802389999999999, 6.6567300000000005, 6.68461, 6.697030000000001, 6.22654, 7.740660000000001, 5.95324, 6.907760000000001, 6.43775, 6.43775, 6.813439999999999, 5.76832, 6.9256, 7.64969, 6.47697, 6.43615, 5.8579300000000005, 6.10925, 7.1309, 5.89715, 6.907760000000001, 6.745239999999999, 6.33683, 6.43775, 6.85646, 6.77422, 6.768489999999999, 5.97889, 6.2146099999999995, 7.029089999999999, 6.62007, 7.06133, 7.24423, 6.95177, 7.54961, 6.354369999999999, 6.87626, 6.318969999999999, 6.570880000000001, 6.34388, 6.62007, 7.61332, 7.09008, 6.7511, 6.8977, 6.551080000000001, 7.40914, 7.034389999999999, 7.18917, 6.49072, 6.30992, 5.70378, 6.55393, 6.1070199999999994, 6.72743, 6.05209, 7.0967199999999995, 6.30992, 6.90575, 6.551080000000001, 6.907760000000001, 6.785589999999999, 6.39693, 6.05209, 6.90575, 6.36819, 6.697030000000001, 6.814539999999999, 6.639880000000001, 6.23637, 6.62007, 7.24423, 6.77194, 6.551080000000001, 6.802389999999999, 5.8999, 5.52146, 6.57228, 7.062189999999999, 6.47697, 6.2441699999999996, 6.829789999999999, 6.95655, 6.47697, 6.907760000000001, 6.38012, 7.293019999999999, 6.91175, 6.68461, 6.45834, 6.556780000000001, 6.5582, 6.91175, 6.45362, 7.1309, 6.36303, 6.8773, 6.955589999999999, 7.80588, 6.9613, 5.4161, 6.907760000000001, 6.90575, 7.18992, 7.507689999999999, 6.90575, 6.385190000000001, 6.748760000000001, 7.31122, 6.6107, 6.807930000000001, 6.79794, 6.1717, 6.16331, 6.6592899999999995, 7.0483899999999995, 6.598510000000001, 5.5797300000000005, 6.633319999999999, 7.6009, 6.09131, 7.106610000000001, 6.90575, 6.04025, 7.66153, 7.22548, 6.48768, 6.87213, 7.17012, 6.23245, 6.39693, 6.4677, 7.35244, 7.183110000000001, 6.56948, 8.00637, 7.05272, 6.33328, 6.90575, 6.802389999999999, 6.30992, 6.551080000000001, 6.10925, 6.77422, 6.30992, 7.522939999999999, 6.49979, 6.802389999999999, 5.7525699999999995, 7.05704, 7.16858, 6.802389999999999, 6.58617, 6.551080000000001, 7.20564, 6.551080000000001, 6.47697, 6.0330900000000005, 7.1507, 6.852239999999999, 7.6009, 6.70564, 5.7525699999999995, 6.90575, 6.802389999999999, 6.11147, 6.95655, 6.84375, 6.95655, 6.8977, 7.34923, 6.93245, 6.34564, 6.79122, 7.03878, 5.8861, 7.400010000000001, 5.8579300000000005, 7.37588, 6.83195, 7.00307, 6.84162, 6.354369999999999, 6.93342, 6.608, 6.85646, 6.61607, 5.82305, 6.056780000000001, 6.90575, 6.697030000000001, 6.5395900000000005, 6.6120399999999995, 6.63726, 7.1309, 6.739339999999999, 7.86327, 6.55393, 6.47697, 6.7511, 6.907760000000001, 6.05912, 6.54535, 6.551080000000001, 7.00307, 6.51471, 7.0422899999999995, 6.57925, 6.66823, 7.71869, 5.52146, 7.1309, 6.551080000000001, 6.44572, 7.00307, 5.39363, 6.253830000000001, 7.401839999999999, 5.99146, 7.2724, 6.907760000000001, 6.90575, 6.3315, 6.3699, 6.39693, 5.43808, 7.82405, 6.95655, 6.09582, 5.95324, 6.07535, 5.8999, 6.90575, 6.8426800000000005, 7.0518600000000005, 6.993930000000001, 6.907760000000001, 6.79122, 6.7511, 6.2146099999999995, 6.78897, 6.67203, 7.259119999999999, 7.6811, 6.745239999999999, 7.27031, 6.721430000000001, 6.2146099999999995, 6.2804, 6.90575, 6.563860000000001, 6.99485, 7.37776, 7.06048, 7.6009, 6.30992, 6.84375, 7.0282, 6.66696, 6.90575, 6.47235, 6.56244, 8.0229, 6.90575, 6.6592899999999995, 6.80351, 6.92658, 6.4892, 6.39693, 6.28227, 7.06902, 6.08677, 5.958419999999999, 7.1309, 5.68698, 6.62007, 6.33683, 6.984719999999999, 5.89715, 6.06611, 6.753439999999999, 6.354369999999999, 6.52209, 6.52209, 7.362010000000001, 6.8200199999999995, 6.73102, 6.39693, 6.8773, 6.2146099999999995, 6.507280000000001, 7.313219999999999, 6.81014, 6.802389999999999, 6.49072, 6.0845, 7.46737, 6.82437, 5.48064, 6.745239999999999, 6.11147, 6.2634, 7.181589999999999, 6.551080000000001, 7.05618, 6.29157, 7.2998, 5.86079, 6.51619, 6.56948, 6.937310000000001, 5.83188, 6.9256, 6.90575, 6.10925, 6.39693, 7.09008, 6.82437, 6.3952599999999995, 6.753439999999999, 6.966019999999999, 6.802389999999999, 7.239210000000001, 6.5582, 6.907760000000001, 6.98008, 6.62407, 5.70378, 6.551080000000001, 6.41673, 7.313219999999999, 6.62007, 6.84588, 6.95655, 6.42162, 6.68461, 6.715380000000001, 6.85646, 6.57786, 5.8579300000000005, 6.2146099999999995, 7.313219999999999, 7.37776, 6.07993, 6.30992, 7.1309, 6.69084, 6.70564, 6.27099, 5.7462, 6.16752, 7.279319999999999, 6.73102, 6.53669, 6.24222, 7.03527, 7.04752, 6.507280000000001, 6.93049, 6.59715, 7.09008, 6.45047, 6.33328, 6.68461, 6.62007, 6.6592899999999995, 6.90575, 7.04752, 6.30992, 6.58617, 7.43838, 6.6346300000000005, 6.59167, 6.1181, 6.41836, 7.2724, 6.56526, 6.90575, 7.91936, 6.54103, 6.90575, 7.57558, 6.2146099999999995, 6.20456, 6.802389999999999, 6.899719999999999, 7.484369999999999, 6.90575, 6.51471, 5.7462, 6.39693, 6.94698, 7.084230000000001, 6.96885, 6.907760000000001, 7.00307, 7.293019999999999, 7.173189999999999, 6.77422, 6.815639999999999, 6.43294, 6.813439999999999, 6.90575, 6.88857, 6.90575, 7.09008, 6.90575, 7.226210000000001, 5.76832, 5.70378, 7.279319999999999, 6.73102, 6.05912, 6.68461, 6.6592899999999995, 7.91936, 6.507280000000001, 6.035480000000001, 7.00307, 6.47697, 6.551080000000001, 6.206580000000001, 6.90575, 6.2146099999999995, 6.907760000000001, 6.715380000000001, 6.96885, 6.68461, 6.57368, 6.745239999999999, 6.39859, 6.53669, 5.76832, 6.2146099999999995, 6.8426800000000005, 7.520230000000001, 5.5797300000000005, 6.51323, 7.1082399999999994, 6.551080000000001, 6.5582, 7.17012, 6.768489999999999, 6.39693, 7.393260000000001, 6.6958, 6.39693, 6.95177, 6.2146099999999995, 7.09008, 6.5582, 7.09008, 6.9613, 6.4892, 7.676010000000001, 6.715380000000001, 5.70378, 6.907760000000001, 6.3935900000000006, 7.54961, 6.86171, 6.43775, 5.79606, 6.83087, 6.6783399999999995, 6.54535, 6.02345, 6.593039999999999, 5.9269300000000005, 6.77422, 6.44572, 7.04752, 6.3716099999999996, 6.72743, 7.37776, 7.17012, 6.8426800000000005, 7.00307, 6.126869999999999, 6.50129, 6.8773, 6.56526, 6.354369999999999, 6.96885, 6.575080000000001, 6.62007, 6.42811, 6.752269999999999, 6.90575, 6.78672, 7.1309, 8.12089, 6.829789999999999, 7.00307, 6.2146099999999995, 6.1944099999999995, 7.740660000000001, 6.551080000000001, 6.907760000000001, 6.2146099999999995, 6.96979, 6.68461, 7.14283, 6.2634, 6.139880000000001, 7.1293, 6.89467, 5.43808, 6.646389999999999, 6.621410000000001, 5.5797300000000005, 7.183110000000001, 6.07993, 6.5467900000000006, 6.34388, 6.39024, 7.0255399999999995, 6.424869999999999, 6.68461, 6.49979, 7.37776, 6.7901, 6.17379, 6.4488900000000005, 6.614730000000001, 6.802389999999999, 6.60665, 7.09008, 6.51323, 6.93245, 6.6592899999999995, 6.30992, 6.30992, 6.7226300000000005, 7.37776, 6.09807, 6.8977, 6.35784, 6.37502, 6.57925, 7.7021, 7.46737, 7.6009, 7.36455, 5.4161, 6.59715, 6.639880000000001, 6.36303, 5.82895, 6.59715, 6.62007, 6.551080000000001, 7.09008, 6.47697, 6.78333, 6.563860000000001, 7.0076, 6.880380000000001, 6.745239999999999, 5.50126, 6.82437, 6.4677, 7.127689999999999, 7.1309, 6.62007, 7.82084, 7.288930000000001, 6.72743, 6.583410000000001, 6.39693, 6.68461, 7.10988, 6.563860000000001, 6.354369999999999, 6.7546, 7.196689999999999, 6.44731, 5.99146, 6.74052, 7.24423, 6.67203, 6.86485, 7.1309, 7.6009, 6.6107, 7.24423, 6.9256, 7.11314, 6.86693, 5.82895, 6.85118, 6.58617, 6.85646, 5.70378, 6.2146099999999995, 6.92363, 5.67675, 6.84588, 6.86171, 6.813439999999999, 6.62936, 6.50279, 5.7589, 6.7417, 7.18917, 6.2146099999999995, 6.93245, 6.78897, 6.74759, 7.00307, 6.2146099999999995, 6.3935900000000006, 7.09008, 7.84385, 6.73815, 6.802389999999999, 6.57647, 6.78672, 6.39693, 6.9707300000000005, 8.3082, 7.1309, 7.17012, 6.593039999999999, 6.90575, 6.62007, 6.86693, 6.259580000000001, 6.41999, 6.90575, 5.52146, 6.907760000000001, 7.43838, 6.64509, 7.09008, 6.39693, 7.0255399999999995, 6.802389999999999, 6.77422, 7.903969999999999, 6.1944099999999995, 6.745239999999999, 6.80461, 7.037030000000001, 7.04752, 6.08904, 6.47697, 6.65286, 6.76388, 6.90575, 6.70073, 6.802389999999999, 6.87626, 6.90575, 7.1507, 7.07834, 7.21082, 6.52942, 6.701960000000001, 6.8426800000000005, 6.0282800000000005, 6.3207699999999996, 6.69827, 6.24611, 6.57786, 6.18826, 6.975410000000001, 7.16085, 6.30992, 6.593039999999999, 6.83303, 7.61874, 6.48158, 5.99146, 6.44095, 6.99485, 6.85646, 6.907760000000001, 6.8384100000000005, 6.79122, 5.01064, 6.551080000000001, 6.6695, 7.279319999999999, 6.57925, 6.813439999999999, 6.30992, 6.68461, 6.47389, 6.802389999999999, 6.785589999999999, 6.45362, 7.313219999999999, 6.551080000000001, 6.745239999999999, 7.29097, 5.8861, 6.98008, 6.802389999999999, 7.20786, 6.802389999999999, 6.983789999999999, 6.75926, 6.68461, 6.55962, 6.8977, 6.05912, 6.90575, 7.4570300000000005, 7.1309, 6.85646, 6.566669999999999, 6.829789999999999, 6.85646, 6.79347, 6.643789999999999, 6.77422, 7.90101, 6.32794, 6.25767, 7.81883, 6.966019999999999, 6.33328, 6.2146099999999995, 6.77422, 5.65249, 6.8384100000000005, 6.62007, 6.813439999999999, 6.551080000000001, 6.920669999999999, 7.195189999999999, 6.62007, 6.745239999999999, 6.3315, 6.69332, 6.745239999999999, 6.90575, 7.0396600000000005, 6.90575, 5.8260000000000005, 6.07535, 6.30992, 6.96885, 6.47697, 6.39693, 7.24423, 7.12367, 7.17012, 6.60394, 6.18415, 6.68461, 6.44413, 6.4677, 6.72623, 6.2146099999999995, 6.47697, 6.907760000000001, 6.4552, 7.1546199999999995, 6.39693, 7.37776, 7.18917, 6.10925, 6.5903, 7.136480000000001, 5.95584, 7.03878, 6.461469999999999, 6.697030000000001, 5.9839400000000005, 6.66568, 6.2146099999999995, 6.56526, 6.51471, 5.61677, 6.49375, 7.06048, 6.715380000000001, 6.10925, 6.95655, 7.1309, 6.95655, 6.90575, 6.76273, 6.311730000000001, 7.1507, 6.317159999999999, 7.00307, 6.29157, 6.86693, 6.68461, 6.90575, 6.95655, 7.17012, 7.0255399999999995, 6.86171, 7.495539999999999, 6.49224, 6.90575, 6.8865300000000005, 7.57353, 6.602589999999999, 6.35611, 6.85646, 5.8579300000000005, 6.30992, 6.23048, 6.5467900000000006, 6.530880000000001, 6.802389999999999, 7.6009, 6.55962, 6.46459, 6.834110000000001, 7.313219999999999, 6.802389999999999, 6.7334, 6.18415, 6.66441, 6.05209, 7.251339999999999, 5.87774, 6.802389999999999, 7.43838, 6.35957, 6.43775, 6.5820300000000005, 6.768489999999999, 7.17012, 6.68461, 5.6733199999999995, 6.90575, 7.281389999999999, 7.17702, 6.90575, 6.95845, 6.44572, 5.84354, 6.583410000000001, 6.91672, 6.46925, 6.90575, 8.229510000000001, 7.027310000000001, 6.551080000000001, 6.84055, 7.136480000000001, 6.71174, 6.787839999999999, 6.74288, 7.0934, 7.200419999999999, 6.83087, 7.37776, 6.79122, 6.67203, 6.55393, 6.39693, 7.46737, 6.802389999999999, 7.165489999999999, 6.62007, 6.90575, 7.0255399999999995, 7.70661, 6.47389, 6.35957, 6.07535, 6.907760000000001, 5.99894, 7.1107, 6.593039999999999, 6.30992, 7.20786, 6.43775, 6.556780000000001, 6.83518, 6.77878, 6.966019999999999, 6.95273, 6.3716099999999996, 6.745239999999999, 6.43133, 6.907760000000001, 6.68461, 6.64898, 6.28972, 7.00307, 6.2146099999999995, 6.66058, 6.967910000000001, 7.016610000000001, 6.68461, 7.09008, 6.85646, 6.77765, 6.90575, 5.66988, 7.09008, 6.53379, 6.84801, 6.90575, 5.99146, 7.21891, 6.30992, 5.8999, 6.90575, 6.745239999999999, 7.07242, 7.6009, 5.8861, 6.817830000000001, 6.23637, 7.346010000000001, 6.6592899999999995, 7.46737, 6.975410000000001, 6.79122, 6.719010000000001, 6.720219999999999, 6.90575, 6.90575, 6.68336, 6.892639999999999, 6.86485, 6.947939999999999, 6.955589999999999, 7.216710000000001, 6.90575, 6.65286, 5.78383, 6.551080000000001, 5.66988, 7.0255399999999995, 7.04752, 6.3935900000000006, 6.807930000000001, 6.74288, 6.802389999999999, 6.4599, 6.354369999999999, 6.2146099999999995, 6.18208, 7.398789999999999, 7.37776, 7.35883, 6.47697, 7.18463, 6.745239999999999, 7.05876, 6.694560000000001, 6.84588, 6.68461, 7.64969, 6.59578, 7.027310000000001, 6.715380000000001, 6.04025, 5.84644, 6.2146099999999995, 6.88857, 6.507280000000001, 6.23441, 7.098380000000001, 6.2804, 7.6256, 6.633319999999999, 6.6346300000000005, 7.195189999999999, 5.76205, 5.68698, 6.43455, 6.52649, 6.49527, 6.51915, 7.54961, 6.1203, 7.09008, 7.00307, 5.7365699999999995, 6.36475, 5.7462, 6.77422, 6.10925, 6.73459, 7.1293, 6.49224, 5.7365699999999995, 6.28413, 7.17012, 6.2146099999999995, 6.90575, 6.6515699999999995, 6.56948, 6.80461, 6.03787, 5.47227, 7.313219999999999, 6.11589, 6.68461, 6.2146099999999995, 6.72743, 7.09008, 5.96615, 8.26873, 6.17794, 6.3935900000000006, 7.12287, 7.04752, 6.43775, 5.95324, 6.6796, 6.758089999999999, 6.68461, 6.30992, 5.70378, 6.90575, 7.495539999999999, 6.84588, 6.745239999999999, 6.21261, 7.251339999999999, 6.10032, 8.048789999999999, 7.313219999999999, 6.802389999999999, 6.745239999999999, 7.17012, 6.907760000000001, 6.90575, 6.551080000000001, 5.82305, 6.90575, 7.17012, 5.7365699999999995, 6.2441699999999996, 5.64191, 8.08641, 5.59842, 7.08171, 6.9594, 6.97354, 6.21261, 7.30653, 6.55962, 6.58617, 6.74406, 7.56008, 6.1944099999999995, 7.408530000000001, 6.61338, 6.01616, 6.32794, 7.18007, 6.74052, 6.47697, 6.95655, 6.95655, 6.58617, 5.61313, 6.66568, 6.85646, 6.44572, 7.313219999999999, 7.1309, 6.62672, 5.99146, 6.18826, 5.59842, 6.23441, 6.49224, 6.821110000000001, 6.56526, 6.47697, 6.813439999999999, 7.43838, 7.2717, 5.7462, 6.056780000000001, 6.30262, 6.38351, 6.551080000000001, 5.8944, 5.45959, 6.43775, 6.90575, 6.53233, 5.84932, 6.61874, 6.06843, 6.1203, 6.06843, 7.88231, 6.90575, 6.7569300000000005, 5.7651900000000005, 6.938280000000001, 7.08255, 6.41346, 5.53339, 6.882439999999999, 7.37776, 6.44413, 6.90575, 6.51471, 7.2998, 6.5439099999999994, 6.551080000000001, 6.49375, 6.90575, 7.35372, 7.135689999999999, 7.46737, 5.7365699999999995, 6.63595, 6.802389999999999, 7.346010000000001, 5.76832, 6.90575, 6.86693, 7.1309, 5.78383, 6.829789999999999, 6.65286, 6.7334, 5.5797300000000005, 7.2998, 6.65415, 6.9256, 6.90575, 6.39693, 6.52209, 6.3699, 6.770789999999999, 6.39693, 6.49072, 6.02345, 7.32251, 6.13123, 6.29711, 7.04752, 6.799060000000001, 6.272880000000001, 6.23832, 5.79606, 6.354369999999999, 6.49527, 6.57925, 6.697030000000001, 5.52146, 6.703189999999999, 7.04752, 6.65286, 6.752269999999999, 6.2146099999999995, 6.42162, 6.90575, 7.014810000000001, 6.62007, 6.85646, 6.745239999999999, 6.9256, 6.58617, 6.51471, 5.96615, 6.90575, 6.52942, 6.19644, 6.16331, 6.56526, 6.813439999999999, 7.09008, 6.19236, 5.8141300000000005, 6.49979, 6.769639999999999, 6.08677, 6.6253899999999994, 6.7369699999999995, 7.064760000000001, 6.01616, 7.11883, 6.48158, 6.51175, 5.7525699999999995, 7.46737, 6.57228, 6.551080000000001, 7.67322, 6.35957, 6.907760000000001, 6.58617, 5.8579300000000005, 7.1309, 6.57925, 6.14633, 6.43294, 6.39693, 7.46737, 6.95655, 6.54247, 6.3716099999999996, 7.293019999999999, 6.08677, 7.64969, 6.95655, 8.13153, 6.3613, 6.10925, 6.551080000000001, 6.907760000000001, 6.97261, 6.907760000000001, 6.43775, 6.3243599999999995, 6.83518, 6.993930000000001, 6.6567300000000005, 6.712960000000001, 6.984719999999999, 7.062189999999999, 6.907760000000001, 6.77992, 7.195189999999999, 7.185389999999999, 6.16331, 6.07993, 6.01616, 6.72743, 6.33683, 6.70073, 7.20786, 7.0103100000000005, 6.3716099999999996, 6.551080000000001, 7.1309, 6.7334, 7.495539999999999, 6.24028, 6.354369999999999, 6.90575, 6.551080000000001, 7.00307, 6.85013, 7.0255399999999995, 6.39693, 7.495539999999999, 6.768489999999999, 6.23441, 6.461469999999999, 6.5395900000000005, 6.907760000000001, 6.62007, 6.05209, 6.28413, 6.126869999999999, 7.12287, 6.745239999999999, 6.30992, 7.21744, 6.39693, 6.49072, 6.47697, 6.05209, 6.47697, 7.24423, 6.802389999999999, 7.09008, 6.44572, 7.00307, 6.62007, 6.966019999999999, 6.721430000000001, 6.62936, 6.813439999999999, 6.551080000000001, 6.28227, 7.64969, 6.9575, 7.3696, 6.461469999999999, 6.18002, 6.90575, 7.20786, 6.78333, 6.57647, 6.5903, 7.00307, 6.74993, 6.57925, 6.907760000000001, 7.18917, 6.16331, 6.59578, 6.802389999999999, 6.272880000000001, 7.014810000000001, 6.745239999999999, 6.2146099999999995, 6.43615, 6.64509, 6.608, 6.68461, 6.58617, 6.62007, 6.19032, 7.00307, 5.96358, 6.95655, 6.12249, 6.62007, 7.313219999999999, 6.39693, 7.09008, 6.83303, 6.98101, 6.6871100000000006, 7.09008, 6.81014, 7.37776, 6.51767, 6.85435, 6.14204, 7.64969, 7.91936, 6.907760000000001, 6.9256, 6.6733, 7.5574699999999995, 6.13773, 6.67203, 6.30992, 6.47697, 6.8956800000000005, 6.56948, 6.33328, 6.802389999999999, 6.9707300000000005, 8.00637, 6.65286, 6.57368, 5.5797300000000005, 5.70711, 6.57786, 6.92363, 6.57368, 7.37776, 6.2146099999999995, 7.408530000000001, 7.1155800000000005, 7.91936, 7.09008, 7.37776, 7.1309, 6.58617, 6.14633, 6.11147, 6.6592899999999995, 6.90575, 7.092569999999999, 6.86485, 5.66988, 7.57558, 7.200419999999999, 6.95655, 6.2146099999999995, 6.05209, 6.44254, 6.35957, 5.72031, 6.4599, 6.60394, 6.51471, 5.73334, 6.975410000000001, 6.39693, 7.400010000000001, 5.90808, 8.537, 6.07993, 7.36645, 5.9269300000000005, 6.67708, 6.99942, 6.61338, 7.64969, 6.68461, 6.57925, 6.2186, 7.09008, 7.1082399999999994, 6.83518, 7.09008, 6.58617, 5.8861, 6.90575, 6.43615, 6.84162, 7.313219999999999, 6.68461, 6.55962, 6.07993, 6.3952599999999995, 6.633319999999999, 6.42162, 7.09008, 6.13123, 7.313219999999999, 6.30992, 6.79122, 6.720219999999999, 6.66823, 7.2861899999999995, 6.643789999999999, 6.802389999999999, 5.66988, 6.703189999999999, 6.39693, 5.98896, 7.620710000000001, 6.06611, 6.0822199999999995, 6.77878, 6.57786, 5.43808, 7.09008, 7.6009, 6.28972, 6.48768, 5.8141300000000005, 6.68461, 6.41182, 7.37776, 7.525639999999999, 6.74993, 6.72623, 7.09008, 7.25347, 7.585789999999999, 6.45362, 6.354369999999999, 6.984719999999999, 6.90575, 6.937310000000001, 6.907760000000001, 7.0775, 7.346010000000001, 7.027310000000001, 6.907760000000001, 6.9489, 6.907760000000001, 6.3315, 7.495539999999999, 6.01127, 6.802389999999999, 6.745239999999999, 6.58617, 6.90575, 6.633319999999999, 6.80572, 6.2480400000000005, 6.2634, 6.31355, 7.35819, 6.86485, 6.49677, 6.68461, 6.633319999999999, 7.30317, 6.95655, 6.907760000000001, 5.742999999999999, 6.04025, 6.39693, 7.313219999999999, 6.90575, 7.09008, 6.47697, 7.196689999999999, 6.47697, 6.30262, 6.745239999999999, 7.07412, 6.354369999999999, 6.10925, 6.68461, 7.42357, 6.768489999999999, 6.95655, 6.715380000000001, 6.7901, 6.56244, 6.9828600000000005, 6.253830000000001, 7.02465, 6.49224, 6.49979, 6.27099, 5.8861, 6.57228, 7.393260000000001, 6.829789999999999, 6.32794, 6.28786, 5.9839400000000005, 6.68461, 5.84354, 6.05209, 6.62007, 7.12287, 6.2146099999999995, 6.84162, 7.00307, 6.2146099999999995, 6.983789999999999, 6.35611, 5.93225, 6.17379, 6.95655, 6.39693, 6.88755, 7.04316, 6.90575, 6.84162, 6.45362, 6.83518, 5.273, 6.85646, 6.46925, 5.99146, 6.62007, 6.2186, 7.00307, 6.1717, 5.99146, 6.22654, 6.633319999999999, 6.77308, 7.1107, 6.95655, 6.967910000000001, 6.995769999999999, 6.66568, 6.594410000000001, 6.90575, 6.5439099999999994, 6.62007, 6.60665, 7.04752, 7.062189999999999, 7.313219999999999, 7.04752, 7.0884100000000005, 6.937310000000001, 6.90575, 6.23441, 6.47697, 6.25767, 6.05209, 6.2146099999999995, 6.551080000000001, 6.90575, 7.09008, 6.68461, 6.2146099999999995, 6.386880000000001, 6.44413, 6.58617, 6.10925, 6.90073, 6.745239999999999, 7.2233, 6.8773, 5.8579300000000005, 6.813439999999999, 6.86693, 7.037030000000001, 6.36303, 6.40523, 6.2146099999999995, 6.17379, 7.6009, 6.30992, 6.685860000000001, 5.99146, 6.38856, 6.47697, 7.46737, 6.551080000000001, 6.9226399999999995, 6.87213, 6.73102, 6.30992, 5.19296, 7.45298, 5.72359, 6.39693, 7.1309, 6.882439999999999, 5.95584, 5.940169999999999, 6.7093, 6.90675, 6.551080000000001, 6.9147300000000005, 6.85646, 6.563860000000001, 6.381819999999999, 5.78996, 6.769639999999999, 6.73102, 7.06133, 6.68461, 6.2146099999999995, 6.62007, 6.912739999999999, 6.4708, 6.2634, 6.41017, 7.08171, 6.90575, 7.6009, 6.556780000000001, 6.52062, 6.907760000000001, 6.60935, 5.8141300000000005, 6.30992, 6.51471, 6.9828600000000005, 6.85646, 6.30992, 6.39693, 7.338889999999999, 6.22654, 6.26149, 6.84055, 6.311730000000001, 7.01392, 6.49224, 6.2205900000000005, 7.44659, 5.94803, 7.388330000000001, 6.85118, 7.24423, 6.632000000000001, 6.65544, 6.90575, 7.10906, 6.3081, 6.944089999999999, 6.83518, 6.222580000000001, 6.84588, 7.17012, 6.52503, 6.2860000000000005, 6.80128, 6.07993 ], "xaxis": "x2", "y": [ "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "no", "no", "no", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "no", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "no", "yes", "no", "no", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "no", "yes", "no", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "no", "no", "yes", "no", "yes", "no", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "no", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "no", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "no", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "no", "yes", "no", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "no", "yes", "no", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "no", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "no", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "no", "no", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "no", "yes", "no", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "no", "no", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "no", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "no", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "no", "no", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "no", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "no", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "no", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "no", "yes", "yes", "yes", "no", "no", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "no", "yes", "no", "yes", "no", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "no", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "no", "no", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "no", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "no", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "no", "no", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "no", "yes", "yes", "no", "no", "yes", "no", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "no", "yes", "yes", "no", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "yes", "no", "no", "yes", "no", "yes", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "no", "yes", "yes", "no", "no", "no", "no", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "no", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "yes", "no", "no", "yes", "yes", "yes", "no", "yes", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "yes", "no", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "yes" ], "yaxis": "y2" } ], "layout": { "annotations": [ { "font": { "size": 16 }, "showarrow": false, "text": "BoxPlot", "x": 0.225, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 16 }, "showarrow": false, "text": "ViolinPlot", "x": 0.775, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" } ], "margin": { "t": 20 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "barpolar" } ], "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" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "colorscale": { "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" ] ], "sequential": [ [ 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, "#f0f921" ] ], "sequentialminus": [ [ 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, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "zerolinecolor": "white", "zerolinewidth": 2 } } }, "xaxis": { "anchor": "y", "domain": [ 0, 0.45 ], "showgrid": true, "title": { "text": "Wage (log)" } }, "xaxis2": { "anchor": "y2", "domain": [ 0.55, 1 ] }, "yaxis": { "anchor": "x", "domain": [ 0, 1 ], "showgrid": true, "title": { "text": "Married+Gender" } }, "yaxis2": { "anchor": "x2", "domain": [ 0, 1 ], "matches": "y", "showticklabels": false } } }, "text/html": [ "
\n", " \n", " \n", "
\n", " \n", "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "boxbygender=go.Box(y=train.sex, x=train.lwage, name=\"Gender\",legendgroup=\"gender\",orientation=\"h\",marker_color=\"green\")\n", "boxbymarried=go.Box(y=train.married, x=train.lwage, name=\"Married\",legendgroup=\"married\",orientation=\"h\",marker_color=\"blue\")\n", "violbygender=go.Violin(y=train.sex, x=train.lwage, name=\"Gender\",legendgroup=\"gender\",box_visible=True,\n", " orientation=\"h\",marker_color=\"green\")\n", "violbymarried=go.Violin(y=train.married, x=train.lwage, name=\"Married\",legendgroup=\"married\",box_visible=True,\n", " orientation=\"h\",marker_color=\"blue\")\n", "\n", "fig = make_subplots(rows=1, cols=2,subplot_titles=(\"BoxPlot\",\"ViolinPlot\"),shared_yaxes=True)\n", "fig.add_trace(boxbygender,row=1,col=1)\n", "fig.add_trace(boxbymarried,row=1,col=1)\n", "\n", "fig.add_trace(violbygender,row=1,col=2)\n", "fig.add_trace(violbymarried,row=1,col=2)\n", "fig.update_layout(xaxis_title=\"Wage (log)\",yaxis_title=\"Married+Gender\",\n", " xaxis_showgrid=True, yaxis_showgrid=True,\n", " margin_t=20\n", " )" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### And this would be same data shown using bean plots and pirate plots:" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "fillcolor": "hsla(246, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(246, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.4, "legendgroup": "female", "line": { "color": "hsla(246, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(246, 70%, 70%,1)", "line": { "color": "hsla(246, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 1, "size": 9, "symbol": "line-ns" }, "meanline": { "color": "hsla(246, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage female", "orientation": "h", "pointpos": 0, "points": false, "scalegroup": "female", "scalemode": "count", "showlegend": true, "side": "both", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.55536, 6.39693, 6.907760000000001, 6.50279, 6.614730000000001, 6.30992, 6.62007, 6.17379, 6.2146099999999995, 6.65286, 6.30992, 6.48158, 6.907760000000001, 5.8999, 6.05209, 5.73334, 6.3952599999999995, 6.43775, 6.907760000000001, 5.463830000000001, 5.43808, 6.77422, 6.47697, 5.68358, 6.2146099999999995, 6.10925, 6.6783399999999995, 7.1309, 6.39693, 6.77422, 5.96615, 5.90808, 6.39693, 5.0814, 7.09008, 4.605169999999999, 6.7901, 6.65286, 6.86485, 6.92461, 5.99146, 6.85646, 5.4161, 6.30079, 5.76832, 6.16542, 5.93489, 7.04752, 6.19644, 5.7525699999999995, 6.318969999999999, 5.9454199999999995, 6.4677, 6.768489999999999, 6.2480400000000005, 6.33328, 6.48311, 7.00307, 5.8999, 6.62007, 6.36475, 6.65286, 5.7525699999999995, 6.025869999999999, 6.20456, 6.31536, 5.95324, 6.1070199999999994, 6.05209, 5.9269300000000005, 5.51745, 6.715380000000001, 6.85646, 6.85646, 6.32972, 6.802389999999999, 6.16331, 6.95655, 6.2634, 6.3716099999999996, 6.10925, 6.93537, 6.56244, 6.23245, 7.1309, 6.57925, 6.30992, 6.34388, 5.34711, 7.279319999999999, 6.58064, 6.33683, 6.5582, 6.354369999999999, 5.95324, 5.9454199999999995, 5.64545, 5.7525699999999995, 6.28972, 6.2952699999999995, 6.05209, 6.551080000000001, 6.621410000000001, 5.82305, 6.12905, 6.02345, 5.883319999999999, 6.907760000000001, 5.59842, 6.58617, 6.901739999999999, 6.10925, 5.8579300000000005, 6.17379, 5.81711, 6.44254, 6.30079, 6.745239999999999, 6.7901, 6.51471, 6.17379, 6.07993, 6.11589, 5.74939, 6.33328, 6.386880000000001, 7.0255399999999995, 5.8141300000000005, 5.86647, 6.01616, 6.278519999999999, 6.30992, 6.10925, 6.785589999999999, 6.47697, 7.04752, 6.04025, 6.39693, 6.36819, 6.43775, 5.940169999999999, 6.35957, 6.2146099999999995, 6.253830000000001, 6.1025599999999995, 6.1025599999999995, 6.15698, 6.96885, 6.885510000000001, 6.1717, 5.958419999999999, 5.98645, 5.8579300000000005, 6.715380000000001, 5.8861, 6.10925, 6.65286, 6.39693, 5.65948, 5.940169999999999, 6.26149, 6.551080000000001, 6.29157, 5.50126, 6.77422, 5.82008, 6.4708, 6.15698, 5.8999, 5.99146, 6.33328, 6.9707300000000005, 6.6567300000000005, 6.745239999999999, 6.93049, 6.849069999999999, 6.1070199999999994, 6.712960000000001, 5.97635, 6.29157, 6.86901, 6.0282800000000005, 6.39859, 5.42935, 6.6592899999999995, 6.907760000000001, 6.47697, 6.551080000000001, 6.68461, 6.45834, 5.8141300000000005, 6.88755, 6.23441, 6.463030000000001, 6.65286, 6.39693, 5.8141300000000005, 6.3952599999999995, 6.06379, 5.42053, 5.8861, 6.52209, 5.8861, 7.20786, 6.05209, 5.52146, 5.52146, 6.06379, 6.2205900000000005, 6.0822199999999995, 7.04752, 6.3952599999999995, 6.70073, 6.07993, 6.46925, 6.22654, 6.39693, 6.58755, 6.8254600000000005, 5.99146, 6.62007, 6.62007, 6.29895, 5.8579300000000005, 6.745239999999999, 5.93225, 6.49072, 5.78383, 6.35957, 5.82008, 6.04025, 6.39693, 6.59715, 5.01064, 6.77422, 6.30992, 5.5606800000000005, 6.8426800000000005, 6.30992, 6.602589999999999, 6.424869999999999, 6.259580000000001, 6.2634, 5.97635, 6.04025, 6.07993, 6.551080000000001, 6.17587, 5.8693, 6.43775, 6.73459, 5.70378, 6.49224, 6.29157, 6.2146099999999995, 6.63068, 6.682110000000001, 6.19236, 5.68698, 6.12249, 6.14847, 5.88053, 6.10925, 6.38856, 5.86079, 5.99894, 5.39363, 5.96615, 6.52209, 5.96615, 5.9135, 6.6896, 6.14419, 6.692080000000001, 6.013719999999999, 6.224559999999999, 6.07304, 6.2146099999999995, 6.802389999999999, 5.95324, 6.43615, 5.8579300000000005, 6.33683, 5.97889, 6.2146099999999995, 6.34388, 7.18917, 6.1070199999999994, 6.30992, 6.36819, 6.23637, 5.52146, 6.47697, 6.36303, 6.748760000000001, 6.633319999999999, 6.04025, 5.7525699999999995, 6.47697, 6.0330900000000005, 5.8861, 5.82305, 7.0422899999999995, 5.39363, 5.43808, 5.95324, 5.8999, 6.2146099999999995, 6.2804, 6.39693, 5.89715, 6.06611, 6.2146099999999995, 6.0845, 5.48064, 6.3952599999999995, 6.27099, 6.58617, 6.2146099999999995, 6.73102, 6.035480000000001, 6.206580000000001, 6.39859, 6.551080000000001, 6.43775, 6.02345, 5.9269300000000005, 6.72743, 6.2634, 6.646389999999999, 5.5797300000000005, 6.07993, 5.4161, 6.47697, 5.50126, 6.583410000000001, 6.44731, 5.82895, 6.2146099999999995, 6.73815, 6.802389999999999, 6.77422, 6.1944099999999995, 6.70073, 6.0282800000000005, 6.593039999999999, 6.85646, 5.01064, 6.745239999999999, 6.85646, 6.79347, 5.65249, 6.39693, 6.317159999999999, 6.35611, 5.8579300000000005, 6.18415, 6.05209, 5.84354, 6.46925, 5.99894, 6.745239999999999, 6.77765, 6.30992, 5.8999, 5.8861, 7.216710000000001, 6.65286, 6.2146099999999995, 6.88857, 5.76205, 5.68698, 6.1203, 5.7365699999999995, 5.7365699999999995, 6.2146099999999995, 5.47227, 6.2146099999999995, 7.04752, 6.30992, 7.17012, 6.551080000000001, 5.7365699999999995, 5.64191, 6.21261, 6.47697, 6.95655, 5.61313, 6.62672, 6.23441, 5.7462, 6.056780000000001, 5.8944, 5.84932, 6.06843, 5.53339, 6.49375, 5.7365699999999995, 5.76832, 5.5797300000000005, 6.23832, 5.79606, 6.19644, 6.19236, 6.6253899999999994, 5.7525699999999995, 5.8579300000000005, 6.14633, 6.712960000000001, 6.16331, 6.3716099999999996, 6.62007, 6.30992, 6.47697, 6.62007, 6.551080000000001, 6.18002, 6.745239999999999, 5.96358, 6.39693, 6.14204, 5.5797300000000005, 6.11147, 5.66988, 5.73334, 5.90808, 5.9269300000000005, 6.2186, 5.8861, 6.68461, 6.643789999999999, 5.66988, 6.39693, 6.06611, 6.57786, 5.43808, 5.8141300000000005, 6.3315, 6.86485, 6.04025, 6.7901, 6.56244, 6.253830000000001, 6.57228, 6.05209, 5.93225, 5.273, 6.2186, 6.1717, 6.47697, 6.05209, 5.8579300000000005, 6.86693, 6.36303, 5.99146, 5.19296, 6.39693, 5.95584, 6.7093, 6.62007, 6.41017, 6.556780000000001, 5.8141300000000005, 6.30992, 6.39693, 6.26149, 5.94803, 6.65544, 6.3081 ], "xaxis": "x", "y0": "female", "yaxis": "y" }, { "box": { "visible": false }, "fillcolor": "rgba(0, 0, 0, 0)", "hoverinfo": "x", "hoveron": "points", "jitter": 0.4, "legendgroup": "female", "line": { "color": "rgba(0, 0, 0, 0)", "width": 0 }, "marker": { "color": "hsla(246, 70%, 70%,1)", "line": { "color": "hsla(246, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 1, "size": 9, "symbol": "line-ns" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "all", "scalegroup": "female", "showlegend": false, "side": "both", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.55536, 6.39693, 6.907760000000001, 6.50279, 6.614730000000001, 6.30992, 6.62007, 6.17379, 6.2146099999999995, 6.65286, 6.30992, 6.48158, 6.907760000000001, 5.8999, 6.05209, 5.73334, 6.3952599999999995, 6.43775, 6.907760000000001, 5.463830000000001, 5.43808, 6.77422, 6.47697, 5.68358, 6.2146099999999995, 6.10925, 6.6783399999999995, 7.1309, 6.39693, 6.77422, 5.96615, 5.90808, 6.39693, 5.0814, 7.09008, 4.605169999999999, 6.7901, 6.65286, 6.86485, 6.92461, 5.99146, 6.85646, 5.4161, 6.30079, 5.76832, 6.16542, 5.93489, 7.04752, 6.19644, 5.7525699999999995, 6.318969999999999, 5.9454199999999995, 6.4677, 6.768489999999999, 6.2480400000000005, 6.33328, 6.48311, 7.00307, 5.8999, 6.62007, 6.36475, 6.65286, 5.7525699999999995, 6.025869999999999, 6.20456, 6.31536, 5.95324, 6.1070199999999994, 6.05209, 5.9269300000000005, 5.51745, 6.715380000000001, 6.85646, 6.85646, 6.32972, 6.802389999999999, 6.16331, 6.95655, 6.2634, 6.3716099999999996, 6.10925, 6.93537, 6.56244, 6.23245, 7.1309, 6.57925, 6.30992, 6.34388, 5.34711, 7.279319999999999, 6.58064, 6.33683, 6.5582, 6.354369999999999, 5.95324, 5.9454199999999995, 5.64545, 5.7525699999999995, 6.28972, 6.2952699999999995, 6.05209, 6.551080000000001, 6.621410000000001, 5.82305, 6.12905, 6.02345, 5.883319999999999, 6.907760000000001, 5.59842, 6.58617, 6.901739999999999, 6.10925, 5.8579300000000005, 6.17379, 5.81711, 6.44254, 6.30079, 6.745239999999999, 6.7901, 6.51471, 6.17379, 6.07993, 6.11589, 5.74939, 6.33328, 6.386880000000001, 7.0255399999999995, 5.8141300000000005, 5.86647, 6.01616, 6.278519999999999, 6.30992, 6.10925, 6.785589999999999, 6.47697, 7.04752, 6.04025, 6.39693, 6.36819, 6.43775, 5.940169999999999, 6.35957, 6.2146099999999995, 6.253830000000001, 6.1025599999999995, 6.1025599999999995, 6.15698, 6.96885, 6.885510000000001, 6.1717, 5.958419999999999, 5.98645, 5.8579300000000005, 6.715380000000001, 5.8861, 6.10925, 6.65286, 6.39693, 5.65948, 5.940169999999999, 6.26149, 6.551080000000001, 6.29157, 5.50126, 6.77422, 5.82008, 6.4708, 6.15698, 5.8999, 5.99146, 6.33328, 6.9707300000000005, 6.6567300000000005, 6.745239999999999, 6.93049, 6.849069999999999, 6.1070199999999994, 6.712960000000001, 5.97635, 6.29157, 6.86901, 6.0282800000000005, 6.39859, 5.42935, 6.6592899999999995, 6.907760000000001, 6.47697, 6.551080000000001, 6.68461, 6.45834, 5.8141300000000005, 6.88755, 6.23441, 6.463030000000001, 6.65286, 6.39693, 5.8141300000000005, 6.3952599999999995, 6.06379, 5.42053 ], "xaxis": "x", "y0": "female", "yaxis": "y" }, { "fillcolor": "hsla(328, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(328, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.4, "legendgroup": "male", "line": { "color": "hsla(328, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(328, 70%, 70%,1)", "line": { "color": "hsla(328, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 1, "size": 9, "symbol": "line-ns" }, "meanline": { "color": "hsla(328, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage male", "orientation": "h", "pointpos": 0, "points": false, "scalegroup": "male", "scalemode": "count", "showlegend": true, "side": "both", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.99942, 5.99146, 7.67322, 7.09008, 5.61677, 6.646389999999999, 7.02643, 6.4552, 7.32975, 6.95845, 7.06902, 6.04025, 6.907760000000001, 7.91936, 6.745239999999999, 6.30079, 7.068169999999999, 6.07535, 6.7417, 7.71869, 6.882439999999999, 6.47697, 6.77878, 6.907760000000001, 6.93342, 7.06902, 6.57368, 6.829789999999999, 7.557989999999999, 6.892639999999999, 7.0255399999999995, 6.57925, 7.313219999999999, 6.47697, 7.1309, 6.551080000000001, 6.882439999999999, 6.907760000000001, 6.682110000000001, 6.39693, 6.48004, 6.60665, 7.00307, 6.10925, 5.78383, 6.94505, 6.9546399999999995, 7.17012, 7.11477, 6.993930000000001, 6.593039999999999, 6.49979, 6.5439099999999994, 6.39192, 6.51471, 6.30992, 6.30992, 7.116389999999999, 6.46925, 7.554860000000001, 6.90675, 6.85646, 5.94803, 6.90575, 6.90575, 7.408530000000001, 7.0076, 6.88857, 7.35947, 6.39693, 7.041410000000001, 6.66696, 6.30992, 7.313219999999999, 6.787839999999999, 6.90575, 6.802389999999999, 7.00307, 7.074960000000001, 7.5606, 5.99146, 6.16331, 5.94803, 6.43775, 7.282760000000001, 6.39693, 6.813439999999999, 6.694560000000001, 6.29157, 6.23048, 6.67203, 6.16331, 6.88755, 6.95655, 7.56008, 6.28227, 6.30992, 6.05912, 6.602589999999999, 7.47307, 6.2146099999999995, 6.95655, 6.90575, 6.461469999999999, 7.09008, 7.46737, 6.829789999999999, 6.60665, 6.74052, 6.745239999999999, 7.6009, 6.62007, 6.551080000000001, 6.663130000000001, 7.60589, 6.53669, 6.5582, 6.16121, 6.19236, 6.2146099999999995, 7.37776, 6.6995, 6.58617, 6.23832, 6.27476, 6.48311, 6.69084, 6.54965, 6.745239999999999, 6.882439999999999, 6.663130000000001, 5.70378, 6.7226300000000005, 7.20786, 6.802389999999999, 6.79122, 6.62007, 6.42162, 6.12249, 6.90575, 6.28227, 6.745239999999999, 6.206580000000001, 5.99146, 6.682110000000001, 6.49677, 7.408530000000001, 6.10925, 6.317159999999999, 6.2146099999999995, 6.551080000000001, 6.25575, 7.0884100000000005, 6.16331, 6.68461, 5.8999, 7.01392, 7.1107, 6.9363399999999995, 6.90575, 6.1070199999999994, 6.85646, 6.44572, 6.551080000000001, 6.84588, 8.10168, 7.31255, 5.99645, 6.90575, 6.802389999999999, 7.111510000000001, 6.2146099999999995, 6.66696, 6.907760000000001, 6.90575, 6.6592899999999995, 8.047189999999999, 6.62407, 7.0076, 6.30992, 6.17379, 6.55393, 6.24611, 7.78322, 6.563860000000001, 6.60665, 7.12448, 6.507280000000001, 6.461469999999999, 6.8977, 7.82405, 7.75148, 6.62407, 7.346010000000001, 6.2146099999999995, 7.1309, 6.51471, 5.96615, 6.84055, 7.041410000000001, 6.51471, 6.551080000000001, 7.346010000000001, 6.966019999999999, 6.90575, 7.17012, 6.5820300000000005, 7.04752, 6.354369999999999, 6.59578, 7.82405, 6.5467900000000006, 6.551080000000001, 6.39693, 6.88755, 6.39693, 6.39693, 6.65286, 6.36647, 6.622739999999999, 6.90575, 5.7525699999999995, 6.15273, 7.04752, 5.52146, 6.770789999999999, 6.907760000000001, 7.00125, 7.064760000000001, 7.00307, 6.05209, 6.745239999999999, 7.045780000000001, 6.54535, 6.37673, 6.62007, 6.907760000000001, 6.10925, 6.39693, 8.16052, 6.745239999999999, 7.03527, 6.765039999999999, 7.1309, 6.77422, 6.87213, 6.551080000000001, 6.907760000000001, 6.6567300000000005, 6.80017, 7.226210000000001, 6.10925, 6.90575, 6.70073, 7.495539999999999, 8.05516, 6.9256, 7.06987, 6.694560000000001, 6.90575, 6.43775, 6.97261, 7.29709, 7.179310000000001, 7.313219999999999, 6.7226300000000005, 6.82437, 6.715380000000001, 7.173189999999999, 6.62007, 6.77878, 6.7226300000000005, 6.85118, 6.49224, 7.313219999999999, 6.62007, 7.158510000000001, 6.818919999999999, 6.68461, 6.57647, 6.43455, 5.89715, 6.34564, 6.556780000000001, 6.7093, 6.93925, 7.00307, 6.551080000000001, 6.90575, 6.53669, 6.69084, 7.313219999999999, 6.05209, 6.90575, 6.62007, 6.4552, 6.77422, 6.87005, 6.65544, 6.42162, 5.9269300000000005, 6.317159999999999, 6.42972, 6.62007, 6.96508, 6.19236, 6.61607, 5.5606800000000005, 6.57368, 6.2634, 6.715380000000001, 7.408530000000001, 6.17379, 7.333019999999999, 6.37502, 6.16331, 6.317159999999999, 7.04752, 6.68461, 6.98008, 6.912739999999999, 6.86693, 7.3670800000000005, 6.68461, 6.90575, 6.90575, 6.62007, 6.45362, 6.49072, 6.47697, 6.9431199999999995, 6.90575, 6.10925, 6.67203, 6.7334, 7.34278, 6.802389999999999, 6.90575, 6.658010000000001, 6.9256, 6.90575, 6.91075, 6.6592899999999995, 5.8579300000000005, 6.6592899999999995, 6.16331, 7.441319999999999, 6.47851, 7.07834, 6.745239999999999, 7.20786, 6.36475, 6.63857, 7.475910000000001, 6.62007, 6.4892, 7.00307, 6.56948, 7.43838, 7.15383, 7.064760000000001, 6.88755, 7.26193, 6.23245, 6.30445, 6.715380000000001, 7.313219999999999, 7.37776, 5.8579300000000005, 6.85646, 6.2441699999999996, 7.26193, 6.90575, 6.907760000000001, 6.272880000000001, 6.66568, 7.481560000000001, 7.04752, 6.61338, 6.40688, 6.73815, 5.8579300000000005, 7.57558, 6.83518, 6.38856, 6.768489999999999, 6.90575, 6.86693, 6.39693, 6.34739, 7.1507, 6.58617, 7.282760000000001, 7.00307, 6.66058, 6.58064, 6.90575, 6.10925, 6.64249, 6.715380000000001, 6.62007, 7.1309, 6.51471, 5.99146, 6.95655, 6.65286, 6.16331, 6.24611, 7.1309, 7.1333, 7.24423, 6.04025, 6.86901, 6.802389999999999, 6.70073, 6.1203, 6.90575, 7.313219999999999, 6.54822, 6.95655, 7.50108, 6.39693, 6.551080000000001, 7.07918, 5.8579300000000005, 5.70378, 6.7369699999999995, 7.745, 6.87213, 5.89715, 6.39693, 6.30628, 6.8773, 6.708080000000001, 6.52942, 6.818919999999999, 7.041410000000001, 6.06611, 6.882439999999999, 6.94986, 6.703189999999999, 6.37502, 5.70378, 7.03615, 7.37776, 5.66988, 6.907760000000001, 6.882439999999999, 6.752269999999999, 6.48158, 6.47697, 7.04752, 6.802389999999999, 6.984719999999999, 5.9269300000000005, 6.49224, 6.385190000000001, 7.1309, 7.663880000000001, 7.07242, 6.907760000000001, 6.43775, 8.05516, 6.807930000000001, 6.785589999999999, 6.907760000000001, 6.403569999999999, 6.035480000000001, 7.24423, 6.05209, 7.338889999999999, 7.0255399999999995, 7.00307, 5.99146, 6.33683, 6.07993, 7.488289999999999, 6.51175, 5.7365699999999995, 5.7365699999999995, 6.90575, 6.697030000000001, 6.354369999999999, 6.802389999999999, 6.62007, 6.68461, 6.68835, 5.8260000000000005, 6.85646, 6.44572, 6.95655, 7.20786, 6.3716099999999996, 6.8977, 6.47697, 6.802389999999999, 6.90575, 6.84055, 7.676010000000001, 6.85646, 6.43775, 7.20786, 6.89163, 7.0121199999999995, 6.85646, 6.77422, 6.54965, 6.05209, 6.697030000000001, 6.90575, 6.68461, 6.62007, 7.24423, 6.36819, 6.8844899999999996, 6.62007, 6.745239999999999, 6.19236, 6.39693, 6.85646, 6.7334, 5.9269300000000005, 5.98896, 6.48004, 6.55393, 6.5903, 7.02643, 7.15305, 6.19236, 6.43615, 6.6871100000000006, 6.42162, 6.06379, 6.93537, 7.09008, 6.802389999999999, 6.47697, 6.2634, 7.79028, 6.10032, 6.0282800000000005, 7.408530000000001, 6.6174, 6.907760000000001, 6.90575, 5.99146, 6.2441699999999996, 6.00141, 6.39693, 6.79122, 6.9196800000000005, 6.9147300000000005, 6.90575, 6.408530000000001, 6.646389999999999, 6.746410000000001, 6.30992, 6.42972, 6.18826, 6.5467900000000006, 7.522939999999999, 6.7334, 6.07993, 6.907760000000001, 6.90575, 7.04752, 6.66185, 6.47697, 7.23418, 6.54247, 6.753439999999999, 6.51471, 7.034389999999999, 6.65286, 7.262630000000001, 6.47697, 7.20786, 6.90575, 6.30992, 6.984719999999999, 6.30445, 6.05209, 6.34564, 6.95655, 6.49224, 6.62007, 5.82895, 6.39693, 6.06146, 6.43775, 6.03787, 6.3952599999999995, 6.22654, 7.144410000000001, 6.90575, 6.91374, 5.70378, 7.6009, 6.5903, 7.1592899999999995, 6.57786, 6.6783399999999995, 6.72383, 6.41182, 6.53233, 6.907760000000001, 6.7334, 7.236339999999999, 6.20456, 6.10925, 6.715380000000001, 6.72743, 6.551080000000001, 7.084230000000001, 6.97635, 7.20786, 6.685860000000001, 6.8977, 7.00307, 6.35089, 5.70378, 6.59167, 6.461469999999999, 6.984719999999999, 6.53233, 6.646389999999999, 6.39693, 7.459910000000001, 6.19848, 7.0255399999999995, 7.1309, 6.745239999999999, 6.22654, 6.10925, 7.08171, 6.64249, 7.49332, 7.495539999999999, 7.1546199999999995, 7.1309, 6.745239999999999, 6.18415, 5.82895, 6.10925, 6.58617, 6.48158, 6.20456, 7.313219999999999, 6.94022, 6.90575, 6.41836, 6.10925, 7.48717, 7.0193, 6.983789999999999, 6.633319999999999, 6.29157, 7.49109, 6.91672, 6.90575, 6.51323, 6.715380000000001, 5.8141300000000005, 6.47697, 7.37212, 6.646389999999999, 7.0184, 6.84055, 7.24423, 6.834110000000001, 7.09008, 6.52942, 7.4553, 7.00307, 6.37502, 7.24423, 6.48158, 6.68461, 6.10925, 6.90575, 6.90575, 7.24423, 7.75577, 6.82437, 6.43775, 6.18415, 6.43775, 6.90575, 7.1107, 6.44572, 6.42162, 6.769639999999999, 6.93245, 6.818919999999999, 6.551080000000001, 6.58617, 6.96508, 6.44572, 6.7093, 6.83195, 6.28972, 7.1082399999999994, 7.135689999999999, 6.49072, 7.251339999999999, 8.51719, 6.807930000000001, 7.14756, 7.33368, 6.77422, 6.60394, 6.68461, 7.1309, 5.99146, 7.201169999999999, 5.99146, 6.10925, 6.68461, 6.39693, 6.927560000000001, 6.85751, 6.95655, 6.08677, 7.24423, 7.1309, 6.17587, 6.802389999999999, 6.30992, 6.36303, 5.8999, 6.77422, 6.2860000000000005, 6.828710000000001, 6.47697, 6.72743, 6.55251, 6.29157, 5.59842, 6.62407, 5.9814099999999994, 6.76273, 7.06902, 5.9269300000000005, 6.80128, 7.313219999999999, 6.966019999999999, 6.6592899999999995, 6.39693, 6.57786, 6.62007, 6.65286, 6.293419999999999, 5.4161, 5.87493, 6.79122, 6.987489999999999, 6.30992, 6.55536, 7.09008, 6.2146099999999995, 7.04752, 6.90575, 6.10925, 6.6783399999999995, 6.39693, 7.259119999999999, 7.43838, 6.47697, 7.1309, 6.77422, 6.2634, 6.739339999999999, 7.46737, 6.47697, 6.90575, 7.279319999999999, 6.815639999999999, 7.1309, 6.65028, 6.27099, 7.17012, 6.354369999999999, 6.29157, 6.802389999999999, 6.602589999999999, 6.47697, 6.63857, 6.58755, 6.77422, 6.907760000000001, 7.09589, 6.882439999999999, 5.45959, 6.05209, 7.67322, 6.85646, 5.8579300000000005, 5.78074, 6.2146099999999995, 7.2957399999999994, 5.84354, 6.802389999999999, 6.58064, 6.2634, 7.00307, 6.90575, 7.21891, 7.503839999999999, 6.45677, 6.950810000000001, 5.97126, 6.23048, 6.15273, 7.57558, 6.96035, 6.3716099999999996, 6.2146099999999995, 6.7334, 6.86066, 6.378430000000001, 6.48004, 7.00307, 6.8200199999999995, 6.47697, 6.90575, 7.39388, 7.4787300000000005, 6.2146099999999995, 6.802389999999999, 6.43775, 7.24065, 5.70378, 6.13773, 6.3952599999999995, 7.1025, 7.04752, 7.09008, 6.77992, 6.9256, 6.035480000000001, 7.22766, 7.475339999999999, 6.62007, 5.72031, 6.272880000000001, 6.01616, 6.27099, 7.91936, 6.2146099999999995, 6.85646, 6.354369999999999, 6.2634, 6.51471, 6.92166, 6.253830000000001, 5.9269300000000005, 6.745239999999999, 6.30992, 7.3651800000000005, 6.24998, 6.893660000000001, 6.53669, 6.43615, 7.04752, 6.30992, 6.39693, 6.1334, 6.765039999999999, 6.85646, 6.892639999999999, 6.95655, 5.99146, 6.43775, 6.90575, 6.81124, 6.966019999999999, 6.8865300000000005, 6.62007, 7.334980000000001, 6.72743, 6.93245, 7.27031, 7.03878, 7.0255399999999995, 6.83518, 6.77992, 6.68461, 7.696210000000001, 6.53669, 6.52942, 6.126869999999999, 6.54965, 6.715380000000001, 7.31122, 5.8693, 6.90575, 6.0282800000000005, 6.30992, 6.23245, 6.31536, 7.486610000000001, 6.52942, 6.8426800000000005, 6.14204, 6.88755, 6.62007, 6.34564, 6.44413, 6.62007, 5.99146, 6.93245, 7.37776, 6.907760000000001, 5.99146, 7.18917, 6.7093, 6.75926, 6.3315, 6.5439099999999994, 6.1717, 7.9459100000000005, 6.77422, 7.424760000000001, 6.45362, 5.70378, 6.43775, 6.90575, 7.6009, 6.90575, 7.46737, 6.694560000000001, 6.907760000000001, 8.16052, 6.98008, 6.984719999999999, 6.802389999999999, 5.99146, 6.802389999999999, 7.32647, 7.1309, 5.96101, 6.62007, 6.84055, 6.58617, 7.1309, 7.00307, 7.78322, 6.62007, 5.7525699999999995, 6.62407, 6.795710000000001, 7.212289999999999, 6.05209, 6.38856, 6.93925, 6.47697, 6.8773, 6.354369999999999, 7.9724699999999995, 7.64969, 6.703189999999999, 6.658010000000001, 6.47697, 6.50429, 6.58617, 6.893660000000001, 6.51471, 6.06611, 6.68461, 6.65544, 7.331060000000001, 6.64118, 6.47697, 7.475910000000001, 6.72743, 7.20786, 6.81124, 7.0201899999999995, 7.279319999999999, 8.02027, 6.80461, 5.99645, 7.10906, 6.40523, 6.77422, 7.01571, 6.54822, 6.14204, 6.57786, 6.47697, 7.24423, 5.93225, 5.9269300000000005, 7.46737, 6.69084, 6.47697, 6.85646, 6.88755, 7.24423, 6.2634, 6.95655, 6.67077, 6.85646, 7.313219999999999, 6.98008, 6.75577, 6.566669999999999, 7.09008, 6.697030000000001, 5.78383, 6.79794, 6.2634, 6.61874, 6.64118, 7.1309, 6.98101, 6.90575, 5.90263, 6.17794, 6.77422, 6.96035, 6.6515699999999995, 6.35957, 6.829789999999999, 6.66568, 7.09008, 6.10925, 6.85646, 6.90575, 6.95655, 6.126869999999999, 7.1309, 6.4552, 6.58617, 7.23778, 6.66568, 6.21261, 6.57925, 6.907760000000001, 6.802389999999999, 6.88755, 7.08171, 6.6567300000000005, 7.696210000000001, 6.68461, 6.43775, 6.802389999999999, 6.6592899999999995, 5.4161, 6.48311, 6.408530000000001, 6.84055, 7.17778, 6.2634, 6.4892, 6.62007, 6.95177, 6.785589999999999, 7.033510000000001, 7.1107, 6.57647, 6.85646, 6.23637, 6.530880000000001, 6.43775, 6.90575, 6.30992, 6.85646, 6.62007, 6.04025, 6.79122, 6.30992, 6.62007, 5.76832, 6.81014, 6.551080000000001, 6.56526, 6.551080000000001, 7.09008, 6.86693, 6.9613, 6.7901, 6.95655, 6.65286, 5.9814099999999994, 6.28227, 7.46737, 7.18007, 7.46737, 6.90575, 6.52209, 7.37776, 6.90575, 5.99146, 7.46737, 5.99146, 6.18826, 6.4552, 6.59987, 7.346010000000001, 6.68461, 7.6009, 7.14913, 7.27031, 6.317159999999999, 6.72503, 5.8861, 5.99146, 6.62007, 6.6871100000000006, 7.17012, 6.802389999999999, 5.93754, 6.995769999999999, 6.802389999999999, 6.52356, 6.55251, 6.56526, 6.72383, 7.09008, 6.68461, 6.52209, 7.313219999999999, 6.94698, 6.561030000000001, 6.907760000000001, 7.71869, 5.96615, 7.143619999999999, 6.41673, 6.907760000000001, 6.29157, 6.354369999999999, 7.00307, 6.802389999999999, 6.90375, 6.1944099999999995, 7.09008, 6.90575, 6.47697, 7.26193, 6.60665, 6.424869999999999, 6.745239999999999, 7.37776, 6.13773, 6.882439999999999, 6.907760000000001, 6.858569999999999, 6.745239999999999, 7.495539999999999, 7.1546199999999995, 6.68461, 6.2804, 6.6592899999999995, 6.77422, 6.893660000000001, 6.86693, 7.408530000000001, 6.72743, 6.42972, 6.633319999999999, 7.0579, 6.68461, 7.185389999999999, 7.26543, 7.05099, 6.10925, 6.60123, 7.233460000000001, 6.90575, 6.77194, 6.6567300000000005, 6.3243599999999995, 6.55393, 6.90575, 6.10925, 6.9613, 6.90575, 6.907760000000001, 6.90975, 7.64969, 7.1309, 6.745239999999999, 5.99146, 6.354369999999999, 5.4161, 6.55536, 6.02102, 6.7334, 6.47697, 6.47697, 6.53669, 6.95655, 6.551080000000001, 6.16331, 7.6009, 6.90575, 7.17242, 6.3421199999999995, 6.9196800000000005, 6.51471, 7.24423, 6.85646, 6.551080000000001, 6.86693, 6.35611, 6.90575, 6.34914, 7.696210000000001, 7.17012, 6.802389999999999, 6.253830000000001, 6.90575, 6.48464, 6.49224, 6.82763, 6.90575, 7.014810000000001, 6.2634, 7.04752, 6.90575, 7.20786, 7.02997, 7.803839999999999, 6.31355, 6.89467, 6.829789999999999, 7.17012, 7.54961, 7.28207, 6.69084, 7.1929300000000005, 6.33328, 5.84354, 6.85646, 6.912739999999999, 6.80017, 6.97635, 6.2653, 6.07535, 7.1309, 7.17012, 6.59715, 7.0884100000000005, 6.77992, 7.16627, 6.19644, 6.39693, 5.9814099999999994, 6.90575, 6.90575, 6.6958, 5.01728, 7.279319999999999, 7.136480000000001, 6.608, 6.68461, 7.9831, 6.9828600000000005, 6.30992, 6.2146099999999995, 7.09506, 6.44572, 6.2634, 6.90575, 6.90575, 7.08339, 5.96615, 6.9622399999999995, 7.11233, 6.912739999999999, 6.68461, 6.85646, 6.8254600000000005, 7.346010000000001, 6.68085, 7.24423, 6.8426800000000005, 6.62007, 6.1070199999999994, 6.33328, 6.15698, 6.893660000000001, 6.43775, 6.30262, 6.253830000000001, 7.30317, 6.829789999999999, 6.56808, 6.36303, 7.20786, 6.752269999999999, 6.95655, 6.02102, 6.633319999999999, 6.2634, 7.183110000000001, 6.907760000000001, 6.6174, 7.43838, 6.45047, 6.9707300000000005, 6.3952599999999995, 7.09008, 6.49979, 6.94986, 7.06902, 6.68461, 7.22766, 6.68461, 7.1309, 6.975410000000001, 6.2672, 6.50279, 6.551080000000001, 6.59987, 6.7334, 6.16331, 6.2146099999999995, 6.95655, 6.694560000000001, 6.44572, 6.6783399999999995, 7.408530000000001, 7.09008, 6.614730000000001, 6.72743, 6.17379, 7.03615, 6.05209, 6.6280399999999995, 6.83518, 7.09008, 6.63857, 6.17794, 6.551080000000001, 6.30992, 7.07834, 6.39693, 6.57228, 7.346010000000001, 6.938280000000001, 6.715380000000001, 6.7511, 6.715380000000001, 6.58617, 5.59842, 6.3935900000000006, 7.26193, 6.49072, 6.829789999999999, 6.745239999999999, 6.721430000000001, 6.59715, 6.00389, 6.9828600000000005, 6.62007, 6.85646, 7.04752, 6.23441, 6.551080000000001, 6.63726, 6.14633, 6.563860000000001, 6.73102, 6.2634, 6.3243599999999995, 6.721430000000001, 6.6796, 7.062189999999999, 6.10925, 7.313219999999999, 6.34564, 6.561030000000001, 6.17379, 7.06987, 6.87626, 6.505780000000001, 6.745239999999999, 6.966019999999999, 6.4488900000000005, 7.1309, 6.68461, 6.575080000000001, 6.40192, 6.70073, 6.56808, 6.7334, 6.30992, 7.0775, 6.6796, 6.8384100000000005, 7.03615, 6.85751, 6.745239999999999, 7.313219999999999, 6.86693, 7.08171, 6.85646, 6.47697, 6.47697, 6.28972, 7.46737, 7.2724, 6.61874, 6.30079, 7.0255399999999995, 6.27099, 6.90575, 6.34564, 6.9828600000000005, 7.450080000000001, 6.224559999999999, 6.551080000000001, 6.551080000000001, 6.23441, 6.77422, 7.1309, 6.52209, 7.49332, 6.39192, 6.739339999999999, 7.4832399999999994, 6.16331, 6.68461, 6.90575, 6.715380000000001, 6.90575, 7.1309, 6.86171, 6.715380000000001, 5.70378, 6.551080000000001, 6.802389999999999, 6.33683, 6.9187, 7.0579, 6.35611, 7.02376, 5.4161, 5.5797300000000005, 6.90575, 6.82655, 6.90575, 5.9269300000000005, 7.42833, 5.87212, 6.463030000000001, 7.52833, 6.86797, 6.95655, 6.60665, 6.90575, 6.4677, 7.3651800000000005, 6.748760000000001, 6.77992, 6.975410000000001, 7.43838, 7.82405, 6.5439099999999994, 6.42162, 6.8844899999999996, 7.16085, 6.52209, 6.04025, 5.52146, 6.90575, 7.00307, 6.907760000000001, 6.817830000000001, 7.279319999999999, 6.907760000000001, 7.54961, 7.323169999999999, 6.90575, 6.41017, 6.90575, 6.787839999999999, 6.62007, 7.0967199999999995, 5.9269300000000005, 6.55393, 7.0255399999999995, 6.17379, 7.00307, 7.31122, 7.31122, 6.31355, 6.44572, 6.59578, 6.47697, 7.226210000000001, 6.62007, 6.69332, 6.7511, 6.77422, 7.09008, 5.8579300000000005, 7.183110000000001, 7.728860000000001, 6.54965, 7.04752, 7.25488, 6.9256, 6.907760000000001, 5.65249, 7.041410000000001, 6.4599, 6.96035, 7.1333, 6.99942, 6.38012, 7.200419999999999, 7.18007, 7.1309, 6.461469999999999, 6.85646, 7.17012, 7.03527, 6.19848, 6.62007, 7.313219999999999, 6.907760000000001, 6.90575, 6.05209, 7.1452, 6.02102, 5.82895, 6.33683, 6.04025, 6.2146099999999995, 7.8935699999999995, 6.34564, 6.64249, 6.8977, 6.3699, 6.6567300000000005, 6.813439999999999, 6.53669, 6.90575, 6.47697, 6.05209, 7.21524, 6.551080000000001, 6.66568, 6.57925, 6.2146099999999995, 6.8426800000000005, 6.907760000000001, 6.90575, 7.106610000000001, 6.424869999999999, 6.65415, 6.86693, 6.745239999999999, 6.88346, 6.53669, 6.3207699999999996, 7.696210000000001, 7.64779, 7.313219999999999, 6.95655, 5.95584, 6.715380000000001, 6.44254, 6.8966899999999995, 6.61338, 6.8426800000000005, 6.23245, 6.95655, 6.768489999999999, 7.3981699999999995, 6.68461, 7.12287, 6.813439999999999, 6.752269999999999, 6.551080000000001, 6.86066, 6.7334, 6.318969999999999, 6.79122, 5.95324, 6.745239999999999, 7.1309, 6.54103, 7.06048, 6.24222, 6.68461, 6.9177100000000005, 6.05209, 6.78672, 7.09008, 7.1309, 6.47697, 7.1025, 5.9814099999999994, 7.24423, 6.44254, 7.451239999999999, 7.198180000000001, 7.27101, 7.245660000000001, 6.51471, 7.279319999999999, 6.85646, 7.279319999999999, 7.67322, 6.76273, 6.82437, 6.47697, 6.885510000000001, 7.07918, 7.279319999999999, 7.1309, 6.966019999999999, 6.73102, 6.633319999999999, 7.00307, 5.940169999999999, 7.6009, 6.907760000000001, 6.32615, 6.508769999999999, 6.551080000000001, 7.0884100000000005, 6.829789999999999, 7.31986, 6.21661, 7.11802, 6.77422, 7.26193, 6.90575, 7.17012, 7.00307, 5.99146, 7.46737, 6.57786, 6.3081, 6.90575, 6.311730000000001, 6.39693, 6.95655, 6.62007, 6.3952599999999995, 7.04752, 6.48311, 6.50429, 6.39693, 6.90575, 6.60665, 6.90575, 6.318969999999999, 6.802389999999999, 6.70441, 6.51471, 6.77992, 6.68461, 6.29157, 6.40523, 6.18826, 7.24423, 6.83518, 7.09008, 7.84502, 7.1624, 6.813439999999999, 6.907760000000001, 6.68461, 6.14633, 7.17012, 6.53814, 6.2146099999999995, 6.882439999999999, 6.36647, 6.47697, 7.54697, 6.60665, 6.68461, 7.408530000000001, 7.2724, 6.46614, 6.90575, 6.95655, 5.7462, 6.36303, 7.20786, 7.04752, 7.04316, 6.551080000000001, 6.58064, 6.17379, 6.83195, 6.8533, 5.70378, 7.20786, 6.62007, 6.95655, 6.90575, 6.34564, 7.09008, 7.014810000000001, 6.73815, 6.65028, 7.03878, 6.10032, 7.266830000000001, 6.95655, 6.58617, 7.20786, 6.68461, 6.602589999999999, 6.551080000000001, 6.87626, 5.16479, 7.54961, 6.551080000000001, 6.84055, 6.49224, 6.58893, 5.2983199999999995, 6.60665, 6.907760000000001, 7.64969, 6.9177100000000005, 6.18415, 6.68461, 7.43838, 6.66441, 6.551080000000001, 5.99146, 6.41182, 6.43775, 6.10925, 6.43775, 6.4599, 7.00307, 5.99146, 6.852239999999999, 6.51175, 6.5439099999999994, 6.6515699999999995, 7.522939999999999, 6.16331, 6.551080000000001, 6.907760000000001, 7.04752, 6.44572, 6.3243599999999995, 6.41346, 6.551080000000001, 6.802389999999999, 6.62007, 6.5439099999999994, 6.57925, 6.38012, 6.4151, 6.52209, 6.29157, 6.2146099999999995, 6.97167, 6.75926, 6.73102, 6.66823, 7.37776, 7.1309, 6.90575, 6.10925, 7.408530000000001, 6.39693, 6.04025, 7.0396600000000005, 7.09589, 7.10003, 6.73102, 6.87523, 6.90575, 7.20786, 7.173960000000001, 6.90575, 6.47389, 6.99026, 7.0884100000000005, 6.206580000000001, 6.56526, 6.44572, 6.802389999999999, 6.551080000000001, 6.53379, 6.90575, 6.46614, 6.61338, 6.90575, 6.85646, 6.47389, 6.10925, 6.99118, 6.2441699999999996, 7.1592899999999995, 6.697030000000001, 6.90575, 6.59987, 7.01571, 6.42162, 6.716589999999999, 6.85646, 7.46737, 6.58617, 6.95655, 6.29157, 6.907760000000001, 6.46459, 6.62007, 6.95177, 6.58617, 6.50129, 6.2952699999999995, 6.85646, 6.15698, 6.90575, 7.6009, 7.00307, 6.17379, 6.15273, 7.01392, 6.62007, 7.346010000000001, 6.90575, 6.68461, 6.50429, 7.24423, 7.0942300000000005, 5.78383, 6.54535, 6.3716099999999996, 7.86327, 6.62007, 7.09008, 6.703189999999999, 6.354369999999999, 6.53233, 6.58617, 7.46737, 6.9622399999999995, 6.39693, 6.38012, 6.802389999999999, 6.43935, 7.044910000000001, 6.42162, 6.90575, 6.802389999999999, 6.44413, 7.127689999999999, 6.45677, 6.40192, 6.55393, 6.593039999999999, 7.06902, 6.59987, 6.802389999999999, 6.715380000000001, 6.715380000000001, 6.39693, 6.57786, 6.68461, 7.00307, 6.42972, 6.85435, 6.58893, 6.937310000000001, 6.2106, 6.708080000000001, 6.0845, 6.907760000000001, 6.16331, 6.43775, 6.2146099999999995, 6.2441699999999996, 6.74406, 6.85646, 6.73221, 5.72031, 6.13123, 7.54961, 6.37673, 6.90575, 6.62007, 6.768489999999999, 6.63595, 5.82895, 6.90575, 6.75577, 6.77194, 6.77422, 6.99485, 6.58617, 5.8999, 6.2146099999999995, 6.2146099999999995, 6.6567300000000005, 6.62007, 6.9489, 7.354360000000001, 7.279319999999999, 5.8861, 6.6592899999999995, 7.06305, 6.61338, 7.00307, 6.49224, 6.84588, 6.35611, 6.35611, 6.8977, 7.20786, 6.90575, 7.59287, 7.1309, 7.393260000000001, 6.95655, 6.834110000000001, 6.07993, 7.10988, 6.802389999999999, 6.224559999999999, 6.57925, 6.927560000000001, 6.90575, 7.09008, 7.1309, 6.90575, 6.907760000000001, 6.16542, 6.62007, 7.6009, 6.963189999999999, 6.95655, 6.90575, 6.90575, 6.796819999999999, 6.66568, 6.907760000000001, 6.8533, 6.813439999999999, 7.196689999999999, 6.43615, 6.9147300000000005, 6.551080000000001, 6.77194, 6.90575, 6.90575, 6.66823, 6.47697, 7.0255399999999995, 7.522939999999999, 6.62007, 6.354369999999999, 7.1546199999999995, 6.90575, 6.551080000000001, 5.78383, 6.753439999999999, 6.77422, 7.313219999999999, 6.967910000000001, 6.816739999999999, 7.6009, 6.745239999999999, 6.51471, 7.37588, 6.86485, 6.41346, 6.7093, 6.551080000000001, 6.22654, 7.24423, 6.06146, 6.16331, 7.05359, 6.86171, 6.58617, 7.1309, 6.77422, 7.93737, 6.39693, 6.58617, 7.67322, 6.551080000000001, 6.2146099999999995, 6.77422, 6.2634, 6.99485, 6.45047, 6.66185, 6.94119, 6.90575, 7.21891, 7.57558, 7.495539999999999, 6.10925, 6.59715, 7.09008, 6.03787, 6.556780000000001, 6.354369999999999, 7.6009, 6.83303, 6.551080000000001, 7.279319999999999, 6.354369999999999, 7.925160000000001, 6.77422, 7.183110000000001, 6.1136800000000004, 6.77992, 6.62007, 7.00307, 7.86327, 6.70073, 6.795710000000001, 7.1309, 6.32794, 6.16121, 5.6801699999999995, 6.65286, 6.802389999999999, 6.715380000000001, 6.95655, 6.78333, 6.90575, 6.67582, 6.47697, 6.907760000000001, 6.90575, 6.53233, 6.882439999999999, 7.0255399999999995, 6.23048, 6.715380000000001, 7.872839999999999, 6.49072, 6.90575, 6.4892, 6.63726, 6.12249, 6.3613, 6.79122, 6.53233, 6.05209, 6.907760000000001, 6.697030000000001, 6.8742, 6.08677, 6.6280399999999995, 6.907760000000001, 6.05209, 5.70378, 7.02997, 6.715380000000001, 6.2146099999999995, 6.90575, 7.313219999999999, 6.3699, 6.07074, 6.77992, 6.54822, 6.62007, 6.59987, 6.62007, 6.8966899999999995, 6.802389999999999, 6.7226300000000005, 6.07993, 6.51026, 6.907760000000001, 6.50429, 6.47697, 6.58617, 6.77422, 6.8977, 5.9135, 6.17379, 8.047189999999999, 6.93537, 6.2146099999999995, 6.507280000000001, 7.46737, 5.82895, 7.034389999999999, 6.7569300000000005, 7.2998, 6.95655, 6.17794, 6.68461, 7.495539999999999, 6.62007, 6.88755, 6.45205, 6.802389999999999, 6.32794, 6.68461, 8.03916, 6.829789999999999, 6.6745600000000005, 6.714169999999999, 6.43775, 5.4161, 7.00307, 6.43455, 6.90575, 7.346660000000001, 6.9256, 7.6009, 7.10988, 7.24423, 6.7569300000000005, 6.48004, 6.889589999999999, 7.313219999999999, 6.9256, 6.59167, 6.57786, 6.53669, 6.39693, 6.33328, 6.33328, 7.313219999999999, 6.551080000000001, 7.408530000000001, 6.802389999999999, 7.3908, 6.90575, 6.9256, 6.95655, 6.13123, 6.551080000000001, 7.06561, 6.57925, 6.90575, 6.73102, 7.09008, 6.566669999999999, 6.9966800000000005, 6.43775, 6.62007, 6.68461, 6.424869999999999, 6.646389999999999, 6.2146099999999995, 6.802389999999999, 6.90575, 6.9613, 5.70378, 6.78672, 6.65286, 7.24423, 7.09008, 6.602589999999999, 6.42162, 7.0422899999999995, 7.034389999999999, 6.59987, 6.44572, 6.20456, 6.57925, 6.38012, 6.16331, 7.43838, 6.818919999999999, 6.551080000000001, 6.53669, 6.95655, 5.76832, 7.2100800000000005, 6.48311, 6.507280000000001, 6.45362, 6.765039999999999, 6.2634, 6.2691, 7.18917, 6.2146099999999995, 6.802389999999999, 6.50129, 6.2634, 7.38647, 6.96885, 6.10925, 7.196689999999999, 6.3403599999999996, 6.818919999999999, 6.72623, 6.90575, 7.04752, 6.7569300000000005, 6.62936, 7.09008, 6.62007, 5.9839400000000005, 6.95655, 7.49332, 6.62007, 6.31355, 6.62007, 6.753439999999999, 6.77422, 6.2653, 7.495539999999999, 6.7334, 6.95655, 6.56526, 6.88755, 7.47307, 6.47697, 6.90575, 6.90575, 7.909860000000001, 6.69084, 6.3716099999999996, 6.52209, 7.106610000000001, 6.40523, 6.69084, 5.627619999999999, 6.6567300000000005, 6.68461, 6.697030000000001, 6.22654, 7.740660000000001, 6.907760000000001, 6.43775, 6.43775, 6.813439999999999, 5.76832, 6.9256, 7.64969, 6.47697, 6.10925, 7.1309, 5.89715, 6.907760000000001, 6.745239999999999, 6.43775, 6.85646, 6.77422, 6.768489999999999, 7.029089999999999, 6.62007, 7.06133, 7.24423, 6.95177, 7.54961, 6.354369999999999, 6.87626, 6.318969999999999, 6.570880000000001, 6.62007, 7.61332, 7.09008, 6.7511, 6.8977, 6.551080000000001, 7.40914, 7.034389999999999, 6.49072, 6.30992, 5.70378, 6.55393, 6.72743, 6.05209, 7.0967199999999995, 6.90575, 6.551080000000001, 6.907760000000001, 6.785589999999999, 6.39693, 6.05209, 6.90575, 6.697030000000001, 6.814539999999999, 6.639880000000001, 6.62007, 7.24423, 6.77194, 6.551080000000001, 6.802389999999999, 5.8999, 6.57228, 7.062189999999999, 6.47697, 6.2441699999999996, 6.829789999999999, 6.95655, 6.907760000000001, 6.38012, 7.293019999999999, 6.91175, 6.68461, 6.45834, 6.556780000000001, 6.5582, 6.91175, 6.45362, 7.1309, 6.8773, 6.955589999999999, 7.80588, 6.9613, 5.4161, 6.907760000000001, 6.90575, 7.18992, 7.507689999999999, 6.90575, 6.385190000000001, 7.31122, 6.6107, 6.807930000000001, 6.79794, 6.1717, 6.16331, 6.6592899999999995, 7.0483899999999995, 6.598510000000001, 5.5797300000000005, 7.6009, 6.09131, 7.106610000000001, 6.90575, 7.66153, 7.22548, 6.48768, 6.87213, 7.17012, 6.23245, 6.39693, 6.4677, 7.35244, 7.183110000000001, 6.56948, 8.00637, 7.05272, 6.33328, 6.90575, 6.802389999999999, 6.30992, 6.551080000000001, 6.10925, 6.77422, 6.30992, 7.522939999999999, 6.49979, 6.802389999999999, 7.05704, 7.16858, 6.802389999999999, 6.58617, 6.551080000000001, 7.20564, 6.551080000000001, 7.1507, 6.852239999999999, 7.6009, 6.70564, 5.7525699999999995, 6.90575, 6.802389999999999, 6.11147, 6.95655, 6.84375, 6.95655, 6.8977, 7.34923, 6.93245, 6.34564, 6.79122, 7.03878, 7.400010000000001, 5.8579300000000005, 7.37588, 6.83195, 7.00307, 6.84162, 6.354369999999999, 6.93342, 6.608, 6.85646, 6.61607, 6.056780000000001, 6.90575, 6.697030000000001, 6.5395900000000005, 6.6120399999999995, 6.63726, 7.1309, 6.739339999999999, 7.86327, 6.55393, 6.47697, 6.7511, 6.907760000000001, 6.05912, 6.54535, 6.551080000000001, 7.00307, 6.51471, 6.57925, 6.66823, 7.71869, 5.52146, 7.1309, 6.551080000000001, 6.44572, 7.00307, 6.253830000000001, 7.401839999999999, 5.99146, 7.2724, 6.907760000000001, 6.90575, 6.3315, 6.3699, 6.39693, 7.82405, 6.95655, 6.09582, 6.07535, 6.90575, 6.8426800000000005, 7.0518600000000005, 6.993930000000001, 6.907760000000001, 6.79122, 6.7511, 6.2146099999999995, 6.78897, 6.67203, 7.259119999999999, 7.6811, 6.745239999999999, 7.27031, 6.721430000000001, 6.90575, 6.563860000000001, 6.99485, 7.37776, 7.06048, 7.6009, 6.30992, 6.84375, 7.0282, 6.66696, 6.90575, 6.47235, 6.56244, 8.0229, 6.90575, 6.6592899999999995, 6.80351, 6.92658, 6.4892, 6.28227, 7.06902, 6.08677, 5.958419999999999, 7.1309, 5.68698, 6.62007, 6.33683, 6.984719999999999, 6.753439999999999, 6.354369999999999, 6.52209, 6.52209, 7.362010000000001, 6.8200199999999995, 6.73102, 6.39693, 6.8773, 6.507280000000001, 7.313219999999999, 6.81014, 6.802389999999999, 6.49072, 7.46737, 6.82437, 6.745239999999999, 6.11147, 6.2634, 7.181589999999999, 6.551080000000001, 7.05618, 6.29157, 7.2998, 5.86079, 6.51619, 6.56948, 6.937310000000001, 5.83188, 6.9256, 6.90575, 6.10925, 6.39693, 7.09008, 6.82437, 6.753439999999999, 6.966019999999999, 6.802389999999999, 7.239210000000001, 6.5582, 6.907760000000001, 6.98008, 6.62407, 5.70378, 6.551080000000001, 6.41673, 7.313219999999999, 6.62007, 6.84588, 6.95655, 6.42162, 6.68461, 6.715380000000001, 6.85646, 6.57786, 5.8579300000000005, 6.2146099999999995, 7.313219999999999, 7.37776, 6.07993, 6.30992, 7.1309, 6.69084, 6.70564, 5.7462, 6.16752, 7.279319999999999, 6.73102, 6.53669, 6.24222, 7.03527, 7.04752, 6.507280000000001, 6.93049, 6.59715, 7.09008, 6.45047, 6.33328, 6.68461, 6.62007, 6.6592899999999995, 6.90575, 7.04752, 6.30992, 7.43838, 6.6346300000000005, 6.59167, 6.1181, 6.41836, 7.2724, 6.56526, 6.90575, 7.91936, 6.54103, 6.90575, 7.57558, 6.20456, 6.802389999999999, 6.899719999999999, 7.484369999999999, 6.90575, 6.51471, 5.7462, 6.39693, 6.94698, 7.084230000000001, 6.96885, 6.907760000000001, 7.00307, 7.293019999999999, 7.173189999999999, 6.77422, 6.815639999999999, 6.43294, 6.813439999999999, 6.90575, 6.88857, 6.90575, 7.09008, 6.90575, 7.226210000000001, 5.76832, 5.70378, 7.279319999999999, 6.05912, 6.68461, 6.6592899999999995, 7.91936, 6.507280000000001, 7.00307, 6.47697, 6.551080000000001, 6.90575, 6.2146099999999995, 6.907760000000001, 6.715380000000001, 6.96885, 6.68461, 6.57368, 6.745239999999999, 6.53669, 5.76832, 6.2146099999999995, 6.8426800000000005, 7.520230000000001, 5.5797300000000005, 6.51323, 7.1082399999999994, 6.5582, 7.17012, 6.768489999999999, 6.39693, 7.393260000000001, 6.6958, 6.39693, 6.95177, 6.2146099999999995, 7.09008, 6.5582, 7.09008, 6.9613, 6.4892, 7.676010000000001, 6.715380000000001, 5.70378, 6.907760000000001, 6.3935900000000006, 7.54961, 6.86171, 5.79606, 6.83087, 6.6783399999999995, 6.54535, 6.593039999999999, 6.77422, 6.44572, 7.04752, 6.3716099999999996, 7.37776, 7.17012, 6.8426800000000005, 7.00307, 6.126869999999999, 6.50129, 6.8773, 6.56526, 6.354369999999999, 6.96885, 6.575080000000001, 6.62007, 6.42811, 6.752269999999999, 6.90575, 6.78672, 7.1309, 8.12089, 6.829789999999999, 7.00307, 6.2146099999999995, 6.1944099999999995, 7.740660000000001, 6.551080000000001, 6.907760000000001, 6.2146099999999995, 6.96979, 6.68461, 7.14283, 6.139880000000001, 7.1293, 6.89467, 5.43808, 6.621410000000001, 7.183110000000001, 6.5467900000000006, 6.34388, 6.39024, 7.0255399999999995, 6.424869999999999, 6.68461, 6.49979, 7.37776, 6.7901, 6.17379, 6.4488900000000005, 6.614730000000001, 6.802389999999999, 6.60665, 7.09008, 6.51323, 6.93245, 6.6592899999999995, 6.30992, 6.30992, 6.7226300000000005, 7.37776, 6.09807, 6.8977, 6.35784, 6.37502, 6.57925, 7.7021, 7.46737, 7.6009, 7.36455, 6.59715, 6.639880000000001, 6.36303, 5.82895, 6.59715, 6.62007, 6.551080000000001, 7.09008, 6.78333, 6.563860000000001, 7.0076, 6.880380000000001, 6.745239999999999, 6.82437, 6.4677, 7.127689999999999, 7.1309, 6.62007, 7.82084, 7.288930000000001, 6.72743, 6.39693, 6.68461, 7.10988, 6.563860000000001, 6.354369999999999, 6.7546, 7.196689999999999, 5.99146, 6.74052, 7.24423, 6.67203, 6.86485, 7.1309, 7.6009, 6.6107, 7.24423, 6.9256, 7.11314, 6.86693, 6.85118, 6.58617, 6.85646, 5.70378, 6.2146099999999995, 6.92363, 5.67675, 6.84588, 6.86171, 6.813439999999999, 6.62936, 6.50279, 5.7589, 6.7417, 7.18917, 6.2146099999999995, 6.93245, 6.78897, 6.74759, 7.00307, 6.3935900000000006, 7.09008, 7.84385, 6.802389999999999, 6.57647, 6.78672, 6.39693, 6.9707300000000005, 8.3082, 7.1309, 7.17012, 6.593039999999999, 6.90575, 6.62007, 6.86693, 6.259580000000001, 6.41999, 6.90575, 5.52146, 6.907760000000001, 7.43838, 6.64509, 7.09008, 6.39693, 7.0255399999999995, 7.903969999999999, 6.745239999999999, 6.80461, 7.037030000000001, 7.04752, 6.08904, 6.47697, 6.65286, 6.76388, 6.90575, 6.802389999999999, 6.87626, 6.90575, 7.1507, 7.07834, 7.21082, 6.52942, 6.701960000000001, 6.8426800000000005, 6.3207699999999996, 6.69827, 6.24611, 6.57786, 6.18826, 6.975410000000001, 7.16085, 6.30992, 6.83303, 7.61874, 6.48158, 5.99146, 6.44095, 6.99485, 6.907760000000001, 6.8384100000000005, 6.79122, 6.551080000000001, 6.6695, 7.279319999999999, 6.57925, 6.813439999999999, 6.30992, 6.68461, 6.47389, 6.802389999999999, 6.785589999999999, 6.45362, 7.313219999999999, 6.551080000000001, 7.29097, 5.8861, 6.98008, 6.802389999999999, 7.20786, 6.802389999999999, 6.983789999999999, 6.75926, 6.68461, 6.55962, 6.8977, 6.05912, 6.90575, 7.4570300000000005, 7.1309, 6.566669999999999, 6.829789999999999, 6.85646, 6.643789999999999, 6.77422, 7.90101, 6.32794, 6.25767, 7.81883, 6.966019999999999, 6.33328, 6.2146099999999995, 6.77422, 6.8384100000000005, 6.62007, 6.813439999999999, 6.551080000000001, 6.920669999999999, 7.195189999999999, 6.62007, 6.745239999999999, 6.3315, 6.69332, 6.745239999999999, 6.90575, 7.0396600000000005, 6.90575, 5.8260000000000005, 6.07535, 6.30992, 6.96885, 6.47697, 6.39693, 7.24423, 7.12367, 7.17012, 6.60394, 6.18415, 6.68461, 6.44413, 6.4677, 6.72623, 6.2146099999999995, 6.47697, 6.907760000000001, 6.4552, 7.1546199999999995, 7.37776, 7.18917, 6.10925, 6.5903, 7.136480000000001, 5.95584, 7.03878, 6.461469999999999, 6.697030000000001, 5.9839400000000005, 6.66568, 6.2146099999999995, 6.56526, 6.51471, 5.61677, 6.49375, 7.06048, 6.715380000000001, 6.10925, 6.95655, 7.1309, 6.95655, 6.90575, 6.76273, 6.311730000000001, 7.1507, 7.00307, 6.29157, 6.86693, 6.68461, 6.90575, 6.95655, 7.17012, 7.0255399999999995, 6.86171, 7.495539999999999, 6.49224, 6.90575, 6.8865300000000005, 7.57353, 6.602589999999999, 6.85646, 6.30992, 6.23048, 6.5467900000000006, 6.530880000000001, 6.802389999999999, 7.6009, 6.55962, 6.46459, 6.834110000000001, 7.313219999999999, 6.802389999999999, 6.7334, 6.66441, 7.251339999999999, 5.87774, 6.802389999999999, 7.43838, 6.35957, 6.43775, 6.5820300000000005, 6.768489999999999, 7.17012, 6.68461, 5.6733199999999995, 6.90575, 7.281389999999999, 7.17702, 6.90575, 6.95845, 6.44572, 6.583410000000001, 6.91672, 6.90575, 8.229510000000001, 7.027310000000001, 6.551080000000001, 6.84055, 7.136480000000001, 6.71174, 6.787839999999999, 6.74288, 7.0934, 7.200419999999999, 6.83087, 7.37776, 6.79122, 6.67203, 6.55393, 6.39693, 7.46737, 6.802389999999999, 7.165489999999999, 6.62007, 6.90575, 7.0255399999999995, 7.70661, 6.47389, 6.35957, 6.07535, 6.907760000000001, 7.1107, 6.593039999999999, 6.30992, 7.20786, 6.43775, 6.556780000000001, 6.83518, 6.77878, 6.966019999999999, 6.95273, 6.3716099999999996, 6.43133, 6.907760000000001, 6.68461, 6.64898, 6.28972, 7.00307, 6.2146099999999995, 6.66058, 6.967910000000001, 7.016610000000001, 6.68461, 7.09008, 6.85646, 6.90575, 5.66988, 7.09008, 6.53379, 6.84801, 6.90575, 5.99146, 7.21891, 6.90575, 6.745239999999999, 7.07242, 7.6009, 6.817830000000001, 6.23637, 7.346010000000001, 6.6592899999999995, 7.46737, 6.975410000000001, 6.79122, 6.719010000000001, 6.720219999999999, 6.90575, 6.90575, 6.68336, 6.892639999999999, 6.86485, 6.947939999999999, 6.955589999999999, 6.90575, 5.78383, 6.551080000000001, 5.66988, 7.0255399999999995, 7.04752, 6.3935900000000006, 6.807930000000001, 6.74288, 6.802389999999999, 6.4599, 6.354369999999999, 6.18208, 7.398789999999999, 7.37776, 7.35883, 6.47697, 7.18463, 6.745239999999999, 7.05876, 6.694560000000001, 6.84588, 6.68461, 7.64969, 6.59578, 7.027310000000001, 6.715380000000001, 6.04025, 5.84644, 6.2146099999999995, 6.507280000000001, 6.23441, 7.098380000000001, 6.2804, 7.6256, 6.633319999999999, 6.6346300000000005, 7.195189999999999, 6.43455, 6.52649, 6.49527, 6.51915, 7.54961, 7.09008, 7.00307, 6.36475, 5.7462, 6.77422, 6.10925, 6.73459, 7.1293, 6.49224, 6.28413, 7.17012, 6.90575, 6.6515699999999995, 6.56948, 6.80461, 6.03787, 7.313219999999999, 6.11589, 6.68461, 6.72743, 7.09008, 5.96615, 8.26873, 6.17794, 6.3935900000000006, 7.12287, 6.43775, 5.95324, 6.6796, 6.758089999999999, 6.68461, 5.70378, 6.90575, 7.495539999999999, 6.84588, 6.745239999999999, 6.21261, 7.251339999999999, 6.10032, 8.048789999999999, 7.313219999999999, 6.802389999999999, 6.745239999999999, 6.907760000000001, 6.90575, 5.82305, 6.90575, 7.17012, 6.2441699999999996, 8.08641, 5.59842, 7.08171, 6.9594, 6.97354, 7.30653, 6.55962, 6.58617, 6.74406, 7.56008, 6.1944099999999995, 7.408530000000001, 6.61338, 6.01616, 6.32794, 7.18007, 6.74052, 6.95655, 6.58617, 6.66568, 6.85646, 6.44572, 7.313219999999999, 7.1309, 5.99146, 6.18826, 5.59842, 6.49224, 6.821110000000001, 6.56526, 6.47697, 6.813439999999999, 7.43838, 7.2717, 6.30262, 6.38351, 6.551080000000001, 5.45959, 6.43775, 6.90575, 6.53233, 6.61874, 6.06843, 6.1203, 7.88231, 6.90575, 6.7569300000000005, 5.7651900000000005, 6.938280000000001, 7.08255, 6.41346, 6.882439999999999, 7.37776, 6.44413, 6.90575, 6.51471, 7.2998, 6.5439099999999994, 6.551080000000001, 6.90575, 7.35372, 7.135689999999999, 7.46737, 6.63595, 6.802389999999999, 7.346010000000001, 6.90575, 6.86693, 7.1309, 5.78383, 6.829789999999999, 6.65286, 6.7334, 7.2998, 6.65415, 6.9256, 6.90575, 6.39693, 6.52209, 6.3699, 6.770789999999999, 6.39693, 6.49072, 6.02345, 7.32251, 6.13123, 6.29711, 7.04752, 6.799060000000001, 6.272880000000001, 6.354369999999999, 6.49527, 6.57925, 6.697030000000001, 5.52146, 6.703189999999999, 7.04752, 6.65286, 6.752269999999999, 6.2146099999999995, 6.42162, 6.90575, 7.014810000000001, 6.62007, 6.85646, 6.745239999999999, 6.9256, 6.58617, 6.51471, 5.96615, 6.90575, 6.52942, 6.16331, 6.56526, 6.813439999999999, 7.09008, 5.8141300000000005, 6.49979, 6.769639999999999, 6.08677, 6.7369699999999995, 7.064760000000001, 6.01616, 7.11883, 6.48158, 6.51175, 7.46737, 6.57228, 6.551080000000001, 7.67322, 6.35957, 6.907760000000001, 6.58617, 7.1309, 6.57925, 6.43294, 6.39693, 7.46737, 6.95655, 6.54247, 6.3716099999999996, 7.293019999999999, 6.08677, 7.64969, 6.95655, 8.13153, 6.3613, 6.10925, 6.551080000000001, 6.907760000000001, 6.97261, 6.907760000000001, 6.43775, 6.3243599999999995, 6.83518, 6.993930000000001, 6.6567300000000005, 6.984719999999999, 7.062189999999999, 6.907760000000001, 6.77992, 7.195189999999999, 7.185389999999999, 6.07993, 6.01616, 6.72743, 6.33683, 6.70073, 7.20786, 7.0103100000000005, 6.551080000000001, 7.1309, 6.7334, 7.495539999999999, 6.24028, 6.354369999999999, 6.90575, 6.551080000000001, 7.00307, 6.85013, 7.0255399999999995, 6.39693, 7.495539999999999, 6.768489999999999, 6.23441, 6.461469999999999, 6.5395900000000005, 6.907760000000001, 6.05209, 6.28413, 6.126869999999999, 7.12287, 6.745239999999999, 7.21744, 6.39693, 6.49072, 6.47697, 6.05209, 7.24423, 6.802389999999999, 7.09008, 6.44572, 7.00307, 6.966019999999999, 6.721430000000001, 6.62936, 6.813439999999999, 6.28227, 7.64969, 6.9575, 7.3696, 6.461469999999999, 6.90575, 7.20786, 6.78333, 6.57647, 6.5903, 7.00307, 6.74993, 6.57925, 6.907760000000001, 7.18917, 6.16331, 6.59578, 6.802389999999999, 6.272880000000001, 7.014810000000001, 6.2146099999999995, 6.43615, 6.64509, 6.608, 6.68461, 6.58617, 6.62007, 6.19032, 7.00307, 6.95655, 6.12249, 6.62007, 7.313219999999999, 7.09008, 6.83303, 6.98101, 6.6871100000000006, 7.09008, 6.81014, 7.37776, 6.51767, 6.85435, 7.64969, 7.91936, 6.907760000000001, 6.9256, 6.6733, 7.5574699999999995, 6.13773, 6.67203, 6.30992, 6.47697, 6.8956800000000005, 6.56948, 6.33328, 6.802389999999999, 6.9707300000000005, 8.00637, 6.65286, 6.57368, 5.70711, 6.57786, 6.92363, 6.57368, 7.37776, 6.2146099999999995, 7.408530000000001, 7.1155800000000005, 7.91936, 7.09008, 7.37776, 7.1309, 6.58617, 6.14633, 6.6592899999999995, 6.90575, 7.092569999999999, 6.86485, 7.57558, 7.200419999999999, 6.95655, 6.2146099999999995, 6.05209, 6.44254, 6.35957, 5.72031, 6.4599, 6.60394, 6.51471, 6.975410000000001, 6.39693, 7.400010000000001, 8.537, 6.07993, 7.36645, 6.67708, 6.99942, 6.61338, 7.64969, 6.68461, 6.57925, 7.09008, 7.1082399999999994, 6.83518, 7.09008, 6.58617, 6.90575, 6.43615, 6.84162, 7.313219999999999, 6.55962, 6.07993, 6.3952599999999995, 6.633319999999999, 6.42162, 7.09008, 6.13123, 7.313219999999999, 6.30992, 6.79122, 6.720219999999999, 6.66823, 7.2861899999999995, 6.802389999999999, 6.703189999999999, 5.98896, 7.620710000000001, 6.0822199999999995, 6.77878, 7.09008, 7.6009, 6.28972, 6.48768, 6.68461, 6.41182, 7.37776, 7.525639999999999, 6.74993, 6.72623, 7.09008, 7.25347, 7.585789999999999, 6.45362, 6.354369999999999, 6.984719999999999, 6.90575, 6.937310000000001, 6.907760000000001, 7.0775, 7.346010000000001, 7.027310000000001, 6.907760000000001, 6.9489, 6.907760000000001, 7.495539999999999, 6.01127, 6.802389999999999, 6.745239999999999, 6.58617, 6.90575, 6.633319999999999, 6.80572, 6.2480400000000005, 6.2634, 6.31355, 7.35819, 6.49677, 6.68461, 6.633319999999999, 7.30317, 6.95655, 6.907760000000001, 5.742999999999999, 6.39693, 7.313219999999999, 6.90575, 7.09008, 6.47697, 7.196689999999999, 6.47697, 6.30262, 6.745239999999999, 7.07412, 6.354369999999999, 6.10925, 6.68461, 7.42357, 6.768489999999999, 6.95655, 6.715380000000001, 6.9828600000000005, 7.02465, 6.49224, 6.49979, 6.27099, 5.8861, 7.393260000000001, 6.829789999999999, 6.32794, 6.28786, 5.9839400000000005, 6.68461, 5.84354, 6.62007, 7.12287, 6.2146099999999995, 6.84162, 7.00307, 6.2146099999999995, 6.983789999999999, 6.35611, 6.17379, 6.95655, 6.39693, 6.88755, 7.04316, 6.90575, 6.84162, 6.45362, 6.83518, 6.85646, 6.46925, 5.99146, 6.62007, 7.00307, 5.99146, 6.22654, 6.633319999999999, 6.77308, 7.1107, 6.95655, 6.967910000000001, 6.995769999999999, 6.66568, 6.594410000000001, 6.90575, 6.5439099999999994, 6.62007, 6.60665, 7.04752, 7.062189999999999, 7.313219999999999, 7.04752, 7.0884100000000005, 6.937310000000001, 6.90575, 6.23441, 6.25767, 6.2146099999999995, 6.551080000000001, 6.90575, 7.09008, 6.68461, 6.2146099999999995, 6.386880000000001, 6.44413, 6.58617, 6.10925, 6.90073, 6.745239999999999, 7.2233, 6.8773, 6.813439999999999, 7.037030000000001, 6.40523, 6.2146099999999995, 6.17379, 7.6009, 6.30992, 6.685860000000001, 6.38856, 6.47697, 7.46737, 6.551080000000001, 6.9226399999999995, 6.87213, 6.73102, 6.30992, 7.45298, 5.72359, 7.1309, 6.882439999999999, 5.940169999999999, 6.90675, 6.551080000000001, 6.9147300000000005, 6.85646, 6.563860000000001, 6.381819999999999, 5.78996, 6.769639999999999, 6.73102, 7.06133, 6.68461, 6.2146099999999995, 6.912739999999999, 6.4708, 6.2634, 7.08171, 6.90575, 7.6009, 6.52062, 6.907760000000001, 6.60935, 6.51471, 6.9828600000000005, 6.85646, 6.30992, 7.338889999999999, 6.22654, 6.84055, 6.311730000000001, 7.01392, 6.49224, 6.2205900000000005, 7.44659, 7.388330000000001, 6.85118, 7.24423, 6.632000000000001, 6.90575, 7.10906, 6.944089999999999, 6.83518, 6.222580000000001, 6.84588, 7.17012, 6.52503, 6.2860000000000005, 6.80128, 6.07993 ], "xaxis": "x", "y0": "male", "yaxis": "y" }, { "box": { "visible": false }, "fillcolor": "rgba(0, 0, 0, 0)", "hoverinfo": "x", "hoveron": "points", "jitter": 0.4, "legendgroup": "male", "line": { "color": "rgba(0, 0, 0, 0)", "width": 0 }, "marker": { "color": "hsla(328, 70%, 70%,1)", "line": { "color": "hsla(328, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 1, "size": 9, "symbol": "line-ns" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "all", "scalegroup": "male", "showlegend": false, "side": "both", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.99942, 5.99146, 7.67322, 7.09008, 5.61677, 6.646389999999999, 7.02643, 6.4552, 7.32975, 6.95845, 7.06902, 6.04025, 6.907760000000001, 7.91936, 6.745239999999999, 6.30079, 7.068169999999999, 6.07535, 6.7417, 7.71869, 6.882439999999999, 6.47697, 6.77878, 6.907760000000001, 6.93342, 7.06902, 6.57368, 6.829789999999999, 7.557989999999999, 6.892639999999999, 7.0255399999999995, 6.57925, 7.313219999999999, 6.47697, 7.1309, 6.551080000000001, 6.882439999999999, 6.907760000000001, 6.682110000000001, 6.39693, 6.48004, 6.60665, 7.00307, 6.10925, 5.78383, 6.94505, 6.9546399999999995, 7.17012, 7.11477, 6.993930000000001, 6.593039999999999, 6.49979, 6.5439099999999994, 6.39192, 6.51471, 6.30992, 6.30992, 7.116389999999999, 6.46925, 7.554860000000001, 6.90675, 6.85646, 5.94803, 6.90575, 6.90575, 7.408530000000001, 7.0076, 6.88857, 7.35947, 6.39693, 7.041410000000001, 6.66696, 6.30992, 7.313219999999999, 6.787839999999999, 6.90575, 6.802389999999999, 7.00307, 7.074960000000001, 7.5606, 5.99146, 6.16331, 5.94803, 6.43775, 7.282760000000001, 6.39693, 6.813439999999999, 6.694560000000001, 6.29157, 6.23048, 6.67203, 6.16331, 6.88755, 6.95655, 7.56008, 6.28227, 6.30992, 6.05912, 6.602589999999999, 7.47307, 6.2146099999999995, 6.95655, 6.90575, 6.461469999999999, 7.09008, 7.46737, 6.829789999999999, 6.60665, 6.74052, 6.745239999999999, 7.6009, 6.62007, 6.551080000000001, 6.663130000000001, 7.60589, 6.53669, 6.5582, 6.16121, 6.19236, 6.2146099999999995, 7.37776, 6.6995, 6.58617, 6.23832, 6.27476, 6.48311, 6.69084, 6.54965, 6.745239999999999, 6.882439999999999, 6.663130000000001, 5.70378, 6.7226300000000005, 7.20786, 6.802389999999999, 6.79122, 6.62007, 6.42162, 6.12249, 6.90575, 6.28227, 6.745239999999999, 6.206580000000001, 5.99146, 6.682110000000001, 6.49677, 7.408530000000001, 6.10925, 6.317159999999999, 6.2146099999999995, 6.551080000000001, 6.25575, 7.0884100000000005, 6.16331, 6.68461, 5.8999, 7.01392, 7.1107, 6.9363399999999995, 6.90575, 6.1070199999999994, 6.85646, 6.44572, 6.551080000000001, 6.84588, 8.10168, 7.31255, 5.99645, 6.90575, 6.802389999999999, 7.111510000000001, 6.2146099999999995, 6.66696, 6.907760000000001, 6.90575, 6.6592899999999995, 8.047189999999999, 6.62407, 7.0076, 6.30992, 6.17379, 6.55393, 6.24611, 7.78322, 6.563860000000001, 6.60665, 7.12448, 6.507280000000001, 6.461469999999999, 6.8977, 7.82405, 7.75148, 6.62407, 7.346010000000001, 6.2146099999999995, 7.1309, 6.51471, 5.96615, 6.84055, 7.041410000000001 ], "xaxis": "x", "y0": "male", "yaxis": "y" }, { "fillcolor": "hsla(82, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(82, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.4, "legendgroup": "no", "line": { "color": "hsla(82, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(82, 70%, 70%,1)", "line": { "color": "hsla(82, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 1, "size": 9, "symbol": "line-ns" }, "meanline": { "color": "hsla(82, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage no", "orientation": "h", "pointpos": 0, "points": false, "scalegroup": "no", "scalemode": "count", "showlegend": true, "side": "both", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.55536, 6.39693, 6.907760000000001, 6.50279, 7.313219999999999, 6.10925, 6.993930000000001, 6.614730000000001, 6.30992, 6.62007, 6.17379, 5.99146, 6.2146099999999995, 6.65286, 6.67203, 6.30992, 6.48158, 6.907760000000001, 5.8999, 6.6995, 6.745239999999999, 6.05209, 6.745239999999999, 5.73334, 7.111510000000001, 6.563860000000001, 6.43775, 7.346010000000001, 6.907760000000001, 5.463830000000001, 5.43808, 6.77422, 6.77878, 6.47697, 6.818919999999999, 6.43455, 5.68358, 6.2146099999999995, 6.10925, 6.6783399999999995, 7.1309, 6.39693, 6.77422, 5.96615, 5.90808, 6.39693, 6.16331, 5.0814, 6.49072, 4.605169999999999, 6.802389999999999, 5.8579300000000005, 6.7901, 6.65286, 6.86485, 6.92461, 7.26193, 5.99146, 6.85646, 6.73815, 6.86693, 5.4161, 6.30079, 5.76832, 6.51471, 6.16542, 5.93489, 7.04752, 6.19644, 6.551080000000001, 5.7525699999999995, 6.318969999999999, 5.89715, 5.9454199999999995, 6.52942, 6.4677, 6.06611, 5.70378, 7.04752, 6.768489999999999, 6.2480400000000005, 6.33328, 6.48311, 6.785589999999999, 7.338889999999999, 7.0255399999999995, 7.00307, 5.8999, 5.7365699999999995, 6.62007, 6.36475, 6.90575, 6.65286, 5.7525699999999995, 6.025869999999999, 5.9269300000000005, 6.20456, 6.31536, 5.95324, 6.1070199999999994, 6.05209, 6.39693, 6.408530000000001, 5.9269300000000005, 5.51745, 6.715380000000001, 6.47697, 6.85646, 6.85646, 6.32972, 7.6009, 6.802389999999999, 6.551080000000001, 6.685860000000001, 6.8977, 5.70378, 6.16331, 6.95655, 7.1309, 6.2634, 6.3716099999999996, 6.10925, 6.93537, 6.51323, 5.8141300000000005, 6.56244, 6.834110000000001, 6.23245, 7.1309, 6.57925, 6.30992, 6.34388, 7.24423, 6.43775, 5.34711, 7.279319999999999, 6.83195, 6.58064, 5.99146, 6.33683, 6.802389999999999, 5.8999, 6.29157, 5.59842, 6.5582, 6.354369999999999, 5.95324, 6.62007, 5.9454199999999995, 5.4161, 5.64545, 5.7525699999999995, 6.28972, 6.2952699999999995, 7.46737, 7.1309, 6.05209, 6.551080000000001, 6.63857, 6.621410000000001, 5.82305, 6.85646, 5.78074, 6.12905, 6.02345, 5.70378, 5.883319999999999, 6.62007, 6.2146099999999995, 6.907760000000001, 5.9269300000000005, 5.59842, 6.58617, 6.901739999999999, 5.8579300000000005, 6.8426800000000005, 6.62007, 5.99146, 6.45362, 6.907760000000001, 6.17379, 6.98008, 5.81711, 6.44254, 6.30079, 6.745239999999999, 6.7901, 6.51471, 6.17379, 6.07993, 6.11589, 7.64969, 6.658010000000001, 5.74939, 6.893660000000001, 6.33328, 8.02027, 6.57786, 6.386880000000001, 7.0255399999999995, 5.9269300000000005, 5.8141300000000005, 6.2634, 6.85646, 5.86647, 6.01616, 5.78383, 6.278519999999999, 6.907760000000001, 6.30992, 6.10925, 6.785589999999999, 6.47697, 7.04752, 5.4161, 6.62007, 6.04025, 7.1107, 6.85646, 6.39693, 6.36819, 6.62007, 6.04025, 6.86693, 6.43775, 5.940169999999999, 6.35957, 6.2146099999999995, 6.253830000000001, 6.1025599999999995, 6.1025599999999995, 6.4552, 6.15698, 7.346010000000001, 6.96885, 5.8861, 6.885510000000001, 6.1717, 7.143619999999999, 6.907760000000001, 6.354369999999999, 5.958419999999999, 5.98645, 6.745239999999999, 5.8579300000000005, 6.882439999999999, 6.68461, 6.715380000000001, 5.8861, 6.90575, 6.10925, 6.16331, 6.10925, 6.65286, 7.24423, 6.39693, 6.86693, 5.65948, 5.940169999999999, 6.26149, 6.551080000000001, 6.29157, 6.07535, 6.59715, 6.77992, 5.50126, 6.77422, 6.2634, 5.82008, 6.85646, 6.4708, 6.8426800000000005, 6.15698, 6.893660000000001, 6.43775, 5.8999, 5.99146, 6.33328, 6.9707300000000005, 6.6567300000000005, 6.745239999999999, 6.93049, 6.16331, 6.95655, 6.694560000000001, 6.6783399999999995, 6.849069999999999, 6.72743, 6.6280399999999995, 6.1070199999999994, 6.712960000000001, 7.346010000000001, 5.97635, 6.29157, 6.86901, 6.63726, 6.0282800000000005, 6.39859, 5.42935, 6.6592899999999995, 6.907760000000001, 6.47697, 6.551080000000001, 6.551080000000001, 6.77422, 6.715380000000001, 6.68461, 5.70378, 6.802389999999999, 6.45834, 5.8141300000000005, 5.4161, 6.95655, 6.88755, 6.23441, 6.463030000000001, 6.65286, 7.0255399999999995, 6.39693, 5.8141300000000005, 7.226210000000001, 6.62007, 6.3952599999999995, 6.06379, 5.42053, 5.8861, 6.52209, 5.8861, 7.20786, 6.05209, 6.02102, 6.05209, 5.52146, 5.95584, 6.8966899999999995, 6.8426800000000005, 5.52146, 6.06379, 6.2205900000000005, 6.86066, 6.0822199999999995, 6.9177100000000005, 7.04752, 6.51471, 6.3952599999999995, 6.70073, 6.07993, 6.46925, 5.940169999999999, 6.22654, 6.39693, 7.17012, 6.58755, 6.8254600000000005, 7.04752, 6.50429, 5.99146, 6.62007, 6.62007, 6.2146099999999995, 6.29895, 6.95655, 5.8579300000000005, 6.745239999999999, 7.20786, 7.04316, 6.8533, 5.70378, 5.93225, 6.58617, 6.49072, 6.68461, 5.78383, 6.84055, 5.2983199999999995, 6.35957, 5.99146, 5.82008, 6.10925, 6.04025, 6.51175, 6.39693, 6.59715, 5.01064, 6.73102, 6.77422, 6.30992, 5.5606800000000005, 6.802389999999999, 6.697030000000001, 6.8426800000000005, 6.30992, 7.01392, 7.24423, 6.354369999999999, 6.602589999999999, 6.9622399999999995, 6.424869999999999, 6.259580000000001, 6.593039999999999, 6.802389999999999, 6.58893, 6.43775, 6.2146099999999995, 6.2634, 5.97635, 6.13123, 6.04025, 6.99485, 6.58617, 6.6567300000000005, 6.07993, 6.551080000000001, 7.59287, 6.17587, 5.8693, 6.963189999999999, 6.43775, 6.73459, 6.551080000000001, 6.66823, 5.78383, 6.51471, 5.70378, 6.2634, 6.90575, 6.29157, 7.09008, 6.2146099999999995, 6.63068, 6.795710000000001, 6.682110000000001, 6.19236, 6.12249, 6.907760000000001, 5.68698, 6.12249, 6.14847, 6.77992, 6.62007, 6.8966899999999995, 6.802389999999999, 6.07993, 5.88053, 7.2998, 6.10925, 5.4161, 6.9256, 6.38856, 6.802389999999999, 5.86079, 5.99894, 6.9966800000000005, 6.68461, 5.39363, 5.96615, 5.70378, 6.52209, 5.96615, 7.43838, 5.9135, 6.6896, 6.14419, 7.04752, 6.692080000000001, 6.013719999999999, 6.31355, 6.224559999999999, 6.07304, 6.2146099999999995, 6.802389999999999, 5.95324, 5.8579300000000005, 6.33683, 5.97889, 6.2146099999999995, 6.34388, 6.62007, 6.8977, 7.40914, 7.18917, 5.70378, 6.1070199999999994, 6.30992, 6.36819, 6.23637, 5.52146, 6.47697, 6.68461, 6.36303, 7.507689999999999, 6.748760000000001, 5.5797300000000005, 6.633319999999999, 7.6009, 6.04025, 6.4677, 7.522939999999999, 5.7525699999999995, 6.551080000000001, 6.47697, 6.0330900000000005, 6.802389999999999, 6.79122, 5.8861, 5.82305, 7.71869, 5.52146, 5.39363, 7.401839999999999, 5.43808, 5.95324, 5.8999, 6.2146099999999995, 6.2804, 7.6009, 6.39693, 5.958419999999999, 6.62007, 5.89715, 6.06611, 6.2146099999999995, 7.313219999999999, 6.0845, 6.82437, 5.48064, 6.29157, 7.2998, 5.83188, 6.3952599999999995, 6.95655, 6.07993, 6.27099, 6.6592899999999995, 6.30992, 6.58617, 7.43838, 6.1181, 6.90575, 6.2146099999999995, 6.899719999999999, 5.76832, 5.70378, 6.035480000000001, 6.206580000000001, 6.39859, 6.551080000000001, 6.39693, 7.09008, 7.09008, 5.70378, 6.43775, 6.02345, 5.9269300000000005, 6.3716099999999996, 6.72743, 7.1309, 6.551080000000001, 6.2634, 6.646389999999999, 6.621410000000001, 5.5797300000000005, 6.07993, 6.802389999999999, 6.30992, 6.7226300000000005, 5.4161, 6.47697, 5.50126, 6.72743, 6.583410000000001, 6.44731, 7.24423, 5.82895, 6.85118, 5.67675, 6.62936, 6.2146099999999995, 6.73815, 6.90575, 6.802389999999999, 6.77422, 6.1944099999999995, 6.08904, 6.70073, 6.802389999999999, 6.69827, 6.593039999999999, 5.99146, 6.85646, 5.01064, 6.45362, 6.745239999999999, 6.85646, 6.79347, 6.2146099999999995, 5.65249, 6.745239999999999, 5.8260000000000005, 6.60394, 6.72623, 6.2146099999999995, 6.39693, 7.1507, 6.317159999999999, 7.00307, 6.35611, 6.85646, 5.8579300000000005, 6.55962, 6.7334, 6.18415, 6.05209, 6.802389999999999, 6.68461, 5.84354, 6.46925, 6.84055, 6.787839999999999, 5.99894, 7.1107, 6.593039999999999, 6.30992, 6.83518, 6.77878, 6.967910000000001, 6.68461, 6.77765, 6.90575, 6.30992, 5.8999, 5.8861, 6.23637, 7.216710000000001, 6.65286, 5.78383, 6.2146099999999995, 6.694560000000001, 7.027310000000001, 5.84644, 6.2146099999999995, 6.88857, 7.195189999999999, 5.76205, 5.68698, 6.49527, 6.51915, 6.1203, 7.00307, 5.7365699999999995, 5.7365699999999995, 6.2146099999999995, 5.47227, 6.2146099999999995, 6.72743, 7.04752, 6.30992, 5.70378, 7.251339999999999, 7.17012, 6.551080000000001, 5.7365699999999995, 5.64191, 6.21261, 6.47697, 6.95655, 5.61313, 6.62672, 6.23441, 7.2717, 5.7462, 6.056780000000001, 5.8944, 5.84932, 6.06843, 5.53339, 7.2998, 6.49375, 5.7365699999999995, 5.76832, 5.5797300000000005, 6.23832, 5.79606, 6.354369999999999, 5.52146, 6.19644, 6.19236, 6.49979, 6.6253899999999994, 6.01616, 6.48158, 5.7525699999999995, 6.14633, 6.97261, 6.712960000000001, 6.16331, 6.3716099999999996, 6.62007, 6.30992, 6.47697, 6.62007, 6.551080000000001, 6.18002, 7.18917, 6.745239999999999, 6.19032, 5.96358, 7.313219999999999, 6.39693, 7.09008, 6.14204, 5.5797300000000005, 6.11147, 5.66988, 6.35957, 5.72031, 6.51471, 5.73334, 6.39693, 5.90808, 5.9269300000000005, 6.2186, 6.68461, 6.13123, 6.643789999999999, 5.66988, 6.39693, 6.06611, 6.0822199999999995, 6.77878, 6.57786, 5.43808, 5.8141300000000005, 6.907760000000001, 6.3315, 6.58617, 6.86485, 6.04025, 6.90575, 6.768489999999999, 6.7901, 6.56244, 6.253830000000001, 6.57228, 6.05209, 5.93225, 5.273, 6.2186, 6.1717, 6.47697, 6.05209, 6.2146099999999995, 5.8579300000000005, 6.86693, 6.36303, 5.19296, 6.39693, 7.1309, 5.95584, 6.7093, 6.62007, 6.912739999999999, 6.2634, 6.41017, 6.556780000000001, 5.8141300000000005, 6.30992, 6.39693, 6.26149, 6.84055, 5.94803, 6.65544, 6.3081 ], "xaxis": "x", "y0": "no", "yaxis": "y" }, { "box": { "visible": false }, "fillcolor": "rgba(0, 0, 0, 0)", "hoverinfo": "x", "hoveron": "points", "jitter": 0.4, "legendgroup": "no", "line": { "color": "rgba(0, 0, 0, 0)", "width": 0 }, "marker": { "color": "hsla(82, 70%, 70%,1)", "line": { "color": "hsla(82, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 1, "size": 9, "symbol": "line-ns" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "all", "scalegroup": "no", "showlegend": false, "side": "both", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.55536, 6.39693, 6.907760000000001, 6.50279, 7.313219999999999, 6.10925, 6.993930000000001, 6.614730000000001, 6.30992, 6.62007, 6.17379, 5.99146, 6.2146099999999995, 6.65286, 6.67203, 6.30992, 6.48158, 6.907760000000001, 5.8999, 6.6995, 6.745239999999999, 6.05209, 6.745239999999999, 5.73334, 7.111510000000001, 6.563860000000001, 6.43775, 7.346010000000001, 6.907760000000001, 5.463830000000001, 5.43808, 6.77422, 6.77878, 6.47697, 6.818919999999999, 6.43455, 5.68358, 6.2146099999999995, 6.10925, 6.6783399999999995, 7.1309, 6.39693, 6.77422, 5.96615, 5.90808, 6.39693, 6.16331, 5.0814, 6.49072, 4.605169999999999, 6.802389999999999, 5.8579300000000005, 6.7901, 6.65286, 6.86485, 6.92461, 7.26193, 5.99146, 6.85646, 6.73815, 6.86693, 5.4161, 6.30079, 5.76832, 6.51471, 6.16542, 5.93489, 7.04752, 6.19644, 6.551080000000001, 5.7525699999999995, 6.318969999999999, 5.89715, 5.9454199999999995, 6.52942, 6.4677, 6.06611, 5.70378, 7.04752, 6.768489999999999, 6.2480400000000005, 6.33328, 6.48311, 6.785589999999999, 7.338889999999999, 7.0255399999999995, 7.00307, 5.8999, 5.7365699999999995, 6.62007, 6.36475, 6.90575, 6.65286, 5.7525699999999995, 6.025869999999999, 5.9269300000000005, 6.20456, 6.31536, 5.95324, 6.1070199999999994, 6.05209, 6.39693, 6.408530000000001, 5.9269300000000005, 5.51745, 6.715380000000001, 6.47697, 6.85646, 6.85646, 6.32972, 7.6009, 6.802389999999999, 6.551080000000001, 6.685860000000001, 6.8977, 5.70378, 6.16331, 6.95655, 7.1309, 6.2634, 6.3716099999999996, 6.10925, 6.93537, 6.51323, 5.8141300000000005, 6.56244, 6.834110000000001, 6.23245, 7.1309, 6.57925, 6.30992, 6.34388, 7.24423, 6.43775, 5.34711, 7.279319999999999, 6.83195, 6.58064, 5.99146, 6.33683, 6.802389999999999, 5.8999, 6.29157, 5.59842, 6.5582, 6.354369999999999, 5.95324, 6.62007, 5.9454199999999995, 5.4161, 5.64545, 5.7525699999999995, 6.28972, 6.2952699999999995, 7.46737, 7.1309, 6.05209, 6.551080000000001, 6.63857, 6.621410000000001, 5.82305, 6.85646, 5.78074, 6.12905, 6.02345, 5.70378, 5.883319999999999, 6.62007, 6.2146099999999995, 6.907760000000001, 5.9269300000000005, 5.59842, 6.58617, 6.901739999999999, 5.8579300000000005, 6.8426800000000005, 6.62007, 5.99146, 6.45362, 6.907760000000001, 6.17379, 6.98008, 5.81711, 6.44254, 6.30079, 6.745239999999999, 6.7901, 6.51471, 6.17379, 6.07993, 6.11589, 7.64969, 6.658010000000001, 5.74939, 6.893660000000001, 6.33328, 8.02027, 6.57786, 6.386880000000001, 7.0255399999999995 ], "xaxis": "x", "y0": "no", "yaxis": "y" }, { "fillcolor": "hsla(164, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(164, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.4, "legendgroup": "yes", "line": { "color": "hsla(164, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(164, 70%, 70%,1)", "line": { "color": "hsla(164, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 1, "size": 9, "symbol": "line-ns" }, "meanline": { "color": "hsla(164, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage yes", "orientation": "h", "pointpos": 0, "points": false, "scalegroup": "yes", "scalemode": "count", "showlegend": true, "side": "both", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.99942, 5.99146, 7.67322, 7.09008, 5.61677, 6.646389999999999, 7.02643, 6.4552, 7.32975, 6.95845, 7.06902, 6.04025, 6.907760000000001, 7.91936, 6.745239999999999, 6.30079, 7.068169999999999, 6.07535, 6.7417, 7.71869, 6.882439999999999, 6.47697, 6.77878, 6.907760000000001, 6.93342, 7.06902, 6.57368, 6.829789999999999, 7.557989999999999, 6.892639999999999, 7.0255399999999995, 6.57925, 6.47697, 7.1309, 6.551080000000001, 6.882439999999999, 6.907760000000001, 6.682110000000001, 6.39693, 6.48004, 6.60665, 7.00307, 5.78383, 6.94505, 6.9546399999999995, 7.17012, 7.11477, 6.593039999999999, 6.49979, 6.5439099999999994, 6.39192, 6.51471, 6.30992, 6.30992, 7.116389999999999, 6.46925, 7.554860000000001, 6.90675, 6.85646, 5.94803, 6.90575, 6.90575, 7.408530000000001, 7.0076, 6.88857, 7.35947, 6.39693, 7.041410000000001, 6.66696, 6.30992, 7.313219999999999, 6.787839999999999, 6.90575, 6.802389999999999, 7.00307, 7.074960000000001, 7.5606, 6.16331, 5.94803, 6.43775, 7.282760000000001, 6.39693, 6.813439999999999, 6.694560000000001, 6.29157, 6.23048, 6.16331, 6.88755, 6.95655, 7.56008, 6.28227, 6.30992, 6.05912, 6.602589999999999, 7.47307, 6.2146099999999995, 6.95655, 6.90575, 6.461469999999999, 7.09008, 7.46737, 6.829789999999999, 6.60665, 6.74052, 6.745239999999999, 7.6009, 6.62007, 6.551080000000001, 6.663130000000001, 7.60589, 6.53669, 6.5582, 6.16121, 6.19236, 6.2146099999999995, 7.37776, 6.58617, 6.23832, 6.27476, 6.48311, 6.69084, 6.54965, 6.882439999999999, 6.663130000000001, 5.70378, 6.7226300000000005, 7.20786, 6.802389999999999, 6.79122, 6.62007, 6.42162, 6.12249, 6.90575, 6.28227, 6.206580000000001, 5.99146, 6.682110000000001, 6.49677, 7.408530000000001, 6.10925, 6.317159999999999, 6.2146099999999995, 6.551080000000001, 6.25575, 7.0884100000000005, 6.16331, 6.68461, 5.8999, 7.01392, 7.1107, 6.9363399999999995, 6.90575, 6.1070199999999994, 6.85646, 6.44572, 6.551080000000001, 6.84588, 8.10168, 7.31255, 5.99645, 6.90575, 6.802389999999999, 6.2146099999999995, 6.66696, 6.907760000000001, 6.90575, 6.6592899999999995, 8.047189999999999, 6.62407, 7.0076, 6.30992, 6.17379, 6.55393, 6.3952599999999995, 6.24611, 7.78322, 6.60665, 7.12448, 6.507280000000001, 6.461469999999999, 6.8977, 7.82405, 7.75148, 6.62407, 6.2146099999999995, 7.1309, 6.51471, 5.96615, 6.84055, 7.041410000000001, 6.51471, 6.551080000000001, 7.346010000000001, 6.966019999999999, 6.90575, 7.17012, 6.5820300000000005, 7.04752, 6.354369999999999, 6.59578, 7.82405, 6.5467900000000006, 6.551080000000001, 6.39693, 6.88755, 6.39693, 6.39693, 6.65286, 6.36647, 6.622739999999999, 6.90575, 5.7525699999999995, 6.15273, 7.04752, 5.52146, 6.770789999999999, 6.907760000000001, 7.00125, 7.064760000000001, 7.00307, 6.05209, 6.745239999999999, 7.045780000000001, 6.54535, 6.37673, 6.62007, 6.907760000000001, 6.10925, 6.39693, 8.16052, 6.745239999999999, 7.03527, 6.765039999999999, 7.1309, 6.77422, 6.87213, 6.551080000000001, 6.907760000000001, 6.6567300000000005, 6.80017, 7.226210000000001, 6.10925, 6.90575, 6.70073, 7.495539999999999, 8.05516, 6.9256, 7.06987, 6.694560000000001, 6.90575, 6.43775, 6.97261, 7.29709, 7.179310000000001, 7.313219999999999, 6.7226300000000005, 6.82437, 6.715380000000001, 7.173189999999999, 6.62007, 6.7226300000000005, 6.85118, 6.49224, 7.313219999999999, 6.62007, 7.158510000000001, 6.68461, 6.57647, 5.89715, 6.34564, 6.556780000000001, 6.7093, 6.93925, 7.00307, 6.551080000000001, 6.90575, 6.53669, 6.69084, 7.313219999999999, 6.05209, 6.90575, 6.62007, 6.4552, 6.77422, 6.87005, 6.65544, 6.42162, 5.9269300000000005, 6.317159999999999, 6.42972, 6.62007, 6.96508, 6.19236, 6.61607, 5.5606800000000005, 6.57368, 6.2634, 6.715380000000001, 7.408530000000001, 6.17379, 7.333019999999999, 6.37502, 6.317159999999999, 7.04752, 6.68461, 6.98008, 6.912739999999999, 6.86693, 7.3670800000000005, 6.68461, 7.09008, 6.90575, 6.90575, 6.62007, 6.45362, 6.47697, 6.9431199999999995, 6.90575, 6.10925, 6.67203, 6.7334, 7.34278, 6.90575, 6.658010000000001, 6.9256, 6.90575, 6.91075, 6.6592899999999995, 6.6592899999999995, 6.16331, 7.441319999999999, 6.47851, 7.07834, 6.745239999999999, 7.20786, 6.36475, 6.63857, 7.475910000000001, 6.62007, 6.4892, 7.00307, 6.56948, 7.43838, 7.15383, 7.064760000000001, 6.88755, 7.26193, 6.23245, 6.30445, 6.715380000000001, 7.313219999999999, 7.37776, 5.8579300000000005, 6.85646, 6.2441699999999996, 6.90575, 6.907760000000001, 6.272880000000001, 6.66568, 7.481560000000001, 7.04752, 6.61338, 6.40688, 5.8579300000000005, 7.57558, 6.83518, 6.38856, 6.768489999999999, 6.90575, 6.39693, 6.34739, 7.1507, 6.58617, 7.282760000000001, 7.00307, 6.66058, 6.58064, 6.90575, 6.10925, 6.64249, 6.715380000000001, 6.62007, 7.1309, 5.99146, 6.95655, 6.65286, 6.16331, 6.24611, 7.1309, 7.1333, 7.24423, 6.04025, 6.86901, 6.802389999999999, 6.70073, 6.1203, 6.90575, 7.313219999999999, 6.54822, 6.95655, 7.50108, 6.39693, 7.07918, 5.8579300000000005, 5.70378, 6.7369699999999995, 7.745, 6.87213, 6.39693, 6.30628, 6.8773, 6.708080000000001, 6.818919999999999, 7.041410000000001, 6.882439999999999, 6.94986, 6.703189999999999, 6.37502, 7.03615, 7.37776, 5.66988, 6.907760000000001, 6.882439999999999, 6.752269999999999, 6.48158, 6.47697, 6.802389999999999, 6.984719999999999, 5.9269300000000005, 6.49224, 6.385190000000001, 7.1309, 7.663880000000001, 7.07242, 6.907760000000001, 6.43775, 8.05516, 6.807930000000001, 6.907760000000001, 6.403569999999999, 6.035480000000001, 7.24423, 6.05209, 7.00307, 5.99146, 6.33683, 6.07993, 7.488289999999999, 6.51175, 5.7365699999999995, 6.90575, 6.697030000000001, 6.354369999999999, 6.802389999999999, 6.62007, 6.68461, 6.68835, 5.8260000000000005, 6.85646, 6.44572, 6.95655, 7.20786, 6.3716099999999996, 6.8977, 6.47697, 6.802389999999999, 6.84055, 7.676010000000001, 6.85646, 6.43775, 7.20786, 6.89163, 7.0121199999999995, 6.85646, 6.77422, 6.54965, 6.05209, 6.697030000000001, 6.90575, 6.68461, 6.62007, 7.24423, 6.36819, 6.8844899999999996, 6.62007, 6.745239999999999, 6.19236, 6.39693, 6.85646, 6.7334, 5.98896, 6.48004, 6.55393, 6.5903, 7.02643, 7.15305, 6.19236, 6.43615, 6.6871100000000006, 6.42162, 6.06379, 6.93537, 7.09008, 6.802389999999999, 6.47697, 6.2634, 7.79028, 6.10032, 6.0282800000000005, 7.408530000000001, 6.6174, 6.907760000000001, 6.90575, 5.99146, 6.2441699999999996, 6.00141, 6.79122, 6.9196800000000005, 6.9147300000000005, 6.90575, 6.646389999999999, 6.746410000000001, 6.30992, 6.42972, 6.18826, 6.5467900000000006, 7.522939999999999, 6.7334, 6.07993, 6.907760000000001, 6.90575, 7.04752, 6.66185, 6.47697, 7.23418, 6.54247, 6.753439999999999, 6.51471, 7.034389999999999, 6.65286, 7.262630000000001, 7.20786, 6.90575, 6.30992, 6.984719999999999, 6.30445, 6.05209, 6.34564, 6.95655, 6.49224, 6.62007, 5.82895, 6.39693, 6.06146, 6.43775, 6.03787, 6.3952599999999995, 6.22654, 7.144410000000001, 6.90575, 6.91374, 5.70378, 6.5903, 7.1592899999999995, 6.57786, 6.6783399999999995, 6.72383, 6.41182, 6.53233, 6.907760000000001, 6.7334, 7.236339999999999, 6.20456, 6.10925, 6.715380000000001, 6.72743, 7.084230000000001, 6.97635, 7.20786, 7.00307, 6.35089, 6.59167, 6.461469999999999, 6.984719999999999, 6.53233, 6.646389999999999, 6.39693, 7.459910000000001, 6.19848, 7.0255399999999995, 6.745239999999999, 6.22654, 6.10925, 7.08171, 6.64249, 7.49332, 7.495539999999999, 7.1546199999999995, 7.1309, 6.745239999999999, 6.18415, 5.82895, 6.10925, 6.58617, 6.48158, 6.20456, 7.313219999999999, 6.94022, 6.90575, 6.41836, 6.10925, 7.48717, 7.0193, 6.983789999999999, 6.633319999999999, 6.29157, 7.49109, 6.91672, 6.90575, 6.715380000000001, 6.47697, 7.37212, 6.646389999999999, 7.0184, 6.84055, 7.24423, 7.09008, 6.52942, 7.4553, 7.00307, 6.37502, 7.24423, 6.48158, 6.68461, 6.10925, 6.90575, 6.90575, 7.75577, 6.82437, 6.18415, 6.43775, 6.90575, 7.1107, 6.44572, 6.42162, 6.769639999999999, 6.93245, 6.818919999999999, 6.551080000000001, 6.58617, 6.96508, 6.44572, 6.7093, 6.28972, 7.1082399999999994, 7.135689999999999, 6.49072, 7.251339999999999, 8.51719, 6.807930000000001, 7.14756, 7.33368, 6.77422, 6.60394, 6.68461, 7.1309, 5.99146, 7.201169999999999, 6.10925, 6.68461, 6.39693, 6.927560000000001, 6.85751, 6.95655, 6.08677, 7.24423, 7.1309, 6.17587, 6.30992, 6.36303, 6.77422, 6.2860000000000005, 6.828710000000001, 6.47697, 6.72743, 6.55251, 6.62407, 5.9814099999999994, 6.76273, 7.06902, 5.9269300000000005, 6.80128, 7.313219999999999, 6.966019999999999, 6.6592899999999995, 6.39693, 6.57786, 6.65286, 6.293419999999999, 5.87493, 6.79122, 6.987489999999999, 6.30992, 6.55536, 7.09008, 6.2146099999999995, 7.04752, 6.90575, 6.10925, 6.6783399999999995, 6.39693, 7.259119999999999, 7.43838, 6.47697, 7.1309, 6.77422, 6.2634, 6.739339999999999, 6.47697, 6.90575, 7.279319999999999, 6.815639999999999, 6.65028, 6.27099, 7.17012, 6.354369999999999, 6.29157, 6.802389999999999, 6.602589999999999, 6.47697, 6.58755, 6.77422, 6.907760000000001, 7.09589, 6.882439999999999, 5.45959, 6.05209, 7.67322, 5.8579300000000005, 6.2146099999999995, 7.2957399999999994, 5.84354, 6.802389999999999, 6.58064, 6.2634, 7.00307, 6.90575, 7.21891, 7.503839999999999, 6.45677, 6.950810000000001, 5.97126, 6.23048, 6.15273, 7.57558, 6.96035, 6.3716099999999996, 6.2146099999999995, 6.7334, 6.86066, 6.378430000000001, 6.48004, 7.00307, 6.8200199999999995, 6.47697, 6.90575, 7.39388, 7.4787300000000005, 6.2146099999999995, 6.802389999999999, 6.43775, 7.24065, 6.13773, 6.3952599999999995, 7.1025, 7.04752, 7.09008, 6.77992, 6.9256, 6.035480000000001, 7.22766, 7.475339999999999, 5.72031, 6.272880000000001, 6.01616, 6.27099, 7.91936, 6.85646, 6.354369999999999, 6.2634, 6.51471, 6.92166, 6.253830000000001, 6.745239999999999, 6.30992, 7.3651800000000005, 6.24998, 6.893660000000001, 6.53669, 6.43615, 7.04752, 6.30992, 6.39693, 6.1334, 6.765039999999999, 6.85646, 6.892639999999999, 6.95655, 5.99146, 6.43775, 6.90575, 6.81124, 6.966019999999999, 6.8865300000000005, 6.62007, 7.334980000000001, 6.72743, 6.93245, 7.27031, 7.03878, 7.0255399999999995, 6.10925, 6.83518, 6.77992, 6.68461, 7.696210000000001, 6.53669, 6.52942, 6.126869999999999, 6.54965, 6.715380000000001, 7.31122, 5.8693, 6.90575, 6.0282800000000005, 6.30992, 6.23245, 6.31536, 7.486610000000001, 6.52942, 6.14204, 6.88755, 6.62007, 6.34564, 6.44413, 5.99146, 6.93245, 7.37776, 6.907760000000001, 7.18917, 6.7093, 6.75926, 6.3315, 6.5439099999999994, 6.1717, 7.9459100000000005, 6.77422, 7.424760000000001, 5.70378, 6.43775, 6.90575, 7.6009, 6.90575, 7.46737, 6.694560000000001, 8.16052, 6.984719999999999, 6.802389999999999, 5.99146, 6.802389999999999, 7.32647, 7.1309, 5.96101, 6.62007, 6.84055, 6.58617, 7.1309, 7.00307, 7.78322, 6.62007, 5.7525699999999995, 6.62407, 6.795710000000001, 7.212289999999999, 6.05209, 6.38856, 6.93925, 6.47697, 6.8773, 6.354369999999999, 7.9724699999999995, 6.703189999999999, 6.47697, 6.50429, 6.58617, 6.51471, 6.06611, 6.68461, 6.65544, 7.331060000000001, 6.64118, 6.47697, 7.475910000000001, 6.72743, 7.20786, 6.81124, 7.0201899999999995, 7.279319999999999, 6.80461, 5.99645, 7.10906, 6.40523, 6.77422, 7.01571, 6.54822, 6.14204, 6.47697, 7.24423, 5.93225, 7.46737, 6.69084, 6.47697, 6.85646, 6.88755, 7.24423, 6.95655, 6.67077, 7.313219999999999, 6.98008, 6.75577, 6.566669999999999, 7.09008, 6.697030000000001, 6.79794, 6.2634, 6.61874, 6.64118, 7.1309, 6.98101, 6.90575, 5.90263, 6.17794, 6.77422, 6.96035, 6.6515699999999995, 6.35957, 6.829789999999999, 6.66568, 7.09008, 6.10925, 6.85646, 6.90575, 6.95655, 6.126869999999999, 7.1309, 6.4552, 6.58617, 7.23778, 6.66568, 6.21261, 6.57925, 6.802389999999999, 6.88755, 7.08171, 6.6567300000000005, 7.696210000000001, 6.68461, 6.43775, 6.802389999999999, 6.6592899999999995, 6.48311, 6.408530000000001, 6.84055, 7.17778, 6.2634, 6.4892, 6.95177, 6.785589999999999, 7.033510000000001, 6.57647, 6.23637, 6.530880000000001, 6.43775, 6.90575, 6.30992, 6.85646, 6.79122, 6.30992, 6.62007, 5.76832, 6.81014, 6.551080000000001, 6.56526, 6.551080000000001, 7.09008, 6.9613, 6.7901, 6.95655, 6.65286, 5.9814099999999994, 6.28227, 7.46737, 7.18007, 7.46737, 6.90575, 6.52209, 7.37776, 6.90575, 5.99146, 7.46737, 5.99146, 6.18826, 6.59987, 6.68461, 7.6009, 7.14913, 7.27031, 6.317159999999999, 6.72503, 5.99146, 6.62007, 6.6871100000000006, 7.17012, 6.802389999999999, 5.93754, 6.995769999999999, 6.802389999999999, 6.52356, 6.55251, 6.56526, 6.72383, 7.09008, 6.68461, 6.52209, 7.313219999999999, 6.94698, 6.561030000000001, 6.907760000000001, 7.71869, 5.96615, 6.41673, 6.29157, 7.00307, 6.802389999999999, 6.90375, 6.1944099999999995, 7.09008, 6.90575, 6.47697, 7.26193, 6.60665, 6.424869999999999, 7.37776, 6.13773, 6.907760000000001, 6.858569999999999, 6.745239999999999, 7.495539999999999, 7.1546199999999995, 6.2804, 6.6592899999999995, 6.77422, 6.893660000000001, 6.86693, 7.408530000000001, 6.72743, 6.42972, 6.633319999999999, 7.0579, 6.68461, 7.185389999999999, 7.26543, 7.05099, 6.10925, 6.60123, 7.233460000000001, 6.90575, 6.77194, 6.6567300000000005, 6.3243599999999995, 6.55393, 6.9613, 6.90575, 6.907760000000001, 6.90975, 7.64969, 7.1309, 6.745239999999999, 5.99146, 6.354369999999999, 5.4161, 6.55536, 6.02102, 6.7334, 6.47697, 6.47697, 6.53669, 6.95655, 6.551080000000001, 7.6009, 6.90575, 7.17242, 6.3421199999999995, 6.9196800000000005, 6.51471, 6.85646, 6.551080000000001, 6.35611, 6.90575, 6.34914, 7.696210000000001, 7.17012, 6.802389999999999, 6.253830000000001, 6.90575, 6.48464, 6.49224, 6.82763, 6.90575, 7.014810000000001, 6.2634, 7.04752, 6.90575, 7.20786, 7.02997, 7.803839999999999, 6.31355, 6.89467, 6.829789999999999, 7.17012, 7.54961, 7.28207, 6.69084, 7.1929300000000005, 6.33328, 5.84354, 6.85646, 6.912739999999999, 6.80017, 6.97635, 6.2653, 7.1309, 7.17012, 7.0884100000000005, 7.16627, 6.19644, 6.39693, 5.9814099999999994, 6.90575, 6.90575, 6.6958, 5.01728, 7.279319999999999, 7.136480000000001, 6.608, 6.68461, 7.9831, 6.9828600000000005, 6.30992, 6.2146099999999995, 7.09506, 6.44572, 6.90575, 6.90575, 7.08339, 5.96615, 6.9622399999999995, 7.11233, 6.912739999999999, 6.68461, 6.8254600000000005, 7.346010000000001, 6.68085, 7.24423, 6.62007, 6.1070199999999994, 6.33328, 6.15698, 6.30262, 6.253830000000001, 7.30317, 6.829789999999999, 6.56808, 6.36303, 7.20786, 6.752269999999999, 6.95655, 6.02102, 6.633319999999999, 6.2634, 7.183110000000001, 6.907760000000001, 6.6174, 7.43838, 6.45047, 6.9707300000000005, 6.3952599999999995, 7.09008, 6.49979, 6.94986, 7.06902, 6.68461, 7.22766, 6.68461, 7.1309, 6.975410000000001, 6.2672, 6.50279, 6.551080000000001, 6.59987, 6.7334, 6.2146099999999995, 6.44572, 7.408530000000001, 7.09008, 6.614730000000001, 6.17379, 7.03615, 6.05209, 6.83518, 7.09008, 6.63857, 6.17794, 6.551080000000001, 6.30992, 7.07834, 6.39693, 6.57228, 6.938280000000001, 6.715380000000001, 6.7511, 6.715380000000001, 6.58617, 5.59842, 6.3935900000000006, 7.26193, 6.49072, 6.829789999999999, 6.745239999999999, 6.721430000000001, 6.59715, 6.00389, 6.9828600000000005, 6.62007, 6.85646, 7.04752, 6.23441, 6.551080000000001, 6.14633, 6.563860000000001, 6.73102, 6.2634, 6.3243599999999995, 6.721430000000001, 6.6796, 7.062189999999999, 6.10925, 7.313219999999999, 6.34564, 6.561030000000001, 6.17379, 7.06987, 6.87626, 6.505780000000001, 6.745239999999999, 6.966019999999999, 6.4488900000000005, 7.1309, 6.68461, 6.575080000000001, 6.40192, 6.70073, 6.56808, 6.7334, 6.30992, 7.0775, 6.6796, 6.8384100000000005, 7.03615, 6.85751, 6.745239999999999, 7.313219999999999, 6.86693, 7.08171, 6.85646, 6.47697, 6.47697, 6.28972, 7.46737, 7.2724, 6.61874, 6.30079, 7.0255399999999995, 6.27099, 6.90575, 6.34564, 6.9828600000000005, 7.450080000000001, 6.224559999999999, 6.551080000000001, 6.23441, 7.1309, 6.52209, 7.49332, 6.39192, 6.739339999999999, 7.4832399999999994, 6.16331, 6.68461, 6.90575, 6.90575, 7.1309, 6.86171, 6.715380000000001, 6.551080000000001, 6.33683, 6.9187, 7.0579, 6.35611, 7.02376, 5.5797300000000005, 6.90575, 6.82655, 6.90575, 5.9269300000000005, 7.42833, 5.87212, 6.463030000000001, 7.52833, 6.86797, 6.60665, 6.90575, 6.4677, 7.3651800000000005, 6.748760000000001, 6.77992, 6.975410000000001, 7.43838, 7.82405, 6.5439099999999994, 6.42162, 6.8844899999999996, 7.16085, 6.52209, 6.04025, 5.52146, 6.90575, 7.00307, 6.907760000000001, 6.817830000000001, 7.279319999999999, 6.907760000000001, 7.54961, 7.323169999999999, 6.90575, 6.41017, 6.90575, 6.787839999999999, 6.62007, 7.0967199999999995, 5.9269300000000005, 6.55393, 6.17379, 7.00307, 7.31122, 7.31122, 6.31355, 6.44572, 6.59578, 6.47697, 6.69332, 6.7511, 6.77422, 7.09008, 5.8579300000000005, 7.183110000000001, 7.728860000000001, 6.54965, 7.04752, 7.25488, 6.9256, 6.907760000000001, 5.65249, 7.041410000000001, 6.4599, 6.96035, 7.1333, 6.99942, 6.38012, 7.200419999999999, 7.18007, 7.1309, 6.461469999999999, 6.85646, 7.17012, 7.03527, 6.19848, 6.62007, 7.313219999999999, 6.907760000000001, 6.90575, 7.1452, 5.82895, 6.33683, 6.04025, 6.2146099999999995, 7.8935699999999995, 6.34564, 6.64249, 6.8977, 6.3699, 6.6567300000000005, 6.813439999999999, 6.53669, 6.90575, 6.47697, 6.05209, 7.21524, 6.551080000000001, 6.66568, 6.57925, 6.2146099999999995, 6.8426800000000005, 6.907760000000001, 6.90575, 7.106610000000001, 6.424869999999999, 6.65415, 6.86693, 6.745239999999999, 6.88346, 6.53669, 6.3207699999999996, 7.696210000000001, 7.64779, 7.313219999999999, 6.95655, 6.715380000000001, 6.44254, 6.61338, 6.23245, 6.95655, 6.768489999999999, 7.3981699999999995, 6.68461, 7.12287, 6.813439999999999, 6.752269999999999, 6.551080000000001, 6.7334, 6.318969999999999, 6.79122, 5.95324, 6.745239999999999, 7.1309, 6.54103, 7.06048, 6.24222, 6.68461, 6.05209, 6.78672, 7.09008, 7.1309, 6.47697, 7.1025, 5.9814099999999994, 7.24423, 6.44254, 7.451239999999999, 7.198180000000001, 7.27101, 7.245660000000001, 7.279319999999999, 6.85646, 7.279319999999999, 7.67322, 6.76273, 6.82437, 6.47697, 6.885510000000001, 7.07918, 7.279319999999999, 7.1309, 6.966019999999999, 6.73102, 6.633319999999999, 7.00307, 7.6009, 6.907760000000001, 6.32615, 6.508769999999999, 6.551080000000001, 7.0884100000000005, 6.829789999999999, 7.31986, 6.21661, 7.11802, 6.77422, 7.26193, 6.90575, 7.00307, 5.99146, 7.46737, 6.57786, 6.3081, 6.90575, 6.311730000000001, 6.39693, 6.95655, 6.62007, 6.3952599999999995, 6.48311, 6.39693, 6.90575, 6.60665, 6.90575, 6.318969999999999, 6.802389999999999, 6.70441, 6.51471, 6.77992, 6.68461, 6.29157, 6.40523, 6.18826, 7.24423, 6.83518, 7.09008, 7.84502, 7.1624, 6.813439999999999, 6.907760000000001, 6.68461, 6.14633, 7.17012, 6.53814, 6.882439999999999, 6.36647, 6.47697, 7.54697, 6.60665, 6.68461, 7.408530000000001, 7.2724, 6.46614, 6.90575, 5.7462, 6.36303, 7.04752, 6.551080000000001, 6.58064, 6.17379, 6.83195, 7.20786, 6.62007, 6.95655, 6.90575, 6.34564, 7.09008, 7.014810000000001, 6.73815, 6.65028, 7.03878, 6.10032, 7.266830000000001, 6.95655, 7.20786, 6.602589999999999, 6.551080000000001, 6.87626, 5.16479, 7.54961, 6.551080000000001, 6.49224, 6.58893, 6.60665, 6.907760000000001, 7.64969, 6.9177100000000005, 6.18415, 6.68461, 7.43838, 6.66441, 6.551080000000001, 6.41182, 6.43775, 6.43775, 6.4599, 7.00307, 5.99146, 6.852239999999999, 6.5439099999999994, 6.6515699999999995, 7.522939999999999, 6.16331, 6.551080000000001, 6.907760000000001, 7.04752, 6.44572, 6.3243599999999995, 6.41346, 6.551080000000001, 6.802389999999999, 6.62007, 6.5439099999999994, 6.57925, 6.38012, 6.4151, 6.52209, 6.29157, 6.2146099999999995, 6.97167, 6.75926, 6.66823, 7.37776, 7.1309, 6.90575, 6.10925, 7.408530000000001, 6.39693, 6.04025, 7.0396600000000005, 7.09589, 7.10003, 6.73102, 6.87523, 6.90575, 7.20786, 7.173960000000001, 6.90575, 6.47389, 6.99026, 7.0884100000000005, 6.206580000000001, 6.56526, 6.44572, 6.551080000000001, 6.53379, 6.90575, 6.46614, 6.61338, 6.90575, 6.85646, 6.47389, 6.10925, 6.99118, 6.2441699999999996, 7.1592899999999995, 6.90575, 6.59987, 7.01571, 6.42162, 6.716589999999999, 6.85646, 7.46737, 6.58617, 6.95655, 6.29157, 6.907760000000001, 6.46459, 6.62007, 6.95177, 6.58617, 6.50129, 6.2952699999999995, 6.85646, 6.15698, 6.90575, 7.6009, 7.00307, 6.17379, 6.15273, 6.62007, 7.346010000000001, 6.90575, 6.68461, 6.50429, 7.0942300000000005, 5.78383, 6.54535, 6.3716099999999996, 7.86327, 6.62007, 7.09008, 6.703189999999999, 6.53233, 6.58617, 7.46737, 6.39693, 6.38012, 6.802389999999999, 6.43935, 7.044910000000001, 6.42162, 6.90575, 6.802389999999999, 6.44413, 7.127689999999999, 6.45677, 6.40192, 6.55393, 7.06902, 6.59987, 6.715380000000001, 6.715380000000001, 6.39693, 6.57786, 6.68461, 7.00307, 6.42972, 6.85435, 6.937310000000001, 6.2106, 6.708080000000001, 6.0845, 6.907760000000001, 6.16331, 6.2441699999999996, 6.74406, 6.85646, 6.73221, 5.72031, 7.54961, 6.37673, 6.90575, 6.62007, 6.768489999999999, 6.63595, 5.82895, 6.90575, 6.75577, 6.77194, 6.77422, 5.8999, 6.2146099999999995, 6.2146099999999995, 6.62007, 6.9489, 7.354360000000001, 7.279319999999999, 5.8861, 6.6592899999999995, 7.06305, 6.61338, 7.00307, 6.49224, 6.84588, 6.35611, 6.35611, 6.8977, 7.20786, 6.90575, 7.1309, 7.393260000000001, 6.95655, 6.834110000000001, 6.07993, 7.10988, 6.802389999999999, 6.224559999999999, 6.57925, 6.927560000000001, 6.90575, 7.09008, 7.1309, 6.90575, 6.907760000000001, 6.16542, 6.62007, 7.6009, 6.95655, 6.90575, 6.90575, 6.796819999999999, 6.66568, 6.907760000000001, 6.8533, 6.813439999999999, 7.196689999999999, 6.43615, 6.9147300000000005, 6.77194, 6.90575, 6.90575, 6.47697, 7.0255399999999995, 7.522939999999999, 6.62007, 6.354369999999999, 7.1546199999999995, 6.90575, 6.551080000000001, 6.753439999999999, 6.77422, 7.313219999999999, 6.967910000000001, 6.816739999999999, 7.6009, 6.745239999999999, 7.37588, 6.86485, 6.41346, 6.7093, 6.551080000000001, 6.22654, 7.24423, 6.06146, 6.16331, 7.05359, 6.49224, 6.86171, 6.58617, 7.1309, 6.77422, 7.93737, 6.39693, 6.58617, 7.67322, 6.551080000000001, 6.2146099999999995, 6.77422, 6.99485, 6.45047, 6.66185, 6.94119, 7.21891, 7.57558, 7.495539999999999, 6.10925, 6.59715, 6.03787, 6.556780000000001, 6.354369999999999, 7.6009, 6.83303, 6.551080000000001, 7.279319999999999, 6.354369999999999, 7.925160000000001, 6.77422, 7.183110000000001, 6.1136800000000004, 6.77992, 6.62007, 7.00307, 7.86327, 6.70073, 7.1309, 6.32794, 6.16121, 5.6801699999999995, 6.65286, 6.802389999999999, 6.715380000000001, 6.95655, 6.78333, 6.90575, 6.67582, 6.47697, 6.907760000000001, 6.90575, 6.53233, 6.882439999999999, 7.0255399999999995, 6.23048, 6.715380000000001, 7.872839999999999, 6.49072, 6.90575, 6.4892, 6.63726, 6.3613, 6.79122, 6.53233, 6.05209, 6.697030000000001, 6.8742, 6.08677, 6.6280399999999995, 6.907760000000001, 6.05209, 5.70378, 7.02997, 6.715380000000001, 6.2146099999999995, 6.90575, 7.313219999999999, 6.3699, 6.07074, 6.54822, 6.62007, 6.59987, 6.7226300000000005, 6.51026, 6.907760000000001, 6.50429, 6.47697, 6.58617, 6.77422, 6.8977, 5.9135, 6.17379, 8.047189999999999, 6.93537, 6.2146099999999995, 6.507280000000001, 7.46737, 5.82895, 7.034389999999999, 6.7569300000000005, 6.95655, 6.17794, 6.68461, 7.495539999999999, 6.62007, 6.88755, 6.45205, 6.802389999999999, 6.32794, 6.68461, 8.03916, 6.829789999999999, 6.6745600000000005, 6.714169999999999, 6.43775, 7.00307, 6.43455, 6.90575, 7.346660000000001, 7.6009, 7.10988, 7.24423, 6.7569300000000005, 6.48004, 6.889589999999999, 7.313219999999999, 6.9256, 6.59167, 6.57786, 6.53669, 6.39693, 6.33328, 6.33328, 7.313219999999999, 6.551080000000001, 7.408530000000001, 7.3908, 6.90575, 6.9256, 6.95655, 6.13123, 6.551080000000001, 7.06561, 6.57925, 6.90575, 6.73102, 7.09008, 6.566669999999999, 6.43775, 6.62007, 6.424869999999999, 6.646389999999999, 6.2146099999999995, 6.802389999999999, 6.90575, 6.9613, 6.78672, 6.65286, 7.24423, 7.09008, 6.602589999999999, 6.42162, 7.0422899999999995, 7.034389999999999, 6.59987, 6.44572, 6.20456, 6.57925, 6.38012, 6.16331, 6.818919999999999, 6.551080000000001, 6.53669, 6.95655, 5.76832, 7.2100800000000005, 6.48311, 6.507280000000001, 6.45362, 6.765039999999999, 6.2634, 6.2691, 7.18917, 6.2146099999999995, 6.802389999999999, 6.50129, 6.2634, 7.38647, 6.96885, 6.10925, 7.196689999999999, 6.3403599999999996, 6.818919999999999, 6.72623, 6.90575, 6.7569300000000005, 6.62936, 7.09008, 6.62007, 5.9839400000000005, 6.95655, 7.49332, 6.62007, 6.62007, 6.753439999999999, 6.77422, 6.2653, 7.495539999999999, 6.7334, 6.95655, 6.56526, 6.88755, 7.47307, 6.47697, 6.90575, 6.90575, 7.909860000000001, 6.69084, 6.3716099999999996, 6.52209, 7.106610000000001, 6.40523, 6.69084, 5.627619999999999, 6.6567300000000005, 6.68461, 6.697030000000001, 6.22654, 7.740660000000001, 6.907760000000001, 6.43775, 6.43775, 6.813439999999999, 5.76832, 6.9256, 7.64969, 6.47697, 6.43615, 6.10925, 7.1309, 5.89715, 6.907760000000001, 6.745239999999999, 6.43775, 6.85646, 6.77422, 6.768489999999999, 7.029089999999999, 6.62007, 7.06133, 7.24423, 6.95177, 7.54961, 6.354369999999999, 6.87626, 6.318969999999999, 6.570880000000001, 7.61332, 7.09008, 6.7511, 6.551080000000001, 7.034389999999999, 6.49072, 6.30992, 6.55393, 6.72743, 6.05209, 7.0967199999999995, 6.90575, 6.551080000000001, 6.907760000000001, 6.785589999999999, 6.39693, 6.05209, 6.90575, 6.697030000000001, 6.814539999999999, 6.639880000000001, 6.62007, 7.24423, 6.77194, 6.551080000000001, 6.802389999999999, 5.8999, 6.57228, 7.062189999999999, 6.47697, 6.2441699999999996, 6.829789999999999, 6.95655, 6.907760000000001, 6.38012, 7.293019999999999, 6.91175, 6.45834, 6.556780000000001, 6.5582, 6.91175, 6.45362, 7.1309, 6.8773, 6.955589999999999, 7.80588, 6.9613, 5.4161, 6.907760000000001, 6.90575, 7.18992, 6.90575, 6.385190000000001, 7.31122, 6.6107, 6.807930000000001, 6.79794, 6.1717, 6.16331, 6.6592899999999995, 7.0483899999999995, 6.598510000000001, 6.09131, 7.106610000000001, 6.90575, 7.66153, 7.22548, 6.48768, 6.87213, 7.17012, 6.23245, 6.39693, 7.35244, 7.183110000000001, 6.56948, 8.00637, 7.05272, 6.33328, 6.90575, 6.802389999999999, 6.30992, 6.551080000000001, 6.10925, 6.77422, 6.30992, 6.49979, 6.802389999999999, 7.05704, 7.16858, 6.802389999999999, 6.58617, 6.551080000000001, 7.20564, 7.1507, 6.852239999999999, 7.6009, 6.70564, 5.7525699999999995, 6.90575, 6.11147, 6.95655, 6.84375, 6.95655, 6.8977, 7.34923, 6.93245, 6.34564, 7.03878, 7.400010000000001, 5.8579300000000005, 7.37588, 6.83195, 7.00307, 6.84162, 6.354369999999999, 6.93342, 6.608, 6.85646, 6.61607, 6.056780000000001, 6.90575, 6.697030000000001, 6.5395900000000005, 6.6120399999999995, 6.63726, 7.1309, 6.739339999999999, 7.86327, 6.55393, 6.47697, 6.7511, 6.907760000000001, 6.05912, 6.54535, 6.551080000000001, 7.00307, 6.51471, 7.0422899999999995, 6.57925, 6.66823, 7.1309, 6.551080000000001, 6.44572, 7.00307, 6.253830000000001, 5.99146, 7.2724, 6.907760000000001, 6.90575, 6.3315, 6.3699, 6.39693, 7.82405, 6.95655, 6.09582, 6.07535, 6.90575, 6.8426800000000005, 7.0518600000000005, 6.993930000000001, 6.907760000000001, 6.79122, 6.7511, 6.2146099999999995, 6.78897, 6.67203, 7.259119999999999, 7.6811, 6.745239999999999, 7.27031, 6.721430000000001, 6.90575, 6.563860000000001, 6.99485, 7.37776, 7.06048, 6.30992, 6.84375, 7.0282, 6.66696, 6.90575, 6.47235, 6.56244, 8.0229, 6.90575, 6.6592899999999995, 6.80351, 6.92658, 6.4892, 6.28227, 7.06902, 6.08677, 7.1309, 5.68698, 6.33683, 6.984719999999999, 6.753439999999999, 6.354369999999999, 6.52209, 6.52209, 7.362010000000001, 6.8200199999999995, 6.73102, 6.39693, 6.8773, 6.507280000000001, 6.81014, 6.802389999999999, 6.49072, 7.46737, 6.745239999999999, 6.11147, 6.2634, 7.181589999999999, 6.551080000000001, 7.05618, 5.86079, 6.51619, 6.56948, 6.937310000000001, 6.9256, 6.90575, 6.10925, 6.39693, 7.09008, 6.82437, 6.753439999999999, 6.966019999999999, 6.802389999999999, 7.239210000000001, 6.5582, 6.907760000000001, 6.98008, 6.62407, 5.70378, 6.551080000000001, 6.41673, 7.313219999999999, 6.62007, 6.84588, 6.42162, 6.68461, 6.715380000000001, 6.85646, 6.57786, 5.8579300000000005, 6.2146099999999995, 7.313219999999999, 7.37776, 6.30992, 7.1309, 6.69084, 6.70564, 5.7462, 6.16752, 7.279319999999999, 6.73102, 6.53669, 6.24222, 7.03527, 7.04752, 6.507280000000001, 6.93049, 6.59715, 7.09008, 6.45047, 6.33328, 6.68461, 6.62007, 6.90575, 7.04752, 6.6346300000000005, 6.59167, 6.41836, 7.2724, 6.56526, 7.91936, 6.54103, 6.90575, 7.57558, 6.20456, 6.802389999999999, 7.484369999999999, 6.90575, 6.51471, 5.7462, 6.39693, 6.94698, 7.084230000000001, 6.96885, 6.907760000000001, 7.00307, 7.293019999999999, 7.173189999999999, 6.77422, 6.815639999999999, 6.43294, 6.813439999999999, 6.90575, 6.88857, 6.90575, 7.09008, 6.90575, 7.226210000000001, 7.279319999999999, 6.73102, 6.05912, 6.68461, 6.6592899999999995, 7.91936, 6.507280000000001, 7.00307, 6.47697, 6.551080000000001, 6.90575, 6.2146099999999995, 6.907760000000001, 6.715380000000001, 6.96885, 6.68461, 6.57368, 6.745239999999999, 6.53669, 5.76832, 6.2146099999999995, 6.8426800000000005, 7.520230000000001, 5.5797300000000005, 6.51323, 7.1082399999999994, 6.5582, 7.17012, 6.768489999999999, 6.39693, 7.393260000000001, 6.6958, 6.95177, 6.2146099999999995, 6.5582, 6.9613, 6.4892, 7.676010000000001, 6.715380000000001, 6.907760000000001, 6.3935900000000006, 7.54961, 6.86171, 5.79606, 6.83087, 6.6783399999999995, 6.54535, 6.593039999999999, 6.77422, 6.44572, 7.04752, 7.37776, 7.17012, 6.8426800000000005, 7.00307, 6.126869999999999, 6.50129, 6.8773, 6.56526, 6.354369999999999, 6.96885, 6.575080000000001, 6.62007, 6.42811, 6.752269999999999, 6.90575, 6.78672, 8.12089, 6.829789999999999, 7.00307, 6.2146099999999995, 6.1944099999999995, 7.740660000000001, 6.907760000000001, 6.2146099999999995, 6.96979, 6.68461, 7.14283, 6.139880000000001, 7.1293, 6.89467, 5.43808, 7.183110000000001, 6.5467900000000006, 6.34388, 6.39024, 7.0255399999999995, 6.424869999999999, 6.68461, 6.49979, 7.37776, 6.7901, 6.17379, 6.4488900000000005, 6.614730000000001, 6.60665, 7.09008, 6.51323, 6.93245, 6.6592899999999995, 6.30992, 7.37776, 6.09807, 6.8977, 6.35784, 6.37502, 6.57925, 7.7021, 7.46737, 7.6009, 7.36455, 6.59715, 6.639880000000001, 6.36303, 5.82895, 6.59715, 6.62007, 6.551080000000001, 7.09008, 6.78333, 6.563860000000001, 7.0076, 6.880380000000001, 6.745239999999999, 6.82437, 6.4677, 7.127689999999999, 7.1309, 6.62007, 7.82084, 7.288930000000001, 6.39693, 6.68461, 7.10988, 6.563860000000001, 6.354369999999999, 6.7546, 7.196689999999999, 5.99146, 6.74052, 6.67203, 6.86485, 7.1309, 7.6009, 6.6107, 7.24423, 6.9256, 7.11314, 6.86693, 6.58617, 6.85646, 5.70378, 6.2146099999999995, 6.92363, 6.84588, 6.86171, 6.813439999999999, 6.50279, 5.7589, 6.7417, 7.18917, 6.2146099999999995, 6.93245, 6.78897, 6.74759, 7.00307, 6.3935900000000006, 7.09008, 7.84385, 6.802389999999999, 6.57647, 6.78672, 6.39693, 6.9707300000000005, 8.3082, 7.1309, 7.17012, 6.593039999999999, 6.90575, 6.62007, 6.86693, 6.259580000000001, 6.41999, 5.52146, 6.907760000000001, 7.43838, 6.64509, 7.09008, 6.39693, 7.0255399999999995, 7.903969999999999, 6.745239999999999, 6.80461, 7.037030000000001, 7.04752, 6.47697, 6.65286, 6.76388, 6.90575, 6.87626, 6.90575, 7.1507, 7.07834, 7.21082, 6.52942, 6.701960000000001, 6.8426800000000005, 6.0282800000000005, 6.3207699999999996, 6.24611, 6.57786, 6.18826, 6.975410000000001, 7.16085, 6.30992, 6.83303, 7.61874, 6.48158, 6.44095, 6.99485, 6.907760000000001, 6.8384100000000005, 6.79122, 6.551080000000001, 6.6695, 7.279319999999999, 6.57925, 6.813439999999999, 6.30992, 6.68461, 6.47389, 6.802389999999999, 6.785589999999999, 7.313219999999999, 6.551080000000001, 7.29097, 5.8861, 6.98008, 6.802389999999999, 7.20786, 6.802389999999999, 6.983789999999999, 6.75926, 6.68461, 6.55962, 6.8977, 6.05912, 6.90575, 7.4570300000000005, 7.1309, 6.566669999999999, 6.829789999999999, 6.85646, 6.643789999999999, 6.77422, 7.90101, 6.32794, 6.25767, 7.81883, 6.966019999999999, 6.33328, 6.77422, 6.8384100000000005, 6.62007, 6.813439999999999, 6.551080000000001, 6.920669999999999, 7.195189999999999, 6.62007, 6.3315, 6.69332, 6.745239999999999, 6.90575, 7.0396600000000005, 6.90575, 6.07535, 6.30992, 6.96885, 6.47697, 6.39693, 7.24423, 7.12367, 7.17012, 6.18415, 6.68461, 6.44413, 6.4677, 6.47697, 6.907760000000001, 6.4552, 7.1546199999999995, 7.37776, 7.18917, 6.10925, 6.5903, 7.136480000000001, 5.95584, 7.03878, 6.461469999999999, 6.697030000000001, 5.9839400000000005, 6.66568, 6.2146099999999995, 6.56526, 6.51471, 5.61677, 6.49375, 7.06048, 6.715380000000001, 6.10925, 6.95655, 7.1309, 6.95655, 6.90575, 6.76273, 6.311730000000001, 6.29157, 6.86693, 6.68461, 6.90575, 6.95655, 7.17012, 7.0255399999999995, 6.86171, 7.495539999999999, 6.49224, 6.90575, 6.8865300000000005, 7.57353, 6.602589999999999, 6.30992, 6.23048, 6.5467900000000006, 6.530880000000001, 6.802389999999999, 7.6009, 6.46459, 6.834110000000001, 7.313219999999999, 6.802389999999999, 6.66441, 7.251339999999999, 5.87774, 7.43838, 6.35957, 6.43775, 6.5820300000000005, 6.768489999999999, 7.17012, 5.6733199999999995, 6.90575, 7.281389999999999, 7.17702, 6.90575, 6.95845, 6.44572, 6.583410000000001, 6.91672, 6.90575, 8.229510000000001, 7.027310000000001, 6.551080000000001, 7.136480000000001, 6.71174, 6.74288, 7.0934, 7.200419999999999, 6.83087, 7.37776, 6.79122, 6.67203, 6.55393, 6.39693, 7.46737, 6.802389999999999, 7.165489999999999, 6.62007, 6.90575, 7.0255399999999995, 7.70661, 6.47389, 6.35957, 6.07535, 6.907760000000001, 7.20786, 6.43775, 6.556780000000001, 6.966019999999999, 6.95273, 6.3716099999999996, 6.745239999999999, 6.43133, 6.907760000000001, 6.68461, 6.64898, 6.28972, 7.00307, 6.2146099999999995, 6.66058, 7.016610000000001, 7.09008, 6.85646, 6.90575, 5.66988, 7.09008, 6.53379, 6.84801, 5.99146, 7.21891, 6.90575, 6.745239999999999, 7.07242, 7.6009, 6.817830000000001, 7.346010000000001, 6.6592899999999995, 7.46737, 6.975410000000001, 6.79122, 6.719010000000001, 6.720219999999999, 6.90575, 6.90575, 6.68336, 6.892639999999999, 6.86485, 6.947939999999999, 6.955589999999999, 6.90575, 6.551080000000001, 5.66988, 7.0255399999999995, 7.04752, 6.3935900000000006, 6.807930000000001, 6.74288, 6.802389999999999, 6.4599, 6.354369999999999, 6.18208, 7.398789999999999, 7.37776, 7.35883, 6.47697, 7.18463, 6.745239999999999, 7.05876, 6.84588, 6.68461, 7.64969, 6.59578, 6.715380000000001, 6.04025, 6.507280000000001, 6.23441, 7.098380000000001, 6.2804, 7.6256, 6.633319999999999, 6.6346300000000005, 6.43455, 6.52649, 7.54961, 7.09008, 6.36475, 5.7462, 6.77422, 6.10925, 6.73459, 7.1293, 6.49224, 6.28413, 7.17012, 6.90575, 6.6515699999999995, 6.56948, 6.80461, 6.03787, 7.313219999999999, 6.11589, 6.68461, 7.09008, 5.96615, 8.26873, 6.17794, 6.3935900000000006, 7.12287, 6.43775, 5.95324, 6.6796, 6.758089999999999, 6.68461, 6.90575, 7.495539999999999, 6.84588, 6.745239999999999, 6.21261, 6.10032, 8.048789999999999, 7.313219999999999, 6.802389999999999, 6.745239999999999, 6.907760000000001, 6.90575, 5.82305, 6.90575, 7.17012, 6.2441699999999996, 8.08641, 5.59842, 7.08171, 6.9594, 6.97354, 7.30653, 6.55962, 6.58617, 6.74406, 7.56008, 6.1944099999999995, 7.408530000000001, 6.61338, 6.01616, 6.32794, 7.18007, 6.74052, 6.95655, 6.58617, 6.66568, 6.85646, 6.44572, 7.313219999999999, 7.1309, 5.99146, 6.18826, 5.59842, 6.49224, 6.821110000000001, 6.56526, 6.47697, 6.813439999999999, 7.43838, 6.30262, 6.38351, 6.551080000000001, 5.45959, 6.43775, 6.90575, 6.53233, 6.61874, 6.06843, 6.1203, 7.88231, 6.90575, 6.7569300000000005, 5.7651900000000005, 6.938280000000001, 7.08255, 6.41346, 6.882439999999999, 7.37776, 6.44413, 6.90575, 6.51471, 6.5439099999999994, 6.551080000000001, 6.90575, 7.35372, 7.135689999999999, 7.46737, 6.63595, 6.802389999999999, 7.346010000000001, 6.90575, 6.86693, 7.1309, 5.78383, 6.829789999999999, 6.65286, 6.7334, 7.2998, 6.65415, 6.9256, 6.90575, 6.39693, 6.52209, 6.3699, 6.770789999999999, 6.39693, 6.49072, 6.02345, 7.32251, 6.13123, 6.29711, 7.04752, 6.799060000000001, 6.272880000000001, 6.49527, 6.57925, 6.697030000000001, 6.703189999999999, 7.04752, 6.65286, 6.752269999999999, 6.2146099999999995, 6.42162, 6.90575, 7.014810000000001, 6.62007, 6.85646, 6.745239999999999, 6.9256, 6.58617, 6.51471, 5.96615, 6.90575, 6.52942, 6.16331, 6.56526, 6.813439999999999, 7.09008, 5.8141300000000005, 6.769639999999999, 6.08677, 6.7369699999999995, 7.064760000000001, 7.11883, 6.51175, 7.46737, 6.57228, 6.551080000000001, 7.67322, 6.35957, 6.907760000000001, 6.58617, 5.8579300000000005, 7.1309, 6.57925, 6.43294, 6.39693, 7.46737, 6.95655, 6.54247, 6.3716099999999996, 7.293019999999999, 6.08677, 7.64969, 6.95655, 8.13153, 6.3613, 6.10925, 6.551080000000001, 6.907760000000001, 6.907760000000001, 6.43775, 6.3243599999999995, 6.83518, 6.993930000000001, 6.6567300000000005, 6.984719999999999, 7.062189999999999, 6.907760000000001, 6.77992, 7.195189999999999, 7.185389999999999, 6.07993, 6.01616, 6.72743, 6.33683, 6.70073, 7.20786, 7.0103100000000005, 6.551080000000001, 7.1309, 6.7334, 7.495539999999999, 6.24028, 6.354369999999999, 6.90575, 6.551080000000001, 7.00307, 6.85013, 7.0255399999999995, 6.39693, 7.495539999999999, 6.768489999999999, 6.23441, 6.461469999999999, 6.5395900000000005, 6.907760000000001, 6.05209, 6.28413, 6.126869999999999, 7.12287, 6.745239999999999, 7.21744, 6.39693, 6.49072, 6.47697, 6.05209, 7.24423, 6.802389999999999, 7.09008, 6.44572, 7.00307, 6.966019999999999, 6.721430000000001, 6.62936, 6.813439999999999, 6.28227, 7.64969, 6.9575, 7.3696, 6.461469999999999, 6.90575, 7.20786, 6.78333, 6.57647, 6.5903, 7.00307, 6.74993, 6.57925, 6.907760000000001, 6.16331, 6.59578, 6.802389999999999, 6.272880000000001, 7.014810000000001, 6.2146099999999995, 6.43615, 6.64509, 6.608, 6.68461, 6.58617, 6.62007, 7.00307, 6.95655, 6.12249, 6.62007, 7.09008, 6.83303, 6.98101, 6.6871100000000006, 6.81014, 7.37776, 6.51767, 6.85435, 7.64969, 7.91936, 6.907760000000001, 6.9256, 6.6733, 7.5574699999999995, 6.13773, 6.67203, 6.30992, 6.47697, 6.8956800000000005, 6.56948, 6.33328, 6.802389999999999, 6.9707300000000005, 8.00637, 6.65286, 6.57368, 5.70711, 6.57786, 6.92363, 6.57368, 7.37776, 6.2146099999999995, 7.408530000000001, 7.1155800000000005, 7.91936, 7.09008, 7.37776, 7.1309, 6.58617, 6.14633, 6.6592899999999995, 6.90575, 7.092569999999999, 6.86485, 7.57558, 7.200419999999999, 6.95655, 6.2146099999999995, 6.05209, 6.44254, 6.4599, 6.60394, 6.975410000000001, 7.400010000000001, 8.537, 6.07993, 7.36645, 6.67708, 6.99942, 6.61338, 7.64969, 6.68461, 6.57925, 7.09008, 7.1082399999999994, 6.83518, 7.09008, 6.58617, 5.8861, 6.90575, 6.43615, 6.84162, 7.313219999999999, 6.55962, 6.07993, 6.3952599999999995, 6.633319999999999, 6.42162, 7.09008, 7.313219999999999, 6.30992, 6.79122, 6.720219999999999, 6.66823, 7.2861899999999995, 6.802389999999999, 6.703189999999999, 5.98896, 7.620710000000001, 7.09008, 7.6009, 6.28972, 6.48768, 6.68461, 6.41182, 7.37776, 7.525639999999999, 6.74993, 6.72623, 7.09008, 7.25347, 7.585789999999999, 6.45362, 6.354369999999999, 6.984719999999999, 6.90575, 6.937310000000001, 7.0775, 7.346010000000001, 7.027310000000001, 6.907760000000001, 6.9489, 6.907760000000001, 7.495539999999999, 6.01127, 6.802389999999999, 6.745239999999999, 6.90575, 6.633319999999999, 6.80572, 6.2480400000000005, 6.2634, 6.31355, 7.35819, 6.49677, 6.68461, 6.633319999999999, 7.30317, 6.95655, 6.907760000000001, 5.742999999999999, 6.39693, 7.313219999999999, 7.09008, 6.47697, 7.196689999999999, 6.47697, 6.30262, 6.745239999999999, 7.07412, 6.354369999999999, 6.10925, 6.68461, 7.42357, 6.95655, 6.715380000000001, 6.9828600000000005, 7.02465, 6.49224, 6.49979, 6.27099, 5.8861, 7.393260000000001, 6.829789999999999, 6.32794, 6.28786, 5.9839400000000005, 6.68461, 5.84354, 6.62007, 7.12287, 6.2146099999999995, 6.84162, 7.00307, 6.2146099999999995, 6.983789999999999, 6.35611, 6.17379, 6.95655, 6.39693, 6.88755, 7.04316, 6.90575, 6.84162, 6.45362, 6.83518, 6.85646, 6.46925, 5.99146, 6.62007, 7.00307, 5.99146, 6.22654, 6.633319999999999, 6.77308, 7.1107, 6.95655, 6.967910000000001, 6.995769999999999, 6.66568, 6.594410000000001, 6.90575, 6.5439099999999994, 6.62007, 6.60665, 7.04752, 7.062189999999999, 7.313219999999999, 7.04752, 7.0884100000000005, 6.937310000000001, 6.90575, 6.23441, 6.25767, 6.551080000000001, 6.90575, 7.09008, 6.68461, 6.2146099999999995, 6.386880000000001, 6.44413, 6.58617, 6.10925, 6.90073, 6.745239999999999, 7.2233, 6.8773, 6.813439999999999, 7.037030000000001, 6.40523, 6.2146099999999995, 6.17379, 7.6009, 6.30992, 6.685860000000001, 5.99146, 6.38856, 6.47697, 7.46737, 6.551080000000001, 6.9226399999999995, 6.87213, 6.73102, 6.30992, 7.45298, 5.72359, 6.882439999999999, 5.940169999999999, 6.90675, 6.551080000000001, 6.9147300000000005, 6.85646, 6.563860000000001, 6.381819999999999, 5.78996, 6.769639999999999, 6.73102, 7.06133, 6.68461, 6.2146099999999995, 6.4708, 7.08171, 6.90575, 7.6009, 6.52062, 6.907760000000001, 6.60935, 6.51471, 6.9828600000000005, 6.85646, 6.30992, 7.338889999999999, 6.22654, 6.311730000000001, 7.01392, 6.49224, 6.2205900000000005, 7.44659, 7.388330000000001, 6.85118, 7.24423, 6.632000000000001, 6.90575, 7.10906, 6.944089999999999, 6.83518, 6.222580000000001, 6.84588, 7.17012, 6.52503, 6.2860000000000005, 6.80128, 6.07993 ], "xaxis": "x", "y0": "yes", "yaxis": "y" }, { "box": { "visible": false }, "fillcolor": "rgba(0, 0, 0, 0)", "hoverinfo": "x", "hoveron": "points", "jitter": 0.4, "legendgroup": "yes", "line": { "color": "rgba(0, 0, 0, 0)", "width": 0 }, "marker": { "color": "hsla(164, 70%, 70%,1)", "line": { "color": "hsla(164, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 1, "size": 9, "symbol": "line-ns" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "all", "scalegroup": "yes", "showlegend": false, "side": "both", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.99942, 5.99146, 7.67322, 7.09008, 5.61677, 6.646389999999999, 7.02643, 6.4552, 7.32975, 6.95845, 7.06902, 6.04025, 6.907760000000001, 7.91936, 6.745239999999999, 6.30079, 7.068169999999999, 6.07535, 6.7417, 7.71869, 6.882439999999999, 6.47697, 6.77878, 6.907760000000001, 6.93342, 7.06902, 6.57368, 6.829789999999999, 7.557989999999999, 6.892639999999999, 7.0255399999999995, 6.57925, 6.47697, 7.1309, 6.551080000000001, 6.882439999999999, 6.907760000000001, 6.682110000000001, 6.39693, 6.48004, 6.60665, 7.00307, 5.78383, 6.94505, 6.9546399999999995, 7.17012, 7.11477, 6.593039999999999, 6.49979, 6.5439099999999994, 6.39192, 6.51471, 6.30992, 6.30992, 7.116389999999999, 6.46925, 7.554860000000001, 6.90675, 6.85646, 5.94803, 6.90575, 6.90575, 7.408530000000001, 7.0076, 6.88857, 7.35947, 6.39693, 7.041410000000001, 6.66696, 6.30992, 7.313219999999999, 6.787839999999999, 6.90575, 6.802389999999999, 7.00307, 7.074960000000001, 7.5606, 6.16331, 5.94803, 6.43775, 7.282760000000001, 6.39693, 6.813439999999999, 6.694560000000001, 6.29157, 6.23048, 6.16331, 6.88755, 6.95655, 7.56008, 6.28227, 6.30992, 6.05912, 6.602589999999999, 7.47307, 6.2146099999999995, 6.95655, 6.90575, 6.461469999999999, 7.09008, 7.46737, 6.829789999999999, 6.60665, 6.74052, 6.745239999999999, 7.6009, 6.62007, 6.551080000000001, 6.663130000000001, 7.60589, 6.53669, 6.5582, 6.16121, 6.19236, 6.2146099999999995, 7.37776, 6.58617, 6.23832, 6.27476, 6.48311, 6.69084, 6.54965, 6.882439999999999, 6.663130000000001, 5.70378, 6.7226300000000005, 7.20786, 6.802389999999999, 6.79122, 6.62007, 6.42162, 6.12249, 6.90575, 6.28227, 6.206580000000001, 5.99146, 6.682110000000001, 6.49677, 7.408530000000001, 6.10925, 6.317159999999999, 6.2146099999999995, 6.551080000000001, 6.25575, 7.0884100000000005, 6.16331, 6.68461, 5.8999, 7.01392, 7.1107, 6.9363399999999995, 6.90575, 6.1070199999999994, 6.85646, 6.44572, 6.551080000000001, 6.84588, 8.10168, 7.31255, 5.99645, 6.90575, 6.802389999999999, 6.2146099999999995, 6.66696, 6.907760000000001, 6.90575, 6.6592899999999995, 8.047189999999999, 6.62407, 7.0076, 6.30992, 6.17379, 6.55393, 6.3952599999999995, 6.24611, 7.78322, 6.60665, 7.12448, 6.507280000000001, 6.461469999999999, 6.8977, 7.82405, 7.75148, 6.62407, 6.2146099999999995, 7.1309, 6.51471, 5.96615, 6.84055, 7.041410000000001, 6.51471, 6.551080000000001, 7.346010000000001, 6.966019999999999, 6.90575, 7.17012, 6.5820300000000005, 7.04752, 6.354369999999999, 6.59578 ], "xaxis": "x", "y0": "yes", "yaxis": "y" }, { "fillcolor": "hsla(246, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(246, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.4, "legendgroup": "female", "line": { "color": "hsla(246, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(246, 70%, 70%,1)", "line": { "color": "hsla(246, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.3, "size": 9, "symbol": "circle" }, "meanline": { "color": "hsla(246, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage female", "orientation": "h", "pointpos": 0, "points": false, "scalegroup": "female", "scalemode": "count", "showlegend": true, "side": "both", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.55536, 6.39693, 6.907760000000001, 6.50279, 6.614730000000001, 6.30992, 6.62007, 6.17379, 6.2146099999999995, 6.65286, 6.30992, 6.48158, 6.907760000000001, 5.8999, 6.05209, 5.73334, 6.3952599999999995, 6.43775, 6.907760000000001, 5.463830000000001, 5.43808, 6.77422, 6.47697, 5.68358, 6.2146099999999995, 6.10925, 6.6783399999999995, 7.1309, 6.39693, 6.77422, 5.96615, 5.90808, 6.39693, 5.0814, 7.09008, 4.605169999999999, 6.7901, 6.65286, 6.86485, 6.92461, 5.99146, 6.85646, 5.4161, 6.30079, 5.76832, 6.16542, 5.93489, 7.04752, 6.19644, 5.7525699999999995, 6.318969999999999, 5.9454199999999995, 6.4677, 6.768489999999999, 6.2480400000000005, 6.33328, 6.48311, 7.00307, 5.8999, 6.62007, 6.36475, 6.65286, 5.7525699999999995, 6.025869999999999, 6.20456, 6.31536, 5.95324, 6.1070199999999994, 6.05209, 5.9269300000000005, 5.51745, 6.715380000000001, 6.85646, 6.85646, 6.32972, 6.802389999999999, 6.16331, 6.95655, 6.2634, 6.3716099999999996, 6.10925, 6.93537, 6.56244, 6.23245, 7.1309, 6.57925, 6.30992, 6.34388, 5.34711, 7.279319999999999, 6.58064, 6.33683, 6.5582, 6.354369999999999, 5.95324, 5.9454199999999995, 5.64545, 5.7525699999999995, 6.28972, 6.2952699999999995, 6.05209, 6.551080000000001, 6.621410000000001, 5.82305, 6.12905, 6.02345, 5.883319999999999, 6.907760000000001, 5.59842, 6.58617, 6.901739999999999, 6.10925, 5.8579300000000005, 6.17379, 5.81711, 6.44254, 6.30079, 6.745239999999999, 6.7901, 6.51471, 6.17379, 6.07993, 6.11589, 5.74939, 6.33328, 6.386880000000001, 7.0255399999999995, 5.8141300000000005, 5.86647, 6.01616, 6.278519999999999, 6.30992, 6.10925, 6.785589999999999, 6.47697, 7.04752, 6.04025, 6.39693, 6.36819, 6.43775, 5.940169999999999, 6.35957, 6.2146099999999995, 6.253830000000001, 6.1025599999999995, 6.1025599999999995, 6.15698, 6.96885, 6.885510000000001, 6.1717, 5.958419999999999, 5.98645, 5.8579300000000005, 6.715380000000001, 5.8861, 6.10925, 6.65286, 6.39693, 5.65948, 5.940169999999999, 6.26149, 6.551080000000001, 6.29157, 5.50126, 6.77422, 5.82008, 6.4708, 6.15698, 5.8999, 5.99146, 6.33328, 6.9707300000000005, 6.6567300000000005, 6.745239999999999, 6.93049, 6.849069999999999, 6.1070199999999994, 6.712960000000001, 5.97635, 6.29157, 6.86901, 6.0282800000000005, 6.39859, 5.42935, 6.6592899999999995, 6.907760000000001, 6.47697, 6.551080000000001, 6.68461, 6.45834, 5.8141300000000005, 6.88755, 6.23441, 6.463030000000001, 6.65286, 6.39693, 5.8141300000000005, 6.3952599999999995, 6.06379, 5.42053, 5.8861, 6.52209, 5.8861, 7.20786, 6.05209, 5.52146, 5.52146, 6.06379, 6.2205900000000005, 6.0822199999999995, 7.04752, 6.3952599999999995, 6.70073, 6.07993, 6.46925, 6.22654, 6.39693, 6.58755, 6.8254600000000005, 5.99146, 6.62007, 6.62007, 6.29895, 5.8579300000000005, 6.745239999999999, 5.93225, 6.49072, 5.78383, 6.35957, 5.82008, 6.04025, 6.39693, 6.59715, 5.01064, 6.77422, 6.30992, 5.5606800000000005, 6.8426800000000005, 6.30992, 6.602589999999999, 6.424869999999999, 6.259580000000001, 6.2634, 5.97635, 6.04025, 6.07993, 6.551080000000001, 6.17587, 5.8693, 6.43775, 6.73459, 5.70378, 6.49224, 6.29157, 6.2146099999999995, 6.63068, 6.682110000000001, 6.19236, 5.68698, 6.12249, 6.14847, 5.88053, 6.10925, 6.38856, 5.86079, 5.99894, 5.39363, 5.96615, 6.52209, 5.96615, 5.9135, 6.6896, 6.14419, 6.692080000000001, 6.013719999999999, 6.224559999999999, 6.07304, 6.2146099999999995, 6.802389999999999, 5.95324, 6.43615, 5.8579300000000005, 6.33683, 5.97889, 6.2146099999999995, 6.34388, 7.18917, 6.1070199999999994, 6.30992, 6.36819, 6.23637, 5.52146, 6.47697, 6.36303, 6.748760000000001, 6.633319999999999, 6.04025, 5.7525699999999995, 6.47697, 6.0330900000000005, 5.8861, 5.82305, 7.0422899999999995, 5.39363, 5.43808, 5.95324, 5.8999, 6.2146099999999995, 6.2804, 6.39693, 5.89715, 6.06611, 6.2146099999999995, 6.0845, 5.48064, 6.3952599999999995, 6.27099, 6.58617, 6.2146099999999995, 6.73102, 6.035480000000001, 6.206580000000001, 6.39859, 6.551080000000001, 6.43775, 6.02345, 5.9269300000000005, 6.72743, 6.2634, 6.646389999999999, 5.5797300000000005, 6.07993, 5.4161, 6.47697, 5.50126, 6.583410000000001, 6.44731, 5.82895, 6.2146099999999995, 6.73815, 6.802389999999999, 6.77422, 6.1944099999999995, 6.70073, 6.0282800000000005, 6.593039999999999, 6.85646, 5.01064, 6.745239999999999, 6.85646, 6.79347, 5.65249, 6.39693, 6.317159999999999, 6.35611, 5.8579300000000005, 6.18415, 6.05209, 5.84354, 6.46925, 5.99894, 6.745239999999999, 6.77765, 6.30992, 5.8999, 5.8861, 7.216710000000001, 6.65286, 6.2146099999999995, 6.88857, 5.76205, 5.68698, 6.1203, 5.7365699999999995, 5.7365699999999995, 6.2146099999999995, 5.47227, 6.2146099999999995, 7.04752, 6.30992, 7.17012, 6.551080000000001, 5.7365699999999995, 5.64191, 6.21261, 6.47697, 6.95655, 5.61313, 6.62672, 6.23441, 5.7462, 6.056780000000001, 5.8944, 5.84932, 6.06843, 5.53339, 6.49375, 5.7365699999999995, 5.76832, 5.5797300000000005, 6.23832, 5.79606, 6.19644, 6.19236, 6.6253899999999994, 5.7525699999999995, 5.8579300000000005, 6.14633, 6.712960000000001, 6.16331, 6.3716099999999996, 6.62007, 6.30992, 6.47697, 6.62007, 6.551080000000001, 6.18002, 6.745239999999999, 5.96358, 6.39693, 6.14204, 5.5797300000000005, 6.11147, 5.66988, 5.73334, 5.90808, 5.9269300000000005, 6.2186, 5.8861, 6.68461, 6.643789999999999, 5.66988, 6.39693, 6.06611, 6.57786, 5.43808, 5.8141300000000005, 6.3315, 6.86485, 6.04025, 6.7901, 6.56244, 6.253830000000001, 6.57228, 6.05209, 5.93225, 5.273, 6.2186, 6.1717, 6.47697, 6.05209, 5.8579300000000005, 6.86693, 6.36303, 5.99146, 5.19296, 6.39693, 5.95584, 6.7093, 6.62007, 6.41017, 6.556780000000001, 5.8141300000000005, 6.30992, 6.39693, 6.26149, 5.94803, 6.65544, 6.3081 ], "xaxis": "x2", "y0": "female", "yaxis": "y2" }, { "fillcolor": "hsla(82, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(82, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.4, "legendgroup": "no", "line": { "color": "hsla(82, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(82, 70%, 70%,1)", "line": { "color": "hsla(82, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.3, "size": 9, "symbol": "circle" }, "meanline": { "color": "hsla(82, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage no", "orientation": "h", "pointpos": 0, "points": false, "scalegroup": "no", "scalemode": "count", "showlegend": true, "side": "both", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.55536, 6.39693, 6.907760000000001, 6.50279, 7.313219999999999, 6.10925, 6.993930000000001, 6.614730000000001, 6.30992, 6.62007, 6.17379, 5.99146, 6.2146099999999995, 6.65286, 6.67203, 6.30992, 6.48158, 6.907760000000001, 5.8999, 6.6995, 6.745239999999999, 6.05209, 6.745239999999999, 5.73334, 7.111510000000001, 6.563860000000001, 6.43775, 7.346010000000001, 6.907760000000001, 5.463830000000001, 5.43808, 6.77422, 6.77878, 6.47697, 6.818919999999999, 6.43455, 5.68358, 6.2146099999999995, 6.10925, 6.6783399999999995, 7.1309, 6.39693, 6.77422, 5.96615, 5.90808, 6.39693, 6.16331, 5.0814, 6.49072, 4.605169999999999, 6.802389999999999, 5.8579300000000005, 6.7901, 6.65286, 6.86485, 6.92461, 7.26193, 5.99146, 6.85646, 6.73815, 6.86693, 5.4161, 6.30079, 5.76832, 6.51471, 6.16542, 5.93489, 7.04752, 6.19644, 6.551080000000001, 5.7525699999999995, 6.318969999999999, 5.89715, 5.9454199999999995, 6.52942, 6.4677, 6.06611, 5.70378, 7.04752, 6.768489999999999, 6.2480400000000005, 6.33328, 6.48311, 6.785589999999999, 7.338889999999999, 7.0255399999999995, 7.00307, 5.8999, 5.7365699999999995, 6.62007, 6.36475, 6.90575, 6.65286, 5.7525699999999995, 6.025869999999999, 5.9269300000000005, 6.20456, 6.31536, 5.95324, 6.1070199999999994, 6.05209, 6.39693, 6.408530000000001, 5.9269300000000005, 5.51745, 6.715380000000001, 6.47697, 6.85646, 6.85646, 6.32972, 7.6009, 6.802389999999999, 6.551080000000001, 6.685860000000001, 6.8977, 5.70378, 6.16331, 6.95655, 7.1309, 6.2634, 6.3716099999999996, 6.10925, 6.93537, 6.51323, 5.8141300000000005, 6.56244, 6.834110000000001, 6.23245, 7.1309, 6.57925, 6.30992, 6.34388, 7.24423, 6.43775, 5.34711, 7.279319999999999, 6.83195, 6.58064, 5.99146, 6.33683, 6.802389999999999, 5.8999, 6.29157, 5.59842, 6.5582, 6.354369999999999, 5.95324, 6.62007, 5.9454199999999995, 5.4161, 5.64545, 5.7525699999999995, 6.28972, 6.2952699999999995, 7.46737, 7.1309, 6.05209, 6.551080000000001, 6.63857, 6.621410000000001, 5.82305, 6.85646, 5.78074, 6.12905, 6.02345, 5.70378, 5.883319999999999, 6.62007, 6.2146099999999995, 6.907760000000001, 5.9269300000000005, 5.59842, 6.58617, 6.901739999999999, 5.8579300000000005, 6.8426800000000005, 6.62007, 5.99146, 6.45362, 6.907760000000001, 6.17379, 6.98008, 5.81711, 6.44254, 6.30079, 6.745239999999999, 6.7901, 6.51471, 6.17379, 6.07993, 6.11589, 7.64969, 6.658010000000001, 5.74939, 6.893660000000001, 6.33328, 8.02027, 6.57786, 6.386880000000001, 7.0255399999999995, 5.9269300000000005, 5.8141300000000005, 6.2634, 6.85646, 5.86647, 6.01616, 5.78383, 6.278519999999999, 6.907760000000001, 6.30992, 6.10925, 6.785589999999999, 6.47697, 7.04752, 5.4161, 6.62007, 6.04025, 7.1107, 6.85646, 6.39693, 6.36819, 6.62007, 6.04025, 6.86693, 6.43775, 5.940169999999999, 6.35957, 6.2146099999999995, 6.253830000000001, 6.1025599999999995, 6.1025599999999995, 6.4552, 6.15698, 7.346010000000001, 6.96885, 5.8861, 6.885510000000001, 6.1717, 7.143619999999999, 6.907760000000001, 6.354369999999999, 5.958419999999999, 5.98645, 6.745239999999999, 5.8579300000000005, 6.882439999999999, 6.68461, 6.715380000000001, 5.8861, 6.90575, 6.10925, 6.16331, 6.10925, 6.65286, 7.24423, 6.39693, 6.86693, 5.65948, 5.940169999999999, 6.26149, 6.551080000000001, 6.29157, 6.07535, 6.59715, 6.77992, 5.50126, 6.77422, 6.2634, 5.82008, 6.85646, 6.4708, 6.8426800000000005, 6.15698, 6.893660000000001, 6.43775, 5.8999, 5.99146, 6.33328, 6.9707300000000005, 6.6567300000000005, 6.745239999999999, 6.93049, 6.16331, 6.95655, 6.694560000000001, 6.6783399999999995, 6.849069999999999, 6.72743, 6.6280399999999995, 6.1070199999999994, 6.712960000000001, 7.346010000000001, 5.97635, 6.29157, 6.86901, 6.63726, 6.0282800000000005, 6.39859, 5.42935, 6.6592899999999995, 6.907760000000001, 6.47697, 6.551080000000001, 6.551080000000001, 6.77422, 6.715380000000001, 6.68461, 5.70378, 6.802389999999999, 6.45834, 5.8141300000000005, 5.4161, 6.95655, 6.88755, 6.23441, 6.463030000000001, 6.65286, 7.0255399999999995, 6.39693, 5.8141300000000005, 7.226210000000001, 6.62007, 6.3952599999999995, 6.06379, 5.42053, 5.8861, 6.52209, 5.8861, 7.20786, 6.05209, 6.02102, 6.05209, 5.52146, 5.95584, 6.8966899999999995, 6.8426800000000005, 5.52146, 6.06379, 6.2205900000000005, 6.86066, 6.0822199999999995, 6.9177100000000005, 7.04752, 6.51471, 6.3952599999999995, 6.70073, 6.07993, 6.46925, 5.940169999999999, 6.22654, 6.39693, 7.17012, 6.58755, 6.8254600000000005, 7.04752, 6.50429, 5.99146, 6.62007, 6.62007, 6.2146099999999995, 6.29895, 6.95655, 5.8579300000000005, 6.745239999999999, 7.20786, 7.04316, 6.8533, 5.70378, 5.93225, 6.58617, 6.49072, 6.68461, 5.78383, 6.84055, 5.2983199999999995, 6.35957, 5.99146, 5.82008, 6.10925, 6.04025, 6.51175, 6.39693, 6.59715, 5.01064, 6.73102, 6.77422, 6.30992, 5.5606800000000005, 6.802389999999999, 6.697030000000001, 6.8426800000000005, 6.30992, 7.01392, 7.24423, 6.354369999999999, 6.602589999999999, 6.9622399999999995, 6.424869999999999, 6.259580000000001, 6.593039999999999, 6.802389999999999, 6.58893, 6.43775, 6.2146099999999995, 6.2634, 5.97635, 6.13123, 6.04025, 6.99485, 6.58617, 6.6567300000000005, 6.07993, 6.551080000000001, 7.59287, 6.17587, 5.8693, 6.963189999999999, 6.43775, 6.73459, 6.551080000000001, 6.66823, 5.78383, 6.51471, 5.70378, 6.2634, 6.90575, 6.29157, 7.09008, 6.2146099999999995, 6.63068, 6.795710000000001, 6.682110000000001, 6.19236, 6.12249, 6.907760000000001, 5.68698, 6.12249, 6.14847, 6.77992, 6.62007, 6.8966899999999995, 6.802389999999999, 6.07993, 5.88053, 7.2998, 6.10925, 5.4161, 6.9256, 6.38856, 6.802389999999999, 5.86079, 5.99894, 6.9966800000000005, 6.68461, 5.39363, 5.96615, 5.70378, 6.52209, 5.96615, 7.43838, 5.9135, 6.6896, 6.14419, 7.04752, 6.692080000000001, 6.013719999999999, 6.31355, 6.224559999999999, 6.07304, 6.2146099999999995, 6.802389999999999, 5.95324, 5.8579300000000005, 6.33683, 5.97889, 6.2146099999999995, 6.34388, 6.62007, 6.8977, 7.40914, 7.18917, 5.70378, 6.1070199999999994, 6.30992, 6.36819, 6.23637, 5.52146, 6.47697, 6.68461, 6.36303, 7.507689999999999, 6.748760000000001, 5.5797300000000005, 6.633319999999999, 7.6009, 6.04025, 6.4677, 7.522939999999999, 5.7525699999999995, 6.551080000000001, 6.47697, 6.0330900000000005, 6.802389999999999, 6.79122, 5.8861, 5.82305, 7.71869, 5.52146, 5.39363, 7.401839999999999, 5.43808, 5.95324, 5.8999, 6.2146099999999995, 6.2804, 7.6009, 6.39693, 5.958419999999999, 6.62007, 5.89715, 6.06611, 6.2146099999999995, 7.313219999999999, 6.0845, 6.82437, 5.48064, 6.29157, 7.2998, 5.83188, 6.3952599999999995, 6.95655, 6.07993, 6.27099, 6.6592899999999995, 6.30992, 6.58617, 7.43838, 6.1181, 6.90575, 6.2146099999999995, 6.899719999999999, 5.76832, 5.70378, 6.035480000000001, 6.206580000000001, 6.39859, 6.551080000000001, 6.39693, 7.09008, 7.09008, 5.70378, 6.43775, 6.02345, 5.9269300000000005, 6.3716099999999996, 6.72743, 7.1309, 6.551080000000001, 6.2634, 6.646389999999999, 6.621410000000001, 5.5797300000000005, 6.07993, 6.802389999999999, 6.30992, 6.7226300000000005, 5.4161, 6.47697, 5.50126, 6.72743, 6.583410000000001, 6.44731, 7.24423, 5.82895, 6.85118, 5.67675, 6.62936, 6.2146099999999995, 6.73815, 6.90575, 6.802389999999999, 6.77422, 6.1944099999999995, 6.08904, 6.70073, 6.802389999999999, 6.69827, 6.593039999999999, 5.99146, 6.85646, 5.01064, 6.45362, 6.745239999999999, 6.85646, 6.79347, 6.2146099999999995, 5.65249, 6.745239999999999, 5.8260000000000005, 6.60394, 6.72623, 6.2146099999999995, 6.39693, 7.1507, 6.317159999999999, 7.00307, 6.35611, 6.85646, 5.8579300000000005, 6.55962, 6.7334, 6.18415, 6.05209, 6.802389999999999, 6.68461, 5.84354, 6.46925, 6.84055, 6.787839999999999, 5.99894, 7.1107, 6.593039999999999, 6.30992, 6.83518, 6.77878, 6.967910000000001, 6.68461, 6.77765, 6.90575, 6.30992, 5.8999, 5.8861, 6.23637, 7.216710000000001, 6.65286, 5.78383, 6.2146099999999995, 6.694560000000001, 7.027310000000001, 5.84644, 6.2146099999999995, 6.88857, 7.195189999999999, 5.76205, 5.68698, 6.49527, 6.51915, 6.1203, 7.00307, 5.7365699999999995, 5.7365699999999995, 6.2146099999999995, 5.47227, 6.2146099999999995, 6.72743, 7.04752, 6.30992, 5.70378, 7.251339999999999, 7.17012, 6.551080000000001, 5.7365699999999995, 5.64191, 6.21261, 6.47697, 6.95655, 5.61313, 6.62672, 6.23441, 7.2717, 5.7462, 6.056780000000001, 5.8944, 5.84932, 6.06843, 5.53339, 7.2998, 6.49375, 5.7365699999999995, 5.76832, 5.5797300000000005, 6.23832, 5.79606, 6.354369999999999, 5.52146, 6.19644, 6.19236, 6.49979, 6.6253899999999994, 6.01616, 6.48158, 5.7525699999999995, 6.14633, 6.97261, 6.712960000000001, 6.16331, 6.3716099999999996, 6.62007, 6.30992, 6.47697, 6.62007, 6.551080000000001, 6.18002, 7.18917, 6.745239999999999, 6.19032, 5.96358, 7.313219999999999, 6.39693, 7.09008, 6.14204, 5.5797300000000005, 6.11147, 5.66988, 6.35957, 5.72031, 6.51471, 5.73334, 6.39693, 5.90808, 5.9269300000000005, 6.2186, 6.68461, 6.13123, 6.643789999999999, 5.66988, 6.39693, 6.06611, 6.0822199999999995, 6.77878, 6.57786, 5.43808, 5.8141300000000005, 6.907760000000001, 6.3315, 6.58617, 6.86485, 6.04025, 6.90575, 6.768489999999999, 6.7901, 6.56244, 6.253830000000001, 6.57228, 6.05209, 5.93225, 5.273, 6.2186, 6.1717, 6.47697, 6.05209, 6.2146099999999995, 5.8579300000000005, 6.86693, 6.36303, 5.19296, 6.39693, 7.1309, 5.95584, 6.7093, 6.62007, 6.912739999999999, 6.2634, 6.41017, 6.556780000000001, 5.8141300000000005, 6.30992, 6.39693, 6.26149, 6.84055, 5.94803, 6.65544, 6.3081 ], "xaxis": "x2", "y0": "no", "yaxis": "y2" }, { "box": { "visible": false }, "fillcolor": "rgba(0, 0, 0, 0)", "hoverinfo": "x", "hoveron": "points", "jitter": 0.4, "legendgroup": "female", "line": { "color": "rgba(0, 0, 0, 0)", "width": 0 }, "marker": { "color": "hsla(246, 70%, 70%,1)", "line": { "color": "hsla(246, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.3, "size": 9, "symbol": "circle" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "all", "scalegroup": "female", "showlegend": false, "side": "both", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.55536, 6.39693, 6.907760000000001, 6.50279, 6.614730000000001, 6.30992, 6.62007, 6.17379, 6.2146099999999995, 6.65286, 6.30992, 6.48158, 6.907760000000001, 5.8999, 6.05209, 5.73334, 6.3952599999999995, 6.43775, 6.907760000000001, 5.463830000000001, 5.43808, 6.77422, 6.47697, 5.68358, 6.2146099999999995, 6.10925, 6.6783399999999995, 7.1309, 6.39693, 6.77422, 5.96615, 5.90808, 6.39693, 5.0814, 7.09008, 4.605169999999999, 6.7901, 6.65286, 6.86485, 6.92461, 5.99146, 6.85646, 5.4161, 6.30079, 5.76832, 6.16542, 5.93489, 7.04752, 6.19644, 5.7525699999999995, 6.318969999999999, 5.9454199999999995, 6.4677, 6.768489999999999, 6.2480400000000005, 6.33328, 6.48311, 7.00307, 5.8999, 6.62007, 6.36475, 6.65286, 5.7525699999999995, 6.025869999999999, 6.20456, 6.31536, 5.95324, 6.1070199999999994, 6.05209, 5.9269300000000005, 5.51745, 6.715380000000001, 6.85646, 6.85646, 6.32972, 6.802389999999999, 6.16331, 6.95655, 6.2634, 6.3716099999999996, 6.10925, 6.93537, 6.56244, 6.23245, 7.1309, 6.57925, 6.30992, 6.34388, 5.34711, 7.279319999999999, 6.58064, 6.33683, 6.5582, 6.354369999999999, 5.95324, 5.9454199999999995, 5.64545, 5.7525699999999995, 6.28972, 6.2952699999999995, 6.05209, 6.551080000000001, 6.621410000000001, 5.82305, 6.12905, 6.02345, 5.883319999999999, 6.907760000000001, 5.59842, 6.58617, 6.901739999999999, 6.10925, 5.8579300000000005, 6.17379, 5.81711, 6.44254, 6.30079, 6.745239999999999, 6.7901, 6.51471, 6.17379, 6.07993, 6.11589, 5.74939, 6.33328, 6.386880000000001, 7.0255399999999995, 5.8141300000000005, 5.86647, 6.01616, 6.278519999999999, 6.30992, 6.10925, 6.785589999999999, 6.47697, 7.04752, 6.04025, 6.39693, 6.36819, 6.43775, 5.940169999999999, 6.35957, 6.2146099999999995, 6.253830000000001, 6.1025599999999995, 6.1025599999999995, 6.15698, 6.96885, 6.885510000000001, 6.1717, 5.958419999999999, 5.98645, 5.8579300000000005, 6.715380000000001, 5.8861, 6.10925, 6.65286, 6.39693, 5.65948, 5.940169999999999, 6.26149, 6.551080000000001, 6.29157, 5.50126, 6.77422, 5.82008, 6.4708, 6.15698, 5.8999, 5.99146, 6.33328, 6.9707300000000005, 6.6567300000000005, 6.745239999999999, 6.93049, 6.849069999999999, 6.1070199999999994, 6.712960000000001, 5.97635, 6.29157, 6.86901, 6.0282800000000005, 6.39859, 5.42935, 6.6592899999999995, 6.907760000000001, 6.47697, 6.551080000000001, 6.68461, 6.45834, 5.8141300000000005, 6.88755, 6.23441, 6.463030000000001, 6.65286, 6.39693, 5.8141300000000005, 6.3952599999999995, 6.06379, 5.42053 ], "xaxis": "x2", "y0": "female", "yaxis": "y2" }, { "box": { "visible": false }, "fillcolor": "rgba(0, 0, 0, 0)", "hoverinfo": "x", "hoveron": "points", "jitter": 0.4, "legendgroup": "no", "line": { "color": "rgba(0, 0, 0, 0)", "width": 0 }, "marker": { "color": "hsla(82, 70%, 70%,1)", "line": { "color": "hsla(82, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.3, "size": 9, "symbol": "circle" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "all", "scalegroup": "no", "showlegend": false, "side": "both", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.55536, 6.39693, 6.907760000000001, 6.50279, 7.313219999999999, 6.10925, 6.993930000000001, 6.614730000000001, 6.30992, 6.62007, 6.17379, 5.99146, 6.2146099999999995, 6.65286, 6.67203, 6.30992, 6.48158, 6.907760000000001, 5.8999, 6.6995, 6.745239999999999, 6.05209, 6.745239999999999, 5.73334, 7.111510000000001, 6.563860000000001, 6.43775, 7.346010000000001, 6.907760000000001, 5.463830000000001, 5.43808, 6.77422, 6.77878, 6.47697, 6.818919999999999, 6.43455, 5.68358, 6.2146099999999995, 6.10925, 6.6783399999999995, 7.1309, 6.39693, 6.77422, 5.96615, 5.90808, 6.39693, 6.16331, 5.0814, 6.49072, 4.605169999999999, 6.802389999999999, 5.8579300000000005, 6.7901, 6.65286, 6.86485, 6.92461, 7.26193, 5.99146, 6.85646, 6.73815, 6.86693, 5.4161, 6.30079, 5.76832, 6.51471, 6.16542, 5.93489, 7.04752, 6.19644, 6.551080000000001, 5.7525699999999995, 6.318969999999999, 5.89715, 5.9454199999999995, 6.52942, 6.4677, 6.06611, 5.70378, 7.04752, 6.768489999999999, 6.2480400000000005, 6.33328, 6.48311, 6.785589999999999, 7.338889999999999, 7.0255399999999995, 7.00307, 5.8999, 5.7365699999999995, 6.62007, 6.36475, 6.90575, 6.65286, 5.7525699999999995, 6.025869999999999, 5.9269300000000005, 6.20456, 6.31536, 5.95324, 6.1070199999999994, 6.05209, 6.39693, 6.408530000000001, 5.9269300000000005, 5.51745, 6.715380000000001, 6.47697, 6.85646, 6.85646, 6.32972, 7.6009, 6.802389999999999, 6.551080000000001, 6.685860000000001, 6.8977, 5.70378, 6.16331, 6.95655, 7.1309, 6.2634, 6.3716099999999996, 6.10925, 6.93537, 6.51323, 5.8141300000000005, 6.56244, 6.834110000000001, 6.23245, 7.1309, 6.57925, 6.30992, 6.34388, 7.24423, 6.43775, 5.34711, 7.279319999999999, 6.83195, 6.58064, 5.99146, 6.33683, 6.802389999999999, 5.8999, 6.29157, 5.59842, 6.5582, 6.354369999999999, 5.95324, 6.62007, 5.9454199999999995, 5.4161, 5.64545, 5.7525699999999995, 6.28972, 6.2952699999999995, 7.46737, 7.1309, 6.05209, 6.551080000000001, 6.63857, 6.621410000000001, 5.82305, 6.85646, 5.78074, 6.12905, 6.02345, 5.70378, 5.883319999999999, 6.62007, 6.2146099999999995, 6.907760000000001, 5.9269300000000005, 5.59842, 6.58617, 6.901739999999999, 5.8579300000000005, 6.8426800000000005, 6.62007, 5.99146, 6.45362, 6.907760000000001, 6.17379, 6.98008, 5.81711, 6.44254, 6.30079, 6.745239999999999, 6.7901, 6.51471, 6.17379, 6.07993, 6.11589, 7.64969, 6.658010000000001, 5.74939, 6.893660000000001, 6.33328, 8.02027, 6.57786, 6.386880000000001, 7.0255399999999995 ], "xaxis": "x2", "y0": "no", "yaxis": "y2" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(246, 30%, 30%,1)", "width": 0.5 }, "visible": false, "width": 0.25 }, "fillcolor": "hsla(246, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "female", "line": { "width": 0 }, "marker": { "color": "hsla(246, 50%, 50%,0.9)", "line": { "color": "hsla(246, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "circle" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": false, "scalegroup": "female", "showlegend": false, "side": "both", "span": [ 6.216715842243704, 6.293717615170944 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 6.55536, 6.39693, 6.907760000000001, 6.50279, 6.614730000000001, 6.30992, 6.62007, 6.17379, 6.2146099999999995, 6.65286, 6.30992, 6.48158, 6.907760000000001, 5.8999, 6.05209, 5.73334, 6.3952599999999995, 6.43775, 6.907760000000001, 5.463830000000001, 5.43808, 6.77422, 6.47697, 5.68358, 6.2146099999999995, 6.10925, 6.6783399999999995, 7.1309, 6.39693, 6.77422, 5.96615, 5.90808, 6.39693, 5.0814, 7.09008, 4.605169999999999, 6.7901, 6.65286, 6.86485, 6.92461, 5.99146, 6.85646, 5.4161, 6.30079, 5.76832, 6.16542, 5.93489, 7.04752, 6.19644, 5.7525699999999995, 6.318969999999999, 5.9454199999999995, 6.4677, 6.768489999999999, 6.2480400000000005, 6.33328, 6.48311, 7.00307, 5.8999, 6.62007, 6.36475, 6.65286, 5.7525699999999995, 6.025869999999999, 6.20456, 6.31536, 5.95324, 6.1070199999999994, 6.05209, 5.9269300000000005, 5.51745, 6.715380000000001, 6.85646, 6.85646, 6.32972, 6.802389999999999, 6.16331, 6.95655, 6.2634, 6.3716099999999996, 6.10925, 6.93537, 6.56244, 6.23245, 7.1309, 6.57925, 6.30992, 6.34388, 5.34711, 7.279319999999999, 6.58064, 6.33683, 6.5582, 6.354369999999999, 5.95324, 5.9454199999999995, 5.64545, 5.7525699999999995, 6.28972, 6.2952699999999995, 6.05209, 6.551080000000001, 6.621410000000001, 5.82305, 6.12905, 6.02345, 5.883319999999999, 6.907760000000001, 5.59842, 6.58617, 6.901739999999999, 6.10925, 5.8579300000000005, 6.17379, 5.81711, 6.44254, 6.30079, 6.745239999999999, 6.7901, 6.51471, 6.17379, 6.07993, 6.11589, 5.74939, 6.33328, 6.386880000000001, 7.0255399999999995, 5.8141300000000005, 5.86647, 6.01616, 6.278519999999999, 6.30992, 6.10925, 6.785589999999999, 6.47697, 7.04752, 6.04025, 6.39693, 6.36819, 6.43775, 5.940169999999999, 6.35957, 6.2146099999999995, 6.253830000000001, 6.1025599999999995, 6.1025599999999995, 6.15698, 6.96885, 6.885510000000001, 6.1717, 5.958419999999999, 5.98645, 5.8579300000000005, 6.715380000000001, 5.8861, 6.10925, 6.65286, 6.39693, 5.65948, 5.940169999999999, 6.26149, 6.551080000000001, 6.29157, 5.50126, 6.77422, 5.82008, 6.4708, 6.15698, 5.8999, 5.99146, 6.33328, 6.9707300000000005, 6.6567300000000005, 6.745239999999999, 6.93049, 6.849069999999999, 6.1070199999999994, 6.712960000000001, 5.97635, 6.29157, 6.86901, 6.0282800000000005, 6.39859, 5.42935, 6.6592899999999995, 6.907760000000001, 6.47697, 6.551080000000001, 6.68461, 6.45834, 5.8141300000000005, 6.88755, 6.23441, 6.463030000000001, 6.65286, 6.39693, 5.8141300000000005, 6.3952599999999995, 6.06379, 5.42053, 5.8861, 6.52209, 5.8861, 7.20786, 6.05209, 5.52146, 5.52146, 6.06379, 6.2205900000000005, 6.0822199999999995, 7.04752, 6.3952599999999995, 6.70073, 6.07993, 6.46925, 6.22654, 6.39693, 6.58755, 6.8254600000000005, 5.99146, 6.62007, 6.62007, 6.29895, 5.8579300000000005, 6.745239999999999, 5.93225, 6.49072, 5.78383, 6.35957, 5.82008, 6.04025, 6.39693, 6.59715, 5.01064, 6.77422, 6.30992, 5.5606800000000005, 6.8426800000000005, 6.30992, 6.602589999999999, 6.424869999999999, 6.259580000000001, 6.2634, 5.97635, 6.04025, 6.07993, 6.551080000000001, 6.17587, 5.8693, 6.43775, 6.73459, 5.70378, 6.49224, 6.29157, 6.2146099999999995, 6.63068, 6.682110000000001, 6.19236, 5.68698, 6.12249, 6.14847, 5.88053, 6.10925, 6.38856, 5.86079, 5.99894, 5.39363, 5.96615, 6.52209, 5.96615, 5.9135, 6.6896, 6.14419, 6.692080000000001, 6.013719999999999, 6.224559999999999, 6.07304, 6.2146099999999995, 6.802389999999999, 5.95324, 6.43615, 5.8579300000000005, 6.33683, 5.97889, 6.2146099999999995, 6.34388, 7.18917, 6.1070199999999994, 6.30992, 6.36819, 6.23637, 5.52146, 6.47697, 6.36303, 6.748760000000001, 6.633319999999999, 6.04025, 5.7525699999999995, 6.47697, 6.0330900000000005, 5.8861, 5.82305, 7.0422899999999995, 5.39363, 5.43808, 5.95324, 5.8999, 6.2146099999999995, 6.2804, 6.39693, 5.89715, 6.06611, 6.2146099999999995, 6.0845, 5.48064, 6.3952599999999995, 6.27099, 6.58617, 6.2146099999999995, 6.73102, 6.035480000000001, 6.206580000000001, 6.39859, 6.551080000000001, 6.43775, 6.02345, 5.9269300000000005, 6.72743, 6.2634, 6.646389999999999, 5.5797300000000005, 6.07993, 5.4161, 6.47697, 5.50126, 6.583410000000001, 6.44731, 5.82895, 6.2146099999999995, 6.73815, 6.802389999999999, 6.77422, 6.1944099999999995, 6.70073, 6.0282800000000005, 6.593039999999999, 6.85646, 5.01064, 6.745239999999999, 6.85646, 6.79347, 5.65249, 6.39693, 6.317159999999999, 6.35611, 5.8579300000000005, 6.18415, 6.05209, 5.84354, 6.46925, 5.99894, 6.745239999999999, 6.77765, 6.30992, 5.8999, 5.8861, 7.216710000000001, 6.65286, 6.2146099999999995, 6.88857, 5.76205, 5.68698, 6.1203, 5.7365699999999995, 5.7365699999999995, 6.2146099999999995, 5.47227, 6.2146099999999995, 7.04752, 6.30992, 7.17012, 6.551080000000001, 5.7365699999999995, 5.64191, 6.21261, 6.47697, 6.95655, 5.61313, 6.62672, 6.23441, 5.7462, 6.056780000000001, 5.8944, 5.84932, 6.06843, 5.53339, 6.49375, 5.7365699999999995, 5.76832, 5.5797300000000005, 6.23832, 5.79606, 6.19644, 6.19236, 6.6253899999999994, 5.7525699999999995, 5.8579300000000005, 6.14633, 6.712960000000001, 6.16331, 6.3716099999999996, 6.62007, 6.30992, 6.47697, 6.62007, 6.551080000000001, 6.18002, 6.745239999999999, 5.96358, 6.39693, 6.14204, 5.5797300000000005, 6.11147, 5.66988, 5.73334, 5.90808, 5.9269300000000005, 6.2186, 5.8861, 6.68461, 6.643789999999999, 5.66988, 6.39693, 6.06611, 6.57786, 5.43808, 5.8141300000000005, 6.3315, 6.86485, 6.04025, 6.7901, 6.56244, 6.253830000000001, 6.57228, 6.05209, 5.93225, 5.273, 6.2186, 6.1717, 6.47697, 6.05209, 5.8579300000000005, 6.86693, 6.36303, 5.99146, 5.19296, 6.39693, 5.95584, 6.7093, 6.62007, 6.41017, 6.556780000000001, 5.8141300000000005, 6.30992, 6.39693, 6.26149, 5.94803, 6.65544, 6.3081 ], "xaxis": "x2", "y0": "female", "yaxis": "y2" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(82, 30%, 30%,1)", "width": 0.5 }, "visible": false, "width": 0.25 }, "fillcolor": "hsla(82, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "no", "line": { "width": 0 }, "marker": { "color": "hsla(82, 50%, 50%,0.9)", "line": { "color": "hsla(82, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "circle" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": false, "scalegroup": "no", "showlegend": false, "side": "both", "span": [ 6.363701828237169, 6.431323186656438 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 6.55536, 6.39693, 6.907760000000001, 6.50279, 7.313219999999999, 6.10925, 6.993930000000001, 6.614730000000001, 6.30992, 6.62007, 6.17379, 5.99146, 6.2146099999999995, 6.65286, 6.67203, 6.30992, 6.48158, 6.907760000000001, 5.8999, 6.6995, 6.745239999999999, 6.05209, 6.745239999999999, 5.73334, 7.111510000000001, 6.563860000000001, 6.43775, 7.346010000000001, 6.907760000000001, 5.463830000000001, 5.43808, 6.77422, 6.77878, 6.47697, 6.818919999999999, 6.43455, 5.68358, 6.2146099999999995, 6.10925, 6.6783399999999995, 7.1309, 6.39693, 6.77422, 5.96615, 5.90808, 6.39693, 6.16331, 5.0814, 6.49072, 4.605169999999999, 6.802389999999999, 5.8579300000000005, 6.7901, 6.65286, 6.86485, 6.92461, 7.26193, 5.99146, 6.85646, 6.73815, 6.86693, 5.4161, 6.30079, 5.76832, 6.51471, 6.16542, 5.93489, 7.04752, 6.19644, 6.551080000000001, 5.7525699999999995, 6.318969999999999, 5.89715, 5.9454199999999995, 6.52942, 6.4677, 6.06611, 5.70378, 7.04752, 6.768489999999999, 6.2480400000000005, 6.33328, 6.48311, 6.785589999999999, 7.338889999999999, 7.0255399999999995, 7.00307, 5.8999, 5.7365699999999995, 6.62007, 6.36475, 6.90575, 6.65286, 5.7525699999999995, 6.025869999999999, 5.9269300000000005, 6.20456, 6.31536, 5.95324, 6.1070199999999994, 6.05209, 6.39693, 6.408530000000001, 5.9269300000000005, 5.51745, 6.715380000000001, 6.47697, 6.85646, 6.85646, 6.32972, 7.6009, 6.802389999999999, 6.551080000000001, 6.685860000000001, 6.8977, 5.70378, 6.16331, 6.95655, 7.1309, 6.2634, 6.3716099999999996, 6.10925, 6.93537, 6.51323, 5.8141300000000005, 6.56244, 6.834110000000001, 6.23245, 7.1309, 6.57925, 6.30992, 6.34388, 7.24423, 6.43775, 5.34711, 7.279319999999999, 6.83195, 6.58064, 5.99146, 6.33683, 6.802389999999999, 5.8999, 6.29157, 5.59842, 6.5582, 6.354369999999999, 5.95324, 6.62007, 5.9454199999999995, 5.4161, 5.64545, 5.7525699999999995, 6.28972, 6.2952699999999995, 7.46737, 7.1309, 6.05209, 6.551080000000001, 6.63857, 6.621410000000001, 5.82305, 6.85646, 5.78074, 6.12905, 6.02345, 5.70378, 5.883319999999999, 6.62007, 6.2146099999999995, 6.907760000000001, 5.9269300000000005, 5.59842, 6.58617, 6.901739999999999, 5.8579300000000005, 6.8426800000000005, 6.62007, 5.99146, 6.45362, 6.907760000000001, 6.17379, 6.98008, 5.81711, 6.44254, 6.30079, 6.745239999999999, 6.7901, 6.51471, 6.17379, 6.07993, 6.11589, 7.64969, 6.658010000000001, 5.74939, 6.893660000000001, 6.33328, 8.02027, 6.57786, 6.386880000000001, 7.0255399999999995, 5.9269300000000005, 5.8141300000000005, 6.2634, 6.85646, 5.86647, 6.01616, 5.78383, 6.278519999999999, 6.907760000000001, 6.30992, 6.10925, 6.785589999999999, 6.47697, 7.04752, 5.4161, 6.62007, 6.04025, 7.1107, 6.85646, 6.39693, 6.36819, 6.62007, 6.04025, 6.86693, 6.43775, 5.940169999999999, 6.35957, 6.2146099999999995, 6.253830000000001, 6.1025599999999995, 6.1025599999999995, 6.4552, 6.15698, 7.346010000000001, 6.96885, 5.8861, 6.885510000000001, 6.1717, 7.143619999999999, 6.907760000000001, 6.354369999999999, 5.958419999999999, 5.98645, 6.745239999999999, 5.8579300000000005, 6.882439999999999, 6.68461, 6.715380000000001, 5.8861, 6.90575, 6.10925, 6.16331, 6.10925, 6.65286, 7.24423, 6.39693, 6.86693, 5.65948, 5.940169999999999, 6.26149, 6.551080000000001, 6.29157, 6.07535, 6.59715, 6.77992, 5.50126, 6.77422, 6.2634, 5.82008, 6.85646, 6.4708, 6.8426800000000005, 6.15698, 6.893660000000001, 6.43775, 5.8999, 5.99146, 6.33328, 6.9707300000000005, 6.6567300000000005, 6.745239999999999, 6.93049, 6.16331, 6.95655, 6.694560000000001, 6.6783399999999995, 6.849069999999999, 6.72743, 6.6280399999999995, 6.1070199999999994, 6.712960000000001, 7.346010000000001, 5.97635, 6.29157, 6.86901, 6.63726, 6.0282800000000005, 6.39859, 5.42935, 6.6592899999999995, 6.907760000000001, 6.47697, 6.551080000000001, 6.551080000000001, 6.77422, 6.715380000000001, 6.68461, 5.70378, 6.802389999999999, 6.45834, 5.8141300000000005, 5.4161, 6.95655, 6.88755, 6.23441, 6.463030000000001, 6.65286, 7.0255399999999995, 6.39693, 5.8141300000000005, 7.226210000000001, 6.62007, 6.3952599999999995, 6.06379, 5.42053, 5.8861, 6.52209, 5.8861, 7.20786, 6.05209, 6.02102, 6.05209, 5.52146, 5.95584, 6.8966899999999995, 6.8426800000000005, 5.52146, 6.06379, 6.2205900000000005, 6.86066, 6.0822199999999995, 6.9177100000000005, 7.04752, 6.51471, 6.3952599999999995, 6.70073, 6.07993, 6.46925, 5.940169999999999, 6.22654, 6.39693, 7.17012, 6.58755, 6.8254600000000005, 7.04752, 6.50429, 5.99146, 6.62007, 6.62007, 6.2146099999999995, 6.29895, 6.95655, 5.8579300000000005, 6.745239999999999, 7.20786, 7.04316, 6.8533, 5.70378, 5.93225, 6.58617, 6.49072, 6.68461, 5.78383, 6.84055, 5.2983199999999995, 6.35957, 5.99146, 5.82008, 6.10925, 6.04025, 6.51175, 6.39693, 6.59715, 5.01064, 6.73102, 6.77422, 6.30992, 5.5606800000000005, 6.802389999999999, 6.697030000000001, 6.8426800000000005, 6.30992, 7.01392, 7.24423, 6.354369999999999, 6.602589999999999, 6.9622399999999995, 6.424869999999999, 6.259580000000001, 6.593039999999999, 6.802389999999999, 6.58893, 6.43775, 6.2146099999999995, 6.2634, 5.97635, 6.13123, 6.04025, 6.99485, 6.58617, 6.6567300000000005, 6.07993, 6.551080000000001, 7.59287, 6.17587, 5.8693, 6.963189999999999, 6.43775, 6.73459, 6.551080000000001, 6.66823, 5.78383, 6.51471, 5.70378, 6.2634, 6.90575, 6.29157, 7.09008, 6.2146099999999995, 6.63068, 6.795710000000001, 6.682110000000001, 6.19236, 6.12249, 6.907760000000001, 5.68698, 6.12249, 6.14847, 6.77992, 6.62007, 6.8966899999999995, 6.802389999999999, 6.07993, 5.88053, 7.2998, 6.10925, 5.4161, 6.9256, 6.38856, 6.802389999999999, 5.86079, 5.99894, 6.9966800000000005, 6.68461, 5.39363, 5.96615, 5.70378, 6.52209, 5.96615, 7.43838, 5.9135, 6.6896, 6.14419, 7.04752, 6.692080000000001, 6.013719999999999, 6.31355, 6.224559999999999, 6.07304, 6.2146099999999995, 6.802389999999999, 5.95324, 5.8579300000000005, 6.33683, 5.97889, 6.2146099999999995, 6.34388, 6.62007, 6.8977, 7.40914, 7.18917, 5.70378, 6.1070199999999994, 6.30992, 6.36819, 6.23637, 5.52146, 6.47697, 6.68461, 6.36303, 7.507689999999999, 6.748760000000001, 5.5797300000000005, 6.633319999999999, 7.6009, 6.04025, 6.4677, 7.522939999999999, 5.7525699999999995, 6.551080000000001, 6.47697, 6.0330900000000005, 6.802389999999999, 6.79122, 5.8861, 5.82305, 7.71869, 5.52146, 5.39363, 7.401839999999999, 5.43808, 5.95324, 5.8999, 6.2146099999999995, 6.2804, 7.6009, 6.39693, 5.958419999999999, 6.62007, 5.89715, 6.06611, 6.2146099999999995, 7.313219999999999, 6.0845, 6.82437, 5.48064, 6.29157, 7.2998, 5.83188, 6.3952599999999995, 6.95655, 6.07993, 6.27099, 6.6592899999999995, 6.30992, 6.58617, 7.43838, 6.1181, 6.90575, 6.2146099999999995, 6.899719999999999, 5.76832, 5.70378, 6.035480000000001, 6.206580000000001, 6.39859, 6.551080000000001, 6.39693, 7.09008, 7.09008, 5.70378, 6.43775, 6.02345, 5.9269300000000005, 6.3716099999999996, 6.72743, 7.1309, 6.551080000000001, 6.2634, 6.646389999999999, 6.621410000000001, 5.5797300000000005, 6.07993, 6.802389999999999, 6.30992, 6.7226300000000005, 5.4161, 6.47697, 5.50126, 6.72743, 6.583410000000001, 6.44731, 7.24423, 5.82895, 6.85118, 5.67675, 6.62936, 6.2146099999999995, 6.73815, 6.90575, 6.802389999999999, 6.77422, 6.1944099999999995, 6.08904, 6.70073, 6.802389999999999, 6.69827, 6.593039999999999, 5.99146, 6.85646, 5.01064, 6.45362, 6.745239999999999, 6.85646, 6.79347, 6.2146099999999995, 5.65249, 6.745239999999999, 5.8260000000000005, 6.60394, 6.72623, 6.2146099999999995, 6.39693, 7.1507, 6.317159999999999, 7.00307, 6.35611, 6.85646, 5.8579300000000005, 6.55962, 6.7334, 6.18415, 6.05209, 6.802389999999999, 6.68461, 5.84354, 6.46925, 6.84055, 6.787839999999999, 5.99894, 7.1107, 6.593039999999999, 6.30992, 6.83518, 6.77878, 6.967910000000001, 6.68461, 6.77765, 6.90575, 6.30992, 5.8999, 5.8861, 6.23637, 7.216710000000001, 6.65286, 5.78383, 6.2146099999999995, 6.694560000000001, 7.027310000000001, 5.84644, 6.2146099999999995, 6.88857, 7.195189999999999, 5.76205, 5.68698, 6.49527, 6.51915, 6.1203, 7.00307, 5.7365699999999995, 5.7365699999999995, 6.2146099999999995, 5.47227, 6.2146099999999995, 6.72743, 7.04752, 6.30992, 5.70378, 7.251339999999999, 7.17012, 6.551080000000001, 5.7365699999999995, 5.64191, 6.21261, 6.47697, 6.95655, 5.61313, 6.62672, 6.23441, 7.2717, 5.7462, 6.056780000000001, 5.8944, 5.84932, 6.06843, 5.53339, 7.2998, 6.49375, 5.7365699999999995, 5.76832, 5.5797300000000005, 6.23832, 5.79606, 6.354369999999999, 5.52146, 6.19644, 6.19236, 6.49979, 6.6253899999999994, 6.01616, 6.48158, 5.7525699999999995, 6.14633, 6.97261, 6.712960000000001, 6.16331, 6.3716099999999996, 6.62007, 6.30992, 6.47697, 6.62007, 6.551080000000001, 6.18002, 7.18917, 6.745239999999999, 6.19032, 5.96358, 7.313219999999999, 6.39693, 7.09008, 6.14204, 5.5797300000000005, 6.11147, 5.66988, 6.35957, 5.72031, 6.51471, 5.73334, 6.39693, 5.90808, 5.9269300000000005, 6.2186, 6.68461, 6.13123, 6.643789999999999, 5.66988, 6.39693, 6.06611, 6.0822199999999995, 6.77878, 6.57786, 5.43808, 5.8141300000000005, 6.907760000000001, 6.3315, 6.58617, 6.86485, 6.04025, 6.90575, 6.768489999999999, 6.7901, 6.56244, 6.253830000000001, 6.57228, 6.05209, 5.93225, 5.273, 6.2186, 6.1717, 6.47697, 6.05209, 6.2146099999999995, 5.8579300000000005, 6.86693, 6.36303, 5.19296, 6.39693, 7.1309, 5.95584, 6.7093, 6.62007, 6.912739999999999, 6.2634, 6.41017, 6.556780000000001, 5.8141300000000005, 6.30992, 6.39693, 6.26149, 6.84055, 5.94803, 6.65544, 6.3081 ], "xaxis": "x2", "y0": "no", "yaxis": "y2" }, { "fillcolor": "hsla(328, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(328, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.4, "legendgroup": "male", "line": { "color": "hsla(328, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(328, 70%, 70%,1)", "line": { "color": "hsla(328, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.3, "size": 9, "symbol": "circle" }, "meanline": { "color": "hsla(328, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage male", "orientation": "h", "pointpos": 0, "points": false, "scalegroup": "male", "scalemode": "count", "showlegend": true, "side": "both", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.99942, 5.99146, 7.67322, 7.09008, 5.61677, 6.646389999999999, 7.02643, 6.4552, 7.32975, 6.95845, 7.06902, 6.04025, 6.907760000000001, 7.91936, 6.745239999999999, 6.30079, 7.068169999999999, 6.07535, 6.7417, 7.71869, 6.882439999999999, 6.47697, 6.77878, 6.907760000000001, 6.93342, 7.06902, 6.57368, 6.829789999999999, 7.557989999999999, 6.892639999999999, 7.0255399999999995, 6.57925, 7.313219999999999, 6.47697, 7.1309, 6.551080000000001, 6.882439999999999, 6.907760000000001, 6.682110000000001, 6.39693, 6.48004, 6.60665, 7.00307, 6.10925, 5.78383, 6.94505, 6.9546399999999995, 7.17012, 7.11477, 6.993930000000001, 6.593039999999999, 6.49979, 6.5439099999999994, 6.39192, 6.51471, 6.30992, 6.30992, 7.116389999999999, 6.46925, 7.554860000000001, 6.90675, 6.85646, 5.94803, 6.90575, 6.90575, 7.408530000000001, 7.0076, 6.88857, 7.35947, 6.39693, 7.041410000000001, 6.66696, 6.30992, 7.313219999999999, 6.787839999999999, 6.90575, 6.802389999999999, 7.00307, 7.074960000000001, 7.5606, 5.99146, 6.16331, 5.94803, 6.43775, 7.282760000000001, 6.39693, 6.813439999999999, 6.694560000000001, 6.29157, 6.23048, 6.67203, 6.16331, 6.88755, 6.95655, 7.56008, 6.28227, 6.30992, 6.05912, 6.602589999999999, 7.47307, 6.2146099999999995, 6.95655, 6.90575, 6.461469999999999, 7.09008, 7.46737, 6.829789999999999, 6.60665, 6.74052, 6.745239999999999, 7.6009, 6.62007, 6.551080000000001, 6.663130000000001, 7.60589, 6.53669, 6.5582, 6.16121, 6.19236, 6.2146099999999995, 7.37776, 6.6995, 6.58617, 6.23832, 6.27476, 6.48311, 6.69084, 6.54965, 6.745239999999999, 6.882439999999999, 6.663130000000001, 5.70378, 6.7226300000000005, 7.20786, 6.802389999999999, 6.79122, 6.62007, 6.42162, 6.12249, 6.90575, 6.28227, 6.745239999999999, 6.206580000000001, 5.99146, 6.682110000000001, 6.49677, 7.408530000000001, 6.10925, 6.317159999999999, 6.2146099999999995, 6.551080000000001, 6.25575, 7.0884100000000005, 6.16331, 6.68461, 5.8999, 7.01392, 7.1107, 6.9363399999999995, 6.90575, 6.1070199999999994, 6.85646, 6.44572, 6.551080000000001, 6.84588, 8.10168, 7.31255, 5.99645, 6.90575, 6.802389999999999, 7.111510000000001, 6.2146099999999995, 6.66696, 6.907760000000001, 6.90575, 6.6592899999999995, 8.047189999999999, 6.62407, 7.0076, 6.30992, 6.17379, 6.55393, 6.24611, 7.78322, 6.563860000000001, 6.60665, 7.12448, 6.507280000000001, 6.461469999999999, 6.8977, 7.82405, 7.75148, 6.62407, 7.346010000000001, 6.2146099999999995, 7.1309, 6.51471, 5.96615, 6.84055, 7.041410000000001, 6.51471, 6.551080000000001, 7.346010000000001, 6.966019999999999, 6.90575, 7.17012, 6.5820300000000005, 7.04752, 6.354369999999999, 6.59578, 7.82405, 6.5467900000000006, 6.551080000000001, 6.39693, 6.88755, 6.39693, 6.39693, 6.65286, 6.36647, 6.622739999999999, 6.90575, 5.7525699999999995, 6.15273, 7.04752, 5.52146, 6.770789999999999, 6.907760000000001, 7.00125, 7.064760000000001, 7.00307, 6.05209, 6.745239999999999, 7.045780000000001, 6.54535, 6.37673, 6.62007, 6.907760000000001, 6.10925, 6.39693, 8.16052, 6.745239999999999, 7.03527, 6.765039999999999, 7.1309, 6.77422, 6.87213, 6.551080000000001, 6.907760000000001, 6.6567300000000005, 6.80017, 7.226210000000001, 6.10925, 6.90575, 6.70073, 7.495539999999999, 8.05516, 6.9256, 7.06987, 6.694560000000001, 6.90575, 6.43775, 6.97261, 7.29709, 7.179310000000001, 7.313219999999999, 6.7226300000000005, 6.82437, 6.715380000000001, 7.173189999999999, 6.62007, 6.77878, 6.7226300000000005, 6.85118, 6.49224, 7.313219999999999, 6.62007, 7.158510000000001, 6.818919999999999, 6.68461, 6.57647, 6.43455, 5.89715, 6.34564, 6.556780000000001, 6.7093, 6.93925, 7.00307, 6.551080000000001, 6.90575, 6.53669, 6.69084, 7.313219999999999, 6.05209, 6.90575, 6.62007, 6.4552, 6.77422, 6.87005, 6.65544, 6.42162, 5.9269300000000005, 6.317159999999999, 6.42972, 6.62007, 6.96508, 6.19236, 6.61607, 5.5606800000000005, 6.57368, 6.2634, 6.715380000000001, 7.408530000000001, 6.17379, 7.333019999999999, 6.37502, 6.16331, 6.317159999999999, 7.04752, 6.68461, 6.98008, 6.912739999999999, 6.86693, 7.3670800000000005, 6.68461, 6.90575, 6.90575, 6.62007, 6.45362, 6.49072, 6.47697, 6.9431199999999995, 6.90575, 6.10925, 6.67203, 6.7334, 7.34278, 6.802389999999999, 6.90575, 6.658010000000001, 6.9256, 6.90575, 6.91075, 6.6592899999999995, 5.8579300000000005, 6.6592899999999995, 6.16331, 7.441319999999999, 6.47851, 7.07834, 6.745239999999999, 7.20786, 6.36475, 6.63857, 7.475910000000001, 6.62007, 6.4892, 7.00307, 6.56948, 7.43838, 7.15383, 7.064760000000001, 6.88755, 7.26193, 6.23245, 6.30445, 6.715380000000001, 7.313219999999999, 7.37776, 5.8579300000000005, 6.85646, 6.2441699999999996, 7.26193, 6.90575, 6.907760000000001, 6.272880000000001, 6.66568, 7.481560000000001, 7.04752, 6.61338, 6.40688, 6.73815, 5.8579300000000005, 7.57558, 6.83518, 6.38856, 6.768489999999999, 6.90575, 6.86693, 6.39693, 6.34739, 7.1507, 6.58617, 7.282760000000001, 7.00307, 6.66058, 6.58064, 6.90575, 6.10925, 6.64249, 6.715380000000001, 6.62007, 7.1309, 6.51471, 5.99146, 6.95655, 6.65286, 6.16331, 6.24611, 7.1309, 7.1333, 7.24423, 6.04025, 6.86901, 6.802389999999999, 6.70073, 6.1203, 6.90575, 7.313219999999999, 6.54822, 6.95655, 7.50108, 6.39693, 6.551080000000001, 7.07918, 5.8579300000000005, 5.70378, 6.7369699999999995, 7.745, 6.87213, 5.89715, 6.39693, 6.30628, 6.8773, 6.708080000000001, 6.52942, 6.818919999999999, 7.041410000000001, 6.06611, 6.882439999999999, 6.94986, 6.703189999999999, 6.37502, 5.70378, 7.03615, 7.37776, 5.66988, 6.907760000000001, 6.882439999999999, 6.752269999999999, 6.48158, 6.47697, 7.04752, 6.802389999999999, 6.984719999999999, 5.9269300000000005, 6.49224, 6.385190000000001, 7.1309, 7.663880000000001, 7.07242, 6.907760000000001, 6.43775, 8.05516, 6.807930000000001, 6.785589999999999, 6.907760000000001, 6.403569999999999, 6.035480000000001, 7.24423, 6.05209, 7.338889999999999, 7.0255399999999995, 7.00307, 5.99146, 6.33683, 6.07993, 7.488289999999999, 6.51175, 5.7365699999999995, 5.7365699999999995, 6.90575, 6.697030000000001, 6.354369999999999, 6.802389999999999, 6.62007, 6.68461, 6.68835, 5.8260000000000005, 6.85646, 6.44572, 6.95655, 7.20786, 6.3716099999999996, 6.8977, 6.47697, 6.802389999999999, 6.90575, 6.84055, 7.676010000000001, 6.85646, 6.43775, 7.20786, 6.89163, 7.0121199999999995, 6.85646, 6.77422, 6.54965, 6.05209, 6.697030000000001, 6.90575, 6.68461, 6.62007, 7.24423, 6.36819, 6.8844899999999996, 6.62007, 6.745239999999999, 6.19236, 6.39693, 6.85646, 6.7334, 5.9269300000000005, 5.98896, 6.48004, 6.55393, 6.5903, 7.02643, 7.15305, 6.19236, 6.43615, 6.6871100000000006, 6.42162, 6.06379, 6.93537, 7.09008, 6.802389999999999, 6.47697, 6.2634, 7.79028, 6.10032, 6.0282800000000005, 7.408530000000001, 6.6174, 6.907760000000001, 6.90575, 5.99146, 6.2441699999999996, 6.00141, 6.39693, 6.79122, 6.9196800000000005, 6.9147300000000005, 6.90575, 6.408530000000001, 6.646389999999999, 6.746410000000001, 6.30992, 6.42972, 6.18826, 6.5467900000000006, 7.522939999999999, 6.7334, 6.07993, 6.907760000000001, 6.90575, 7.04752, 6.66185, 6.47697, 7.23418, 6.54247, 6.753439999999999, 6.51471, 7.034389999999999, 6.65286, 7.262630000000001, 6.47697, 7.20786, 6.90575, 6.30992, 6.984719999999999, 6.30445, 6.05209, 6.34564, 6.95655, 6.49224, 6.62007, 5.82895, 6.39693, 6.06146, 6.43775, 6.03787, 6.3952599999999995, 6.22654, 7.144410000000001, 6.90575, 6.91374, 5.70378, 7.6009, 6.5903, 7.1592899999999995, 6.57786, 6.6783399999999995, 6.72383, 6.41182, 6.53233, 6.907760000000001, 6.7334, 7.236339999999999, 6.20456, 6.10925, 6.715380000000001, 6.72743, 6.551080000000001, 7.084230000000001, 6.97635, 7.20786, 6.685860000000001, 6.8977, 7.00307, 6.35089, 5.70378, 6.59167, 6.461469999999999, 6.984719999999999, 6.53233, 6.646389999999999, 6.39693, 7.459910000000001, 6.19848, 7.0255399999999995, 7.1309, 6.745239999999999, 6.22654, 6.10925, 7.08171, 6.64249, 7.49332, 7.495539999999999, 7.1546199999999995, 7.1309, 6.745239999999999, 6.18415, 5.82895, 6.10925, 6.58617, 6.48158, 6.20456, 7.313219999999999, 6.94022, 6.90575, 6.41836, 6.10925, 7.48717, 7.0193, 6.983789999999999, 6.633319999999999, 6.29157, 7.49109, 6.91672, 6.90575, 6.51323, 6.715380000000001, 5.8141300000000005, 6.47697, 7.37212, 6.646389999999999, 7.0184, 6.84055, 7.24423, 6.834110000000001, 7.09008, 6.52942, 7.4553, 7.00307, 6.37502, 7.24423, 6.48158, 6.68461, 6.10925, 6.90575, 6.90575, 7.24423, 7.75577, 6.82437, 6.43775, 6.18415, 6.43775, 6.90575, 7.1107, 6.44572, 6.42162, 6.769639999999999, 6.93245, 6.818919999999999, 6.551080000000001, 6.58617, 6.96508, 6.44572, 6.7093, 6.83195, 6.28972, 7.1082399999999994, 7.135689999999999, 6.49072, 7.251339999999999, 8.51719, 6.807930000000001, 7.14756, 7.33368, 6.77422, 6.60394, 6.68461, 7.1309, 5.99146, 7.201169999999999, 5.99146, 6.10925, 6.68461, 6.39693, 6.927560000000001, 6.85751, 6.95655, 6.08677, 7.24423, 7.1309, 6.17587, 6.802389999999999, 6.30992, 6.36303, 5.8999, 6.77422, 6.2860000000000005, 6.828710000000001, 6.47697, 6.72743, 6.55251, 6.29157, 5.59842, 6.62407, 5.9814099999999994, 6.76273, 7.06902, 5.9269300000000005, 6.80128, 7.313219999999999, 6.966019999999999, 6.6592899999999995, 6.39693, 6.57786, 6.62007, 6.65286, 6.293419999999999, 5.4161, 5.87493, 6.79122, 6.987489999999999, 6.30992, 6.55536, 7.09008, 6.2146099999999995, 7.04752, 6.90575, 6.10925, 6.6783399999999995, 6.39693, 7.259119999999999, 7.43838, 6.47697, 7.1309, 6.77422, 6.2634, 6.739339999999999, 7.46737, 6.47697, 6.90575, 7.279319999999999, 6.815639999999999, 7.1309, 6.65028, 6.27099, 7.17012, 6.354369999999999, 6.29157, 6.802389999999999, 6.602589999999999, 6.47697, 6.63857, 6.58755, 6.77422, 6.907760000000001, 7.09589, 6.882439999999999, 5.45959, 6.05209, 7.67322, 6.85646, 5.8579300000000005, 5.78074, 6.2146099999999995, 7.2957399999999994, 5.84354, 6.802389999999999, 6.58064, 6.2634, 7.00307, 6.90575, 7.21891, 7.503839999999999, 6.45677, 6.950810000000001, 5.97126, 6.23048, 6.15273, 7.57558, 6.96035, 6.3716099999999996, 6.2146099999999995, 6.7334, 6.86066, 6.378430000000001, 6.48004, 7.00307, 6.8200199999999995, 6.47697, 6.90575, 7.39388, 7.4787300000000005, 6.2146099999999995, 6.802389999999999, 6.43775, 7.24065, 5.70378, 6.13773, 6.3952599999999995, 7.1025, 7.04752, 7.09008, 6.77992, 6.9256, 6.035480000000001, 7.22766, 7.475339999999999, 6.62007, 5.72031, 6.272880000000001, 6.01616, 6.27099, 7.91936, 6.2146099999999995, 6.85646, 6.354369999999999, 6.2634, 6.51471, 6.92166, 6.253830000000001, 5.9269300000000005, 6.745239999999999, 6.30992, 7.3651800000000005, 6.24998, 6.893660000000001, 6.53669, 6.43615, 7.04752, 6.30992, 6.39693, 6.1334, 6.765039999999999, 6.85646, 6.892639999999999, 6.95655, 5.99146, 6.43775, 6.90575, 6.81124, 6.966019999999999, 6.8865300000000005, 6.62007, 7.334980000000001, 6.72743, 6.93245, 7.27031, 7.03878, 7.0255399999999995, 6.83518, 6.77992, 6.68461, 7.696210000000001, 6.53669, 6.52942, 6.126869999999999, 6.54965, 6.715380000000001, 7.31122, 5.8693, 6.90575, 6.0282800000000005, 6.30992, 6.23245, 6.31536, 7.486610000000001, 6.52942, 6.8426800000000005, 6.14204, 6.88755, 6.62007, 6.34564, 6.44413, 6.62007, 5.99146, 6.93245, 7.37776, 6.907760000000001, 5.99146, 7.18917, 6.7093, 6.75926, 6.3315, 6.5439099999999994, 6.1717, 7.9459100000000005, 6.77422, 7.424760000000001, 6.45362, 5.70378, 6.43775, 6.90575, 7.6009, 6.90575, 7.46737, 6.694560000000001, 6.907760000000001, 8.16052, 6.98008, 6.984719999999999, 6.802389999999999, 5.99146, 6.802389999999999, 7.32647, 7.1309, 5.96101, 6.62007, 6.84055, 6.58617, 7.1309, 7.00307, 7.78322, 6.62007, 5.7525699999999995, 6.62407, 6.795710000000001, 7.212289999999999, 6.05209, 6.38856, 6.93925, 6.47697, 6.8773, 6.354369999999999, 7.9724699999999995, 7.64969, 6.703189999999999, 6.658010000000001, 6.47697, 6.50429, 6.58617, 6.893660000000001, 6.51471, 6.06611, 6.68461, 6.65544, 7.331060000000001, 6.64118, 6.47697, 7.475910000000001, 6.72743, 7.20786, 6.81124, 7.0201899999999995, 7.279319999999999, 8.02027, 6.80461, 5.99645, 7.10906, 6.40523, 6.77422, 7.01571, 6.54822, 6.14204, 6.57786, 6.47697, 7.24423, 5.93225, 5.9269300000000005, 7.46737, 6.69084, 6.47697, 6.85646, 6.88755, 7.24423, 6.2634, 6.95655, 6.67077, 6.85646, 7.313219999999999, 6.98008, 6.75577, 6.566669999999999, 7.09008, 6.697030000000001, 5.78383, 6.79794, 6.2634, 6.61874, 6.64118, 7.1309, 6.98101, 6.90575, 5.90263, 6.17794, 6.77422, 6.96035, 6.6515699999999995, 6.35957, 6.829789999999999, 6.66568, 7.09008, 6.10925, 6.85646, 6.90575, 6.95655, 6.126869999999999, 7.1309, 6.4552, 6.58617, 7.23778, 6.66568, 6.21261, 6.57925, 6.907760000000001, 6.802389999999999, 6.88755, 7.08171, 6.6567300000000005, 7.696210000000001, 6.68461, 6.43775, 6.802389999999999, 6.6592899999999995, 5.4161, 6.48311, 6.408530000000001, 6.84055, 7.17778, 6.2634, 6.4892, 6.62007, 6.95177, 6.785589999999999, 7.033510000000001, 7.1107, 6.57647, 6.85646, 6.23637, 6.530880000000001, 6.43775, 6.90575, 6.30992, 6.85646, 6.62007, 6.04025, 6.79122, 6.30992, 6.62007, 5.76832, 6.81014, 6.551080000000001, 6.56526, 6.551080000000001, 7.09008, 6.86693, 6.9613, 6.7901, 6.95655, 6.65286, 5.9814099999999994, 6.28227, 7.46737, 7.18007, 7.46737, 6.90575, 6.52209, 7.37776, 6.90575, 5.99146, 7.46737, 5.99146, 6.18826, 6.4552, 6.59987, 7.346010000000001, 6.68461, 7.6009, 7.14913, 7.27031, 6.317159999999999, 6.72503, 5.8861, 5.99146, 6.62007, 6.6871100000000006, 7.17012, 6.802389999999999, 5.93754, 6.995769999999999, 6.802389999999999, 6.52356, 6.55251, 6.56526, 6.72383, 7.09008, 6.68461, 6.52209, 7.313219999999999, 6.94698, 6.561030000000001, 6.907760000000001, 7.71869, 5.96615, 7.143619999999999, 6.41673, 6.907760000000001, 6.29157, 6.354369999999999, 7.00307, 6.802389999999999, 6.90375, 6.1944099999999995, 7.09008, 6.90575, 6.47697, 7.26193, 6.60665, 6.424869999999999, 6.745239999999999, 7.37776, 6.13773, 6.882439999999999, 6.907760000000001, 6.858569999999999, 6.745239999999999, 7.495539999999999, 7.1546199999999995, 6.68461, 6.2804, 6.6592899999999995, 6.77422, 6.893660000000001, 6.86693, 7.408530000000001, 6.72743, 6.42972, 6.633319999999999, 7.0579, 6.68461, 7.185389999999999, 7.26543, 7.05099, 6.10925, 6.60123, 7.233460000000001, 6.90575, 6.77194, 6.6567300000000005, 6.3243599999999995, 6.55393, 6.90575, 6.10925, 6.9613, 6.90575, 6.907760000000001, 6.90975, 7.64969, 7.1309, 6.745239999999999, 5.99146, 6.354369999999999, 5.4161, 6.55536, 6.02102, 6.7334, 6.47697, 6.47697, 6.53669, 6.95655, 6.551080000000001, 6.16331, 7.6009, 6.90575, 7.17242, 6.3421199999999995, 6.9196800000000005, 6.51471, 7.24423, 6.85646, 6.551080000000001, 6.86693, 6.35611, 6.90575, 6.34914, 7.696210000000001, 7.17012, 6.802389999999999, 6.253830000000001, 6.90575, 6.48464, 6.49224, 6.82763, 6.90575, 7.014810000000001, 6.2634, 7.04752, 6.90575, 7.20786, 7.02997, 7.803839999999999, 6.31355, 6.89467, 6.829789999999999, 7.17012, 7.54961, 7.28207, 6.69084, 7.1929300000000005, 6.33328, 5.84354, 6.85646, 6.912739999999999, 6.80017, 6.97635, 6.2653, 6.07535, 7.1309, 7.17012, 6.59715, 7.0884100000000005, 6.77992, 7.16627, 6.19644, 6.39693, 5.9814099999999994, 6.90575, 6.90575, 6.6958, 5.01728, 7.279319999999999, 7.136480000000001, 6.608, 6.68461, 7.9831, 6.9828600000000005, 6.30992, 6.2146099999999995, 7.09506, 6.44572, 6.2634, 6.90575, 6.90575, 7.08339, 5.96615, 6.9622399999999995, 7.11233, 6.912739999999999, 6.68461, 6.85646, 6.8254600000000005, 7.346010000000001, 6.68085, 7.24423, 6.8426800000000005, 6.62007, 6.1070199999999994, 6.33328, 6.15698, 6.893660000000001, 6.43775, 6.30262, 6.253830000000001, 7.30317, 6.829789999999999, 6.56808, 6.36303, 7.20786, 6.752269999999999, 6.95655, 6.02102, 6.633319999999999, 6.2634, 7.183110000000001, 6.907760000000001, 6.6174, 7.43838, 6.45047, 6.9707300000000005, 6.3952599999999995, 7.09008, 6.49979, 6.94986, 7.06902, 6.68461, 7.22766, 6.68461, 7.1309, 6.975410000000001, 6.2672, 6.50279, 6.551080000000001, 6.59987, 6.7334, 6.16331, 6.2146099999999995, 6.95655, 6.694560000000001, 6.44572, 6.6783399999999995, 7.408530000000001, 7.09008, 6.614730000000001, 6.72743, 6.17379, 7.03615, 6.05209, 6.6280399999999995, 6.83518, 7.09008, 6.63857, 6.17794, 6.551080000000001, 6.30992, 7.07834, 6.39693, 6.57228, 7.346010000000001, 6.938280000000001, 6.715380000000001, 6.7511, 6.715380000000001, 6.58617, 5.59842, 6.3935900000000006, 7.26193, 6.49072, 6.829789999999999, 6.745239999999999, 6.721430000000001, 6.59715, 6.00389, 6.9828600000000005, 6.62007, 6.85646, 7.04752, 6.23441, 6.551080000000001, 6.63726, 6.14633, 6.563860000000001, 6.73102, 6.2634, 6.3243599999999995, 6.721430000000001, 6.6796, 7.062189999999999, 6.10925, 7.313219999999999, 6.34564, 6.561030000000001, 6.17379, 7.06987, 6.87626, 6.505780000000001, 6.745239999999999, 6.966019999999999, 6.4488900000000005, 7.1309, 6.68461, 6.575080000000001, 6.40192, 6.70073, 6.56808, 6.7334, 6.30992, 7.0775, 6.6796, 6.8384100000000005, 7.03615, 6.85751, 6.745239999999999, 7.313219999999999, 6.86693, 7.08171, 6.85646, 6.47697, 6.47697, 6.28972, 7.46737, 7.2724, 6.61874, 6.30079, 7.0255399999999995, 6.27099, 6.90575, 6.34564, 6.9828600000000005, 7.450080000000001, 6.224559999999999, 6.551080000000001, 6.551080000000001, 6.23441, 6.77422, 7.1309, 6.52209, 7.49332, 6.39192, 6.739339999999999, 7.4832399999999994, 6.16331, 6.68461, 6.90575, 6.715380000000001, 6.90575, 7.1309, 6.86171, 6.715380000000001, 5.70378, 6.551080000000001, 6.802389999999999, 6.33683, 6.9187, 7.0579, 6.35611, 7.02376, 5.4161, 5.5797300000000005, 6.90575, 6.82655, 6.90575, 5.9269300000000005, 7.42833, 5.87212, 6.463030000000001, 7.52833, 6.86797, 6.95655, 6.60665, 6.90575, 6.4677, 7.3651800000000005, 6.748760000000001, 6.77992, 6.975410000000001, 7.43838, 7.82405, 6.5439099999999994, 6.42162, 6.8844899999999996, 7.16085, 6.52209, 6.04025, 5.52146, 6.90575, 7.00307, 6.907760000000001, 6.817830000000001, 7.279319999999999, 6.907760000000001, 7.54961, 7.323169999999999, 6.90575, 6.41017, 6.90575, 6.787839999999999, 6.62007, 7.0967199999999995, 5.9269300000000005, 6.55393, 7.0255399999999995, 6.17379, 7.00307, 7.31122, 7.31122, 6.31355, 6.44572, 6.59578, 6.47697, 7.226210000000001, 6.62007, 6.69332, 6.7511, 6.77422, 7.09008, 5.8579300000000005, 7.183110000000001, 7.728860000000001, 6.54965, 7.04752, 7.25488, 6.9256, 6.907760000000001, 5.65249, 7.041410000000001, 6.4599, 6.96035, 7.1333, 6.99942, 6.38012, 7.200419999999999, 7.18007, 7.1309, 6.461469999999999, 6.85646, 7.17012, 7.03527, 6.19848, 6.62007, 7.313219999999999, 6.907760000000001, 6.90575, 6.05209, 7.1452, 6.02102, 5.82895, 6.33683, 6.04025, 6.2146099999999995, 7.8935699999999995, 6.34564, 6.64249, 6.8977, 6.3699, 6.6567300000000005, 6.813439999999999, 6.53669, 6.90575, 6.47697, 6.05209, 7.21524, 6.551080000000001, 6.66568, 6.57925, 6.2146099999999995, 6.8426800000000005, 6.907760000000001, 6.90575, 7.106610000000001, 6.424869999999999, 6.65415, 6.86693, 6.745239999999999, 6.88346, 6.53669, 6.3207699999999996, 7.696210000000001, 7.64779, 7.313219999999999, 6.95655, 5.95584, 6.715380000000001, 6.44254, 6.8966899999999995, 6.61338, 6.8426800000000005, 6.23245, 6.95655, 6.768489999999999, 7.3981699999999995, 6.68461, 7.12287, 6.813439999999999, 6.752269999999999, 6.551080000000001, 6.86066, 6.7334, 6.318969999999999, 6.79122, 5.95324, 6.745239999999999, 7.1309, 6.54103, 7.06048, 6.24222, 6.68461, 6.9177100000000005, 6.05209, 6.78672, 7.09008, 7.1309, 6.47697, 7.1025, 5.9814099999999994, 7.24423, 6.44254, 7.451239999999999, 7.198180000000001, 7.27101, 7.245660000000001, 6.51471, 7.279319999999999, 6.85646, 7.279319999999999, 7.67322, 6.76273, 6.82437, 6.47697, 6.885510000000001, 7.07918, 7.279319999999999, 7.1309, 6.966019999999999, 6.73102, 6.633319999999999, 7.00307, 5.940169999999999, 7.6009, 6.907760000000001, 6.32615, 6.508769999999999, 6.551080000000001, 7.0884100000000005, 6.829789999999999, 7.31986, 6.21661, 7.11802, 6.77422, 7.26193, 6.90575, 7.17012, 7.00307, 5.99146, 7.46737, 6.57786, 6.3081, 6.90575, 6.311730000000001, 6.39693, 6.95655, 6.62007, 6.3952599999999995, 7.04752, 6.48311, 6.50429, 6.39693, 6.90575, 6.60665, 6.90575, 6.318969999999999, 6.802389999999999, 6.70441, 6.51471, 6.77992, 6.68461, 6.29157, 6.40523, 6.18826, 7.24423, 6.83518, 7.09008, 7.84502, 7.1624, 6.813439999999999, 6.907760000000001, 6.68461, 6.14633, 7.17012, 6.53814, 6.2146099999999995, 6.882439999999999, 6.36647, 6.47697, 7.54697, 6.60665, 6.68461, 7.408530000000001, 7.2724, 6.46614, 6.90575, 6.95655, 5.7462, 6.36303, 7.20786, 7.04752, 7.04316, 6.551080000000001, 6.58064, 6.17379, 6.83195, 6.8533, 5.70378, 7.20786, 6.62007, 6.95655, 6.90575, 6.34564, 7.09008, 7.014810000000001, 6.73815, 6.65028, 7.03878, 6.10032, 7.266830000000001, 6.95655, 6.58617, 7.20786, 6.68461, 6.602589999999999, 6.551080000000001, 6.87626, 5.16479, 7.54961, 6.551080000000001, 6.84055, 6.49224, 6.58893, 5.2983199999999995, 6.60665, 6.907760000000001, 7.64969, 6.9177100000000005, 6.18415, 6.68461, 7.43838, 6.66441, 6.551080000000001, 5.99146, 6.41182, 6.43775, 6.10925, 6.43775, 6.4599, 7.00307, 5.99146, 6.852239999999999, 6.51175, 6.5439099999999994, 6.6515699999999995, 7.522939999999999, 6.16331, 6.551080000000001, 6.907760000000001, 7.04752, 6.44572, 6.3243599999999995, 6.41346, 6.551080000000001, 6.802389999999999, 6.62007, 6.5439099999999994, 6.57925, 6.38012, 6.4151, 6.52209, 6.29157, 6.2146099999999995, 6.97167, 6.75926, 6.73102, 6.66823, 7.37776, 7.1309, 6.90575, 6.10925, 7.408530000000001, 6.39693, 6.04025, 7.0396600000000005, 7.09589, 7.10003, 6.73102, 6.87523, 6.90575, 7.20786, 7.173960000000001, 6.90575, 6.47389, 6.99026, 7.0884100000000005, 6.206580000000001, 6.56526, 6.44572, 6.802389999999999, 6.551080000000001, 6.53379, 6.90575, 6.46614, 6.61338, 6.90575, 6.85646, 6.47389, 6.10925, 6.99118, 6.2441699999999996, 7.1592899999999995, 6.697030000000001, 6.90575, 6.59987, 7.01571, 6.42162, 6.716589999999999, 6.85646, 7.46737, 6.58617, 6.95655, 6.29157, 6.907760000000001, 6.46459, 6.62007, 6.95177, 6.58617, 6.50129, 6.2952699999999995, 6.85646, 6.15698, 6.90575, 7.6009, 7.00307, 6.17379, 6.15273, 7.01392, 6.62007, 7.346010000000001, 6.90575, 6.68461, 6.50429, 7.24423, 7.0942300000000005, 5.78383, 6.54535, 6.3716099999999996, 7.86327, 6.62007, 7.09008, 6.703189999999999, 6.354369999999999, 6.53233, 6.58617, 7.46737, 6.9622399999999995, 6.39693, 6.38012, 6.802389999999999, 6.43935, 7.044910000000001, 6.42162, 6.90575, 6.802389999999999, 6.44413, 7.127689999999999, 6.45677, 6.40192, 6.55393, 6.593039999999999, 7.06902, 6.59987, 6.802389999999999, 6.715380000000001, 6.715380000000001, 6.39693, 6.57786, 6.68461, 7.00307, 6.42972, 6.85435, 6.58893, 6.937310000000001, 6.2106, 6.708080000000001, 6.0845, 6.907760000000001, 6.16331, 6.43775, 6.2146099999999995, 6.2441699999999996, 6.74406, 6.85646, 6.73221, 5.72031, 6.13123, 7.54961, 6.37673, 6.90575, 6.62007, 6.768489999999999, 6.63595, 5.82895, 6.90575, 6.75577, 6.77194, 6.77422, 6.99485, 6.58617, 5.8999, 6.2146099999999995, 6.2146099999999995, 6.6567300000000005, 6.62007, 6.9489, 7.354360000000001, 7.279319999999999, 5.8861, 6.6592899999999995, 7.06305, 6.61338, 7.00307, 6.49224, 6.84588, 6.35611, 6.35611, 6.8977, 7.20786, 6.90575, 7.59287, 7.1309, 7.393260000000001, 6.95655, 6.834110000000001, 6.07993, 7.10988, 6.802389999999999, 6.224559999999999, 6.57925, 6.927560000000001, 6.90575, 7.09008, 7.1309, 6.90575, 6.907760000000001, 6.16542, 6.62007, 7.6009, 6.963189999999999, 6.95655, 6.90575, 6.90575, 6.796819999999999, 6.66568, 6.907760000000001, 6.8533, 6.813439999999999, 7.196689999999999, 6.43615, 6.9147300000000005, 6.551080000000001, 6.77194, 6.90575, 6.90575, 6.66823, 6.47697, 7.0255399999999995, 7.522939999999999, 6.62007, 6.354369999999999, 7.1546199999999995, 6.90575, 6.551080000000001, 5.78383, 6.753439999999999, 6.77422, 7.313219999999999, 6.967910000000001, 6.816739999999999, 7.6009, 6.745239999999999, 6.51471, 7.37588, 6.86485, 6.41346, 6.7093, 6.551080000000001, 6.22654, 7.24423, 6.06146, 6.16331, 7.05359, 6.86171, 6.58617, 7.1309, 6.77422, 7.93737, 6.39693, 6.58617, 7.67322, 6.551080000000001, 6.2146099999999995, 6.77422, 6.2634, 6.99485, 6.45047, 6.66185, 6.94119, 6.90575, 7.21891, 7.57558, 7.495539999999999, 6.10925, 6.59715, 7.09008, 6.03787, 6.556780000000001, 6.354369999999999, 7.6009, 6.83303, 6.551080000000001, 7.279319999999999, 6.354369999999999, 7.925160000000001, 6.77422, 7.183110000000001, 6.1136800000000004, 6.77992, 6.62007, 7.00307, 7.86327, 6.70073, 6.795710000000001, 7.1309, 6.32794, 6.16121, 5.6801699999999995, 6.65286, 6.802389999999999, 6.715380000000001, 6.95655, 6.78333, 6.90575, 6.67582, 6.47697, 6.907760000000001, 6.90575, 6.53233, 6.882439999999999, 7.0255399999999995, 6.23048, 6.715380000000001, 7.872839999999999, 6.49072, 6.90575, 6.4892, 6.63726, 6.12249, 6.3613, 6.79122, 6.53233, 6.05209, 6.907760000000001, 6.697030000000001, 6.8742, 6.08677, 6.6280399999999995, 6.907760000000001, 6.05209, 5.70378, 7.02997, 6.715380000000001, 6.2146099999999995, 6.90575, 7.313219999999999, 6.3699, 6.07074, 6.77992, 6.54822, 6.62007, 6.59987, 6.62007, 6.8966899999999995, 6.802389999999999, 6.7226300000000005, 6.07993, 6.51026, 6.907760000000001, 6.50429, 6.47697, 6.58617, 6.77422, 6.8977, 5.9135, 6.17379, 8.047189999999999, 6.93537, 6.2146099999999995, 6.507280000000001, 7.46737, 5.82895, 7.034389999999999, 6.7569300000000005, 7.2998, 6.95655, 6.17794, 6.68461, 7.495539999999999, 6.62007, 6.88755, 6.45205, 6.802389999999999, 6.32794, 6.68461, 8.03916, 6.829789999999999, 6.6745600000000005, 6.714169999999999, 6.43775, 5.4161, 7.00307, 6.43455, 6.90575, 7.346660000000001, 6.9256, 7.6009, 7.10988, 7.24423, 6.7569300000000005, 6.48004, 6.889589999999999, 7.313219999999999, 6.9256, 6.59167, 6.57786, 6.53669, 6.39693, 6.33328, 6.33328, 7.313219999999999, 6.551080000000001, 7.408530000000001, 6.802389999999999, 7.3908, 6.90575, 6.9256, 6.95655, 6.13123, 6.551080000000001, 7.06561, 6.57925, 6.90575, 6.73102, 7.09008, 6.566669999999999, 6.9966800000000005, 6.43775, 6.62007, 6.68461, 6.424869999999999, 6.646389999999999, 6.2146099999999995, 6.802389999999999, 6.90575, 6.9613, 5.70378, 6.78672, 6.65286, 7.24423, 7.09008, 6.602589999999999, 6.42162, 7.0422899999999995, 7.034389999999999, 6.59987, 6.44572, 6.20456, 6.57925, 6.38012, 6.16331, 7.43838, 6.818919999999999, 6.551080000000001, 6.53669, 6.95655, 5.76832, 7.2100800000000005, 6.48311, 6.507280000000001, 6.45362, 6.765039999999999, 6.2634, 6.2691, 7.18917, 6.2146099999999995, 6.802389999999999, 6.50129, 6.2634, 7.38647, 6.96885, 6.10925, 7.196689999999999, 6.3403599999999996, 6.818919999999999, 6.72623, 6.90575, 7.04752, 6.7569300000000005, 6.62936, 7.09008, 6.62007, 5.9839400000000005, 6.95655, 7.49332, 6.62007, 6.31355, 6.62007, 6.753439999999999, 6.77422, 6.2653, 7.495539999999999, 6.7334, 6.95655, 6.56526, 6.88755, 7.47307, 6.47697, 6.90575, 6.90575, 7.909860000000001, 6.69084, 6.3716099999999996, 6.52209, 7.106610000000001, 6.40523, 6.69084, 5.627619999999999, 6.6567300000000005, 6.68461, 6.697030000000001, 6.22654, 7.740660000000001, 6.907760000000001, 6.43775, 6.43775, 6.813439999999999, 5.76832, 6.9256, 7.64969, 6.47697, 6.10925, 7.1309, 5.89715, 6.907760000000001, 6.745239999999999, 6.43775, 6.85646, 6.77422, 6.768489999999999, 7.029089999999999, 6.62007, 7.06133, 7.24423, 6.95177, 7.54961, 6.354369999999999, 6.87626, 6.318969999999999, 6.570880000000001, 6.62007, 7.61332, 7.09008, 6.7511, 6.8977, 6.551080000000001, 7.40914, 7.034389999999999, 6.49072, 6.30992, 5.70378, 6.55393, 6.72743, 6.05209, 7.0967199999999995, 6.90575, 6.551080000000001, 6.907760000000001, 6.785589999999999, 6.39693, 6.05209, 6.90575, 6.697030000000001, 6.814539999999999, 6.639880000000001, 6.62007, 7.24423, 6.77194, 6.551080000000001, 6.802389999999999, 5.8999, 6.57228, 7.062189999999999, 6.47697, 6.2441699999999996, 6.829789999999999, 6.95655, 6.907760000000001, 6.38012, 7.293019999999999, 6.91175, 6.68461, 6.45834, 6.556780000000001, 6.5582, 6.91175, 6.45362, 7.1309, 6.8773, 6.955589999999999, 7.80588, 6.9613, 5.4161, 6.907760000000001, 6.90575, 7.18992, 7.507689999999999, 6.90575, 6.385190000000001, 7.31122, 6.6107, 6.807930000000001, 6.79794, 6.1717, 6.16331, 6.6592899999999995, 7.0483899999999995, 6.598510000000001, 5.5797300000000005, 7.6009, 6.09131, 7.106610000000001, 6.90575, 7.66153, 7.22548, 6.48768, 6.87213, 7.17012, 6.23245, 6.39693, 6.4677, 7.35244, 7.183110000000001, 6.56948, 8.00637, 7.05272, 6.33328, 6.90575, 6.802389999999999, 6.30992, 6.551080000000001, 6.10925, 6.77422, 6.30992, 7.522939999999999, 6.49979, 6.802389999999999, 7.05704, 7.16858, 6.802389999999999, 6.58617, 6.551080000000001, 7.20564, 6.551080000000001, 7.1507, 6.852239999999999, 7.6009, 6.70564, 5.7525699999999995, 6.90575, 6.802389999999999, 6.11147, 6.95655, 6.84375, 6.95655, 6.8977, 7.34923, 6.93245, 6.34564, 6.79122, 7.03878, 7.400010000000001, 5.8579300000000005, 7.37588, 6.83195, 7.00307, 6.84162, 6.354369999999999, 6.93342, 6.608, 6.85646, 6.61607, 6.056780000000001, 6.90575, 6.697030000000001, 6.5395900000000005, 6.6120399999999995, 6.63726, 7.1309, 6.739339999999999, 7.86327, 6.55393, 6.47697, 6.7511, 6.907760000000001, 6.05912, 6.54535, 6.551080000000001, 7.00307, 6.51471, 6.57925, 6.66823, 7.71869, 5.52146, 7.1309, 6.551080000000001, 6.44572, 7.00307, 6.253830000000001, 7.401839999999999, 5.99146, 7.2724, 6.907760000000001, 6.90575, 6.3315, 6.3699, 6.39693, 7.82405, 6.95655, 6.09582, 6.07535, 6.90575, 6.8426800000000005, 7.0518600000000005, 6.993930000000001, 6.907760000000001, 6.79122, 6.7511, 6.2146099999999995, 6.78897, 6.67203, 7.259119999999999, 7.6811, 6.745239999999999, 7.27031, 6.721430000000001, 6.90575, 6.563860000000001, 6.99485, 7.37776, 7.06048, 7.6009, 6.30992, 6.84375, 7.0282, 6.66696, 6.90575, 6.47235, 6.56244, 8.0229, 6.90575, 6.6592899999999995, 6.80351, 6.92658, 6.4892, 6.28227, 7.06902, 6.08677, 5.958419999999999, 7.1309, 5.68698, 6.62007, 6.33683, 6.984719999999999, 6.753439999999999, 6.354369999999999, 6.52209, 6.52209, 7.362010000000001, 6.8200199999999995, 6.73102, 6.39693, 6.8773, 6.507280000000001, 7.313219999999999, 6.81014, 6.802389999999999, 6.49072, 7.46737, 6.82437, 6.745239999999999, 6.11147, 6.2634, 7.181589999999999, 6.551080000000001, 7.05618, 6.29157, 7.2998, 5.86079, 6.51619, 6.56948, 6.937310000000001, 5.83188, 6.9256, 6.90575, 6.10925, 6.39693, 7.09008, 6.82437, 6.753439999999999, 6.966019999999999, 6.802389999999999, 7.239210000000001, 6.5582, 6.907760000000001, 6.98008, 6.62407, 5.70378, 6.551080000000001, 6.41673, 7.313219999999999, 6.62007, 6.84588, 6.95655, 6.42162, 6.68461, 6.715380000000001, 6.85646, 6.57786, 5.8579300000000005, 6.2146099999999995, 7.313219999999999, 7.37776, 6.07993, 6.30992, 7.1309, 6.69084, 6.70564, 5.7462, 6.16752, 7.279319999999999, 6.73102, 6.53669, 6.24222, 7.03527, 7.04752, 6.507280000000001, 6.93049, 6.59715, 7.09008, 6.45047, 6.33328, 6.68461, 6.62007, 6.6592899999999995, 6.90575, 7.04752, 6.30992, 7.43838, 6.6346300000000005, 6.59167, 6.1181, 6.41836, 7.2724, 6.56526, 6.90575, 7.91936, 6.54103, 6.90575, 7.57558, 6.20456, 6.802389999999999, 6.899719999999999, 7.484369999999999, 6.90575, 6.51471, 5.7462, 6.39693, 6.94698, 7.084230000000001, 6.96885, 6.907760000000001, 7.00307, 7.293019999999999, 7.173189999999999, 6.77422, 6.815639999999999, 6.43294, 6.813439999999999, 6.90575, 6.88857, 6.90575, 7.09008, 6.90575, 7.226210000000001, 5.76832, 5.70378, 7.279319999999999, 6.05912, 6.68461, 6.6592899999999995, 7.91936, 6.507280000000001, 7.00307, 6.47697, 6.551080000000001, 6.90575, 6.2146099999999995, 6.907760000000001, 6.715380000000001, 6.96885, 6.68461, 6.57368, 6.745239999999999, 6.53669, 5.76832, 6.2146099999999995, 6.8426800000000005, 7.520230000000001, 5.5797300000000005, 6.51323, 7.1082399999999994, 6.5582, 7.17012, 6.768489999999999, 6.39693, 7.393260000000001, 6.6958, 6.39693, 6.95177, 6.2146099999999995, 7.09008, 6.5582, 7.09008, 6.9613, 6.4892, 7.676010000000001, 6.715380000000001, 5.70378, 6.907760000000001, 6.3935900000000006, 7.54961, 6.86171, 5.79606, 6.83087, 6.6783399999999995, 6.54535, 6.593039999999999, 6.77422, 6.44572, 7.04752, 6.3716099999999996, 7.37776, 7.17012, 6.8426800000000005, 7.00307, 6.126869999999999, 6.50129, 6.8773, 6.56526, 6.354369999999999, 6.96885, 6.575080000000001, 6.62007, 6.42811, 6.752269999999999, 6.90575, 6.78672, 7.1309, 8.12089, 6.829789999999999, 7.00307, 6.2146099999999995, 6.1944099999999995, 7.740660000000001, 6.551080000000001, 6.907760000000001, 6.2146099999999995, 6.96979, 6.68461, 7.14283, 6.139880000000001, 7.1293, 6.89467, 5.43808, 6.621410000000001, 7.183110000000001, 6.5467900000000006, 6.34388, 6.39024, 7.0255399999999995, 6.424869999999999, 6.68461, 6.49979, 7.37776, 6.7901, 6.17379, 6.4488900000000005, 6.614730000000001, 6.802389999999999, 6.60665, 7.09008, 6.51323, 6.93245, 6.6592899999999995, 6.30992, 6.30992, 6.7226300000000005, 7.37776, 6.09807, 6.8977, 6.35784, 6.37502, 6.57925, 7.7021, 7.46737, 7.6009, 7.36455, 6.59715, 6.639880000000001, 6.36303, 5.82895, 6.59715, 6.62007, 6.551080000000001, 7.09008, 6.78333, 6.563860000000001, 7.0076, 6.880380000000001, 6.745239999999999, 6.82437, 6.4677, 7.127689999999999, 7.1309, 6.62007, 7.82084, 7.288930000000001, 6.72743, 6.39693, 6.68461, 7.10988, 6.563860000000001, 6.354369999999999, 6.7546, 7.196689999999999, 5.99146, 6.74052, 7.24423, 6.67203, 6.86485, 7.1309, 7.6009, 6.6107, 7.24423, 6.9256, 7.11314, 6.86693, 6.85118, 6.58617, 6.85646, 5.70378, 6.2146099999999995, 6.92363, 5.67675, 6.84588, 6.86171, 6.813439999999999, 6.62936, 6.50279, 5.7589, 6.7417, 7.18917, 6.2146099999999995, 6.93245, 6.78897, 6.74759, 7.00307, 6.3935900000000006, 7.09008, 7.84385, 6.802389999999999, 6.57647, 6.78672, 6.39693, 6.9707300000000005, 8.3082, 7.1309, 7.17012, 6.593039999999999, 6.90575, 6.62007, 6.86693, 6.259580000000001, 6.41999, 6.90575, 5.52146, 6.907760000000001, 7.43838, 6.64509, 7.09008, 6.39693, 7.0255399999999995, 7.903969999999999, 6.745239999999999, 6.80461, 7.037030000000001, 7.04752, 6.08904, 6.47697, 6.65286, 6.76388, 6.90575, 6.802389999999999, 6.87626, 6.90575, 7.1507, 7.07834, 7.21082, 6.52942, 6.701960000000001, 6.8426800000000005, 6.3207699999999996, 6.69827, 6.24611, 6.57786, 6.18826, 6.975410000000001, 7.16085, 6.30992, 6.83303, 7.61874, 6.48158, 5.99146, 6.44095, 6.99485, 6.907760000000001, 6.8384100000000005, 6.79122, 6.551080000000001, 6.6695, 7.279319999999999, 6.57925, 6.813439999999999, 6.30992, 6.68461, 6.47389, 6.802389999999999, 6.785589999999999, 6.45362, 7.313219999999999, 6.551080000000001, 7.29097, 5.8861, 6.98008, 6.802389999999999, 7.20786, 6.802389999999999, 6.983789999999999, 6.75926, 6.68461, 6.55962, 6.8977, 6.05912, 6.90575, 7.4570300000000005, 7.1309, 6.566669999999999, 6.829789999999999, 6.85646, 6.643789999999999, 6.77422, 7.90101, 6.32794, 6.25767, 7.81883, 6.966019999999999, 6.33328, 6.2146099999999995, 6.77422, 6.8384100000000005, 6.62007, 6.813439999999999, 6.551080000000001, 6.920669999999999, 7.195189999999999, 6.62007, 6.745239999999999, 6.3315, 6.69332, 6.745239999999999, 6.90575, 7.0396600000000005, 6.90575, 5.8260000000000005, 6.07535, 6.30992, 6.96885, 6.47697, 6.39693, 7.24423, 7.12367, 7.17012, 6.60394, 6.18415, 6.68461, 6.44413, 6.4677, 6.72623, 6.2146099999999995, 6.47697, 6.907760000000001, 6.4552, 7.1546199999999995, 7.37776, 7.18917, 6.10925, 6.5903, 7.136480000000001, 5.95584, 7.03878, 6.461469999999999, 6.697030000000001, 5.9839400000000005, 6.66568, 6.2146099999999995, 6.56526, 6.51471, 5.61677, 6.49375, 7.06048, 6.715380000000001, 6.10925, 6.95655, 7.1309, 6.95655, 6.90575, 6.76273, 6.311730000000001, 7.1507, 7.00307, 6.29157, 6.86693, 6.68461, 6.90575, 6.95655, 7.17012, 7.0255399999999995, 6.86171, 7.495539999999999, 6.49224, 6.90575, 6.8865300000000005, 7.57353, 6.602589999999999, 6.85646, 6.30992, 6.23048, 6.5467900000000006, 6.530880000000001, 6.802389999999999, 7.6009, 6.55962, 6.46459, 6.834110000000001, 7.313219999999999, 6.802389999999999, 6.7334, 6.66441, 7.251339999999999, 5.87774, 6.802389999999999, 7.43838, 6.35957, 6.43775, 6.5820300000000005, 6.768489999999999, 7.17012, 6.68461, 5.6733199999999995, 6.90575, 7.281389999999999, 7.17702, 6.90575, 6.95845, 6.44572, 6.583410000000001, 6.91672, 6.90575, 8.229510000000001, 7.027310000000001, 6.551080000000001, 6.84055, 7.136480000000001, 6.71174, 6.787839999999999, 6.74288, 7.0934, 7.200419999999999, 6.83087, 7.37776, 6.79122, 6.67203, 6.55393, 6.39693, 7.46737, 6.802389999999999, 7.165489999999999, 6.62007, 6.90575, 7.0255399999999995, 7.70661, 6.47389, 6.35957, 6.07535, 6.907760000000001, 7.1107, 6.593039999999999, 6.30992, 7.20786, 6.43775, 6.556780000000001, 6.83518, 6.77878, 6.966019999999999, 6.95273, 6.3716099999999996, 6.43133, 6.907760000000001, 6.68461, 6.64898, 6.28972, 7.00307, 6.2146099999999995, 6.66058, 6.967910000000001, 7.016610000000001, 6.68461, 7.09008, 6.85646, 6.90575, 5.66988, 7.09008, 6.53379, 6.84801, 6.90575, 5.99146, 7.21891, 6.90575, 6.745239999999999, 7.07242, 7.6009, 6.817830000000001, 6.23637, 7.346010000000001, 6.6592899999999995, 7.46737, 6.975410000000001, 6.79122, 6.719010000000001, 6.720219999999999, 6.90575, 6.90575, 6.68336, 6.892639999999999, 6.86485, 6.947939999999999, 6.955589999999999, 6.90575, 5.78383, 6.551080000000001, 5.66988, 7.0255399999999995, 7.04752, 6.3935900000000006, 6.807930000000001, 6.74288, 6.802389999999999, 6.4599, 6.354369999999999, 6.18208, 7.398789999999999, 7.37776, 7.35883, 6.47697, 7.18463, 6.745239999999999, 7.05876, 6.694560000000001, 6.84588, 6.68461, 7.64969, 6.59578, 7.027310000000001, 6.715380000000001, 6.04025, 5.84644, 6.2146099999999995, 6.507280000000001, 6.23441, 7.098380000000001, 6.2804, 7.6256, 6.633319999999999, 6.6346300000000005, 7.195189999999999, 6.43455, 6.52649, 6.49527, 6.51915, 7.54961, 7.09008, 7.00307, 6.36475, 5.7462, 6.77422, 6.10925, 6.73459, 7.1293, 6.49224, 6.28413, 7.17012, 6.90575, 6.6515699999999995, 6.56948, 6.80461, 6.03787, 7.313219999999999, 6.11589, 6.68461, 6.72743, 7.09008, 5.96615, 8.26873, 6.17794, 6.3935900000000006, 7.12287, 6.43775, 5.95324, 6.6796, 6.758089999999999, 6.68461, 5.70378, 6.90575, 7.495539999999999, 6.84588, 6.745239999999999, 6.21261, 7.251339999999999, 6.10032, 8.048789999999999, 7.313219999999999, 6.802389999999999, 6.745239999999999, 6.907760000000001, 6.90575, 5.82305, 6.90575, 7.17012, 6.2441699999999996, 8.08641, 5.59842, 7.08171, 6.9594, 6.97354, 7.30653, 6.55962, 6.58617, 6.74406, 7.56008, 6.1944099999999995, 7.408530000000001, 6.61338, 6.01616, 6.32794, 7.18007, 6.74052, 6.95655, 6.58617, 6.66568, 6.85646, 6.44572, 7.313219999999999, 7.1309, 5.99146, 6.18826, 5.59842, 6.49224, 6.821110000000001, 6.56526, 6.47697, 6.813439999999999, 7.43838, 7.2717, 6.30262, 6.38351, 6.551080000000001, 5.45959, 6.43775, 6.90575, 6.53233, 6.61874, 6.06843, 6.1203, 7.88231, 6.90575, 6.7569300000000005, 5.7651900000000005, 6.938280000000001, 7.08255, 6.41346, 6.882439999999999, 7.37776, 6.44413, 6.90575, 6.51471, 7.2998, 6.5439099999999994, 6.551080000000001, 6.90575, 7.35372, 7.135689999999999, 7.46737, 6.63595, 6.802389999999999, 7.346010000000001, 6.90575, 6.86693, 7.1309, 5.78383, 6.829789999999999, 6.65286, 6.7334, 7.2998, 6.65415, 6.9256, 6.90575, 6.39693, 6.52209, 6.3699, 6.770789999999999, 6.39693, 6.49072, 6.02345, 7.32251, 6.13123, 6.29711, 7.04752, 6.799060000000001, 6.272880000000001, 6.354369999999999, 6.49527, 6.57925, 6.697030000000001, 5.52146, 6.703189999999999, 7.04752, 6.65286, 6.752269999999999, 6.2146099999999995, 6.42162, 6.90575, 7.014810000000001, 6.62007, 6.85646, 6.745239999999999, 6.9256, 6.58617, 6.51471, 5.96615, 6.90575, 6.52942, 6.16331, 6.56526, 6.813439999999999, 7.09008, 5.8141300000000005, 6.49979, 6.769639999999999, 6.08677, 6.7369699999999995, 7.064760000000001, 6.01616, 7.11883, 6.48158, 6.51175, 7.46737, 6.57228, 6.551080000000001, 7.67322, 6.35957, 6.907760000000001, 6.58617, 7.1309, 6.57925, 6.43294, 6.39693, 7.46737, 6.95655, 6.54247, 6.3716099999999996, 7.293019999999999, 6.08677, 7.64969, 6.95655, 8.13153, 6.3613, 6.10925, 6.551080000000001, 6.907760000000001, 6.97261, 6.907760000000001, 6.43775, 6.3243599999999995, 6.83518, 6.993930000000001, 6.6567300000000005, 6.984719999999999, 7.062189999999999, 6.907760000000001, 6.77992, 7.195189999999999, 7.185389999999999, 6.07993, 6.01616, 6.72743, 6.33683, 6.70073, 7.20786, 7.0103100000000005, 6.551080000000001, 7.1309, 6.7334, 7.495539999999999, 6.24028, 6.354369999999999, 6.90575, 6.551080000000001, 7.00307, 6.85013, 7.0255399999999995, 6.39693, 7.495539999999999, 6.768489999999999, 6.23441, 6.461469999999999, 6.5395900000000005, 6.907760000000001, 6.05209, 6.28413, 6.126869999999999, 7.12287, 6.745239999999999, 7.21744, 6.39693, 6.49072, 6.47697, 6.05209, 7.24423, 6.802389999999999, 7.09008, 6.44572, 7.00307, 6.966019999999999, 6.721430000000001, 6.62936, 6.813439999999999, 6.28227, 7.64969, 6.9575, 7.3696, 6.461469999999999, 6.90575, 7.20786, 6.78333, 6.57647, 6.5903, 7.00307, 6.74993, 6.57925, 6.907760000000001, 7.18917, 6.16331, 6.59578, 6.802389999999999, 6.272880000000001, 7.014810000000001, 6.2146099999999995, 6.43615, 6.64509, 6.608, 6.68461, 6.58617, 6.62007, 6.19032, 7.00307, 6.95655, 6.12249, 6.62007, 7.313219999999999, 7.09008, 6.83303, 6.98101, 6.6871100000000006, 7.09008, 6.81014, 7.37776, 6.51767, 6.85435, 7.64969, 7.91936, 6.907760000000001, 6.9256, 6.6733, 7.5574699999999995, 6.13773, 6.67203, 6.30992, 6.47697, 6.8956800000000005, 6.56948, 6.33328, 6.802389999999999, 6.9707300000000005, 8.00637, 6.65286, 6.57368, 5.70711, 6.57786, 6.92363, 6.57368, 7.37776, 6.2146099999999995, 7.408530000000001, 7.1155800000000005, 7.91936, 7.09008, 7.37776, 7.1309, 6.58617, 6.14633, 6.6592899999999995, 6.90575, 7.092569999999999, 6.86485, 7.57558, 7.200419999999999, 6.95655, 6.2146099999999995, 6.05209, 6.44254, 6.35957, 5.72031, 6.4599, 6.60394, 6.51471, 6.975410000000001, 6.39693, 7.400010000000001, 8.537, 6.07993, 7.36645, 6.67708, 6.99942, 6.61338, 7.64969, 6.68461, 6.57925, 7.09008, 7.1082399999999994, 6.83518, 7.09008, 6.58617, 6.90575, 6.43615, 6.84162, 7.313219999999999, 6.55962, 6.07993, 6.3952599999999995, 6.633319999999999, 6.42162, 7.09008, 6.13123, 7.313219999999999, 6.30992, 6.79122, 6.720219999999999, 6.66823, 7.2861899999999995, 6.802389999999999, 6.703189999999999, 5.98896, 7.620710000000001, 6.0822199999999995, 6.77878, 7.09008, 7.6009, 6.28972, 6.48768, 6.68461, 6.41182, 7.37776, 7.525639999999999, 6.74993, 6.72623, 7.09008, 7.25347, 7.585789999999999, 6.45362, 6.354369999999999, 6.984719999999999, 6.90575, 6.937310000000001, 6.907760000000001, 7.0775, 7.346010000000001, 7.027310000000001, 6.907760000000001, 6.9489, 6.907760000000001, 7.495539999999999, 6.01127, 6.802389999999999, 6.745239999999999, 6.58617, 6.90575, 6.633319999999999, 6.80572, 6.2480400000000005, 6.2634, 6.31355, 7.35819, 6.49677, 6.68461, 6.633319999999999, 7.30317, 6.95655, 6.907760000000001, 5.742999999999999, 6.39693, 7.313219999999999, 6.90575, 7.09008, 6.47697, 7.196689999999999, 6.47697, 6.30262, 6.745239999999999, 7.07412, 6.354369999999999, 6.10925, 6.68461, 7.42357, 6.768489999999999, 6.95655, 6.715380000000001, 6.9828600000000005, 7.02465, 6.49224, 6.49979, 6.27099, 5.8861, 7.393260000000001, 6.829789999999999, 6.32794, 6.28786, 5.9839400000000005, 6.68461, 5.84354, 6.62007, 7.12287, 6.2146099999999995, 6.84162, 7.00307, 6.2146099999999995, 6.983789999999999, 6.35611, 6.17379, 6.95655, 6.39693, 6.88755, 7.04316, 6.90575, 6.84162, 6.45362, 6.83518, 6.85646, 6.46925, 5.99146, 6.62007, 7.00307, 5.99146, 6.22654, 6.633319999999999, 6.77308, 7.1107, 6.95655, 6.967910000000001, 6.995769999999999, 6.66568, 6.594410000000001, 6.90575, 6.5439099999999994, 6.62007, 6.60665, 7.04752, 7.062189999999999, 7.313219999999999, 7.04752, 7.0884100000000005, 6.937310000000001, 6.90575, 6.23441, 6.25767, 6.2146099999999995, 6.551080000000001, 6.90575, 7.09008, 6.68461, 6.2146099999999995, 6.386880000000001, 6.44413, 6.58617, 6.10925, 6.90073, 6.745239999999999, 7.2233, 6.8773, 6.813439999999999, 7.037030000000001, 6.40523, 6.2146099999999995, 6.17379, 7.6009, 6.30992, 6.685860000000001, 6.38856, 6.47697, 7.46737, 6.551080000000001, 6.9226399999999995, 6.87213, 6.73102, 6.30992, 7.45298, 5.72359, 7.1309, 6.882439999999999, 5.940169999999999, 6.90675, 6.551080000000001, 6.9147300000000005, 6.85646, 6.563860000000001, 6.381819999999999, 5.78996, 6.769639999999999, 6.73102, 7.06133, 6.68461, 6.2146099999999995, 6.912739999999999, 6.4708, 6.2634, 7.08171, 6.90575, 7.6009, 6.52062, 6.907760000000001, 6.60935, 6.51471, 6.9828600000000005, 6.85646, 6.30992, 7.338889999999999, 6.22654, 6.84055, 6.311730000000001, 7.01392, 6.49224, 6.2205900000000005, 7.44659, 7.388330000000001, 6.85118, 7.24423, 6.632000000000001, 6.90575, 7.10906, 6.944089999999999, 6.83518, 6.222580000000001, 6.84588, 7.17012, 6.52503, 6.2860000000000005, 6.80128, 6.07993 ], "xaxis": "x2", "y0": "male", "yaxis": "y2" }, { "fillcolor": "hsla(164, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(164, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.4, "legendgroup": "yes", "line": { "color": "hsla(164, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(164, 70%, 70%,1)", "line": { "color": "hsla(164, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.3, "size": 9, "symbol": "circle" }, "meanline": { "color": "hsla(164, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage yes", "orientation": "h", "pointpos": 0, "points": false, "scalegroup": "yes", "scalemode": "count", "showlegend": true, "side": "both", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.99942, 5.99146, 7.67322, 7.09008, 5.61677, 6.646389999999999, 7.02643, 6.4552, 7.32975, 6.95845, 7.06902, 6.04025, 6.907760000000001, 7.91936, 6.745239999999999, 6.30079, 7.068169999999999, 6.07535, 6.7417, 7.71869, 6.882439999999999, 6.47697, 6.77878, 6.907760000000001, 6.93342, 7.06902, 6.57368, 6.829789999999999, 7.557989999999999, 6.892639999999999, 7.0255399999999995, 6.57925, 6.47697, 7.1309, 6.551080000000001, 6.882439999999999, 6.907760000000001, 6.682110000000001, 6.39693, 6.48004, 6.60665, 7.00307, 5.78383, 6.94505, 6.9546399999999995, 7.17012, 7.11477, 6.593039999999999, 6.49979, 6.5439099999999994, 6.39192, 6.51471, 6.30992, 6.30992, 7.116389999999999, 6.46925, 7.554860000000001, 6.90675, 6.85646, 5.94803, 6.90575, 6.90575, 7.408530000000001, 7.0076, 6.88857, 7.35947, 6.39693, 7.041410000000001, 6.66696, 6.30992, 7.313219999999999, 6.787839999999999, 6.90575, 6.802389999999999, 7.00307, 7.074960000000001, 7.5606, 6.16331, 5.94803, 6.43775, 7.282760000000001, 6.39693, 6.813439999999999, 6.694560000000001, 6.29157, 6.23048, 6.16331, 6.88755, 6.95655, 7.56008, 6.28227, 6.30992, 6.05912, 6.602589999999999, 7.47307, 6.2146099999999995, 6.95655, 6.90575, 6.461469999999999, 7.09008, 7.46737, 6.829789999999999, 6.60665, 6.74052, 6.745239999999999, 7.6009, 6.62007, 6.551080000000001, 6.663130000000001, 7.60589, 6.53669, 6.5582, 6.16121, 6.19236, 6.2146099999999995, 7.37776, 6.58617, 6.23832, 6.27476, 6.48311, 6.69084, 6.54965, 6.882439999999999, 6.663130000000001, 5.70378, 6.7226300000000005, 7.20786, 6.802389999999999, 6.79122, 6.62007, 6.42162, 6.12249, 6.90575, 6.28227, 6.206580000000001, 5.99146, 6.682110000000001, 6.49677, 7.408530000000001, 6.10925, 6.317159999999999, 6.2146099999999995, 6.551080000000001, 6.25575, 7.0884100000000005, 6.16331, 6.68461, 5.8999, 7.01392, 7.1107, 6.9363399999999995, 6.90575, 6.1070199999999994, 6.85646, 6.44572, 6.551080000000001, 6.84588, 8.10168, 7.31255, 5.99645, 6.90575, 6.802389999999999, 6.2146099999999995, 6.66696, 6.907760000000001, 6.90575, 6.6592899999999995, 8.047189999999999, 6.62407, 7.0076, 6.30992, 6.17379, 6.55393, 6.3952599999999995, 6.24611, 7.78322, 6.60665, 7.12448, 6.507280000000001, 6.461469999999999, 6.8977, 7.82405, 7.75148, 6.62407, 6.2146099999999995, 7.1309, 6.51471, 5.96615, 6.84055, 7.041410000000001, 6.51471, 6.551080000000001, 7.346010000000001, 6.966019999999999, 6.90575, 7.17012, 6.5820300000000005, 7.04752, 6.354369999999999, 6.59578, 7.82405, 6.5467900000000006, 6.551080000000001, 6.39693, 6.88755, 6.39693, 6.39693, 6.65286, 6.36647, 6.622739999999999, 6.90575, 5.7525699999999995, 6.15273, 7.04752, 5.52146, 6.770789999999999, 6.907760000000001, 7.00125, 7.064760000000001, 7.00307, 6.05209, 6.745239999999999, 7.045780000000001, 6.54535, 6.37673, 6.62007, 6.907760000000001, 6.10925, 6.39693, 8.16052, 6.745239999999999, 7.03527, 6.765039999999999, 7.1309, 6.77422, 6.87213, 6.551080000000001, 6.907760000000001, 6.6567300000000005, 6.80017, 7.226210000000001, 6.10925, 6.90575, 6.70073, 7.495539999999999, 8.05516, 6.9256, 7.06987, 6.694560000000001, 6.90575, 6.43775, 6.97261, 7.29709, 7.179310000000001, 7.313219999999999, 6.7226300000000005, 6.82437, 6.715380000000001, 7.173189999999999, 6.62007, 6.7226300000000005, 6.85118, 6.49224, 7.313219999999999, 6.62007, 7.158510000000001, 6.68461, 6.57647, 5.89715, 6.34564, 6.556780000000001, 6.7093, 6.93925, 7.00307, 6.551080000000001, 6.90575, 6.53669, 6.69084, 7.313219999999999, 6.05209, 6.90575, 6.62007, 6.4552, 6.77422, 6.87005, 6.65544, 6.42162, 5.9269300000000005, 6.317159999999999, 6.42972, 6.62007, 6.96508, 6.19236, 6.61607, 5.5606800000000005, 6.57368, 6.2634, 6.715380000000001, 7.408530000000001, 6.17379, 7.333019999999999, 6.37502, 6.317159999999999, 7.04752, 6.68461, 6.98008, 6.912739999999999, 6.86693, 7.3670800000000005, 6.68461, 7.09008, 6.90575, 6.90575, 6.62007, 6.45362, 6.47697, 6.9431199999999995, 6.90575, 6.10925, 6.67203, 6.7334, 7.34278, 6.90575, 6.658010000000001, 6.9256, 6.90575, 6.91075, 6.6592899999999995, 6.6592899999999995, 6.16331, 7.441319999999999, 6.47851, 7.07834, 6.745239999999999, 7.20786, 6.36475, 6.63857, 7.475910000000001, 6.62007, 6.4892, 7.00307, 6.56948, 7.43838, 7.15383, 7.064760000000001, 6.88755, 7.26193, 6.23245, 6.30445, 6.715380000000001, 7.313219999999999, 7.37776, 5.8579300000000005, 6.85646, 6.2441699999999996, 6.90575, 6.907760000000001, 6.272880000000001, 6.66568, 7.481560000000001, 7.04752, 6.61338, 6.40688, 5.8579300000000005, 7.57558, 6.83518, 6.38856, 6.768489999999999, 6.90575, 6.39693, 6.34739, 7.1507, 6.58617, 7.282760000000001, 7.00307, 6.66058, 6.58064, 6.90575, 6.10925, 6.64249, 6.715380000000001, 6.62007, 7.1309, 5.99146, 6.95655, 6.65286, 6.16331, 6.24611, 7.1309, 7.1333, 7.24423, 6.04025, 6.86901, 6.802389999999999, 6.70073, 6.1203, 6.90575, 7.313219999999999, 6.54822, 6.95655, 7.50108, 6.39693, 7.07918, 5.8579300000000005, 5.70378, 6.7369699999999995, 7.745, 6.87213, 6.39693, 6.30628, 6.8773, 6.708080000000001, 6.818919999999999, 7.041410000000001, 6.882439999999999, 6.94986, 6.703189999999999, 6.37502, 7.03615, 7.37776, 5.66988, 6.907760000000001, 6.882439999999999, 6.752269999999999, 6.48158, 6.47697, 6.802389999999999, 6.984719999999999, 5.9269300000000005, 6.49224, 6.385190000000001, 7.1309, 7.663880000000001, 7.07242, 6.907760000000001, 6.43775, 8.05516, 6.807930000000001, 6.907760000000001, 6.403569999999999, 6.035480000000001, 7.24423, 6.05209, 7.00307, 5.99146, 6.33683, 6.07993, 7.488289999999999, 6.51175, 5.7365699999999995, 6.90575, 6.697030000000001, 6.354369999999999, 6.802389999999999, 6.62007, 6.68461, 6.68835, 5.8260000000000005, 6.85646, 6.44572, 6.95655, 7.20786, 6.3716099999999996, 6.8977, 6.47697, 6.802389999999999, 6.84055, 7.676010000000001, 6.85646, 6.43775, 7.20786, 6.89163, 7.0121199999999995, 6.85646, 6.77422, 6.54965, 6.05209, 6.697030000000001, 6.90575, 6.68461, 6.62007, 7.24423, 6.36819, 6.8844899999999996, 6.62007, 6.745239999999999, 6.19236, 6.39693, 6.85646, 6.7334, 5.98896, 6.48004, 6.55393, 6.5903, 7.02643, 7.15305, 6.19236, 6.43615, 6.6871100000000006, 6.42162, 6.06379, 6.93537, 7.09008, 6.802389999999999, 6.47697, 6.2634, 7.79028, 6.10032, 6.0282800000000005, 7.408530000000001, 6.6174, 6.907760000000001, 6.90575, 5.99146, 6.2441699999999996, 6.00141, 6.79122, 6.9196800000000005, 6.9147300000000005, 6.90575, 6.646389999999999, 6.746410000000001, 6.30992, 6.42972, 6.18826, 6.5467900000000006, 7.522939999999999, 6.7334, 6.07993, 6.907760000000001, 6.90575, 7.04752, 6.66185, 6.47697, 7.23418, 6.54247, 6.753439999999999, 6.51471, 7.034389999999999, 6.65286, 7.262630000000001, 7.20786, 6.90575, 6.30992, 6.984719999999999, 6.30445, 6.05209, 6.34564, 6.95655, 6.49224, 6.62007, 5.82895, 6.39693, 6.06146, 6.43775, 6.03787, 6.3952599999999995, 6.22654, 7.144410000000001, 6.90575, 6.91374, 5.70378, 6.5903, 7.1592899999999995, 6.57786, 6.6783399999999995, 6.72383, 6.41182, 6.53233, 6.907760000000001, 6.7334, 7.236339999999999, 6.20456, 6.10925, 6.715380000000001, 6.72743, 7.084230000000001, 6.97635, 7.20786, 7.00307, 6.35089, 6.59167, 6.461469999999999, 6.984719999999999, 6.53233, 6.646389999999999, 6.39693, 7.459910000000001, 6.19848, 7.0255399999999995, 6.745239999999999, 6.22654, 6.10925, 7.08171, 6.64249, 7.49332, 7.495539999999999, 7.1546199999999995, 7.1309, 6.745239999999999, 6.18415, 5.82895, 6.10925, 6.58617, 6.48158, 6.20456, 7.313219999999999, 6.94022, 6.90575, 6.41836, 6.10925, 7.48717, 7.0193, 6.983789999999999, 6.633319999999999, 6.29157, 7.49109, 6.91672, 6.90575, 6.715380000000001, 6.47697, 7.37212, 6.646389999999999, 7.0184, 6.84055, 7.24423, 7.09008, 6.52942, 7.4553, 7.00307, 6.37502, 7.24423, 6.48158, 6.68461, 6.10925, 6.90575, 6.90575, 7.75577, 6.82437, 6.18415, 6.43775, 6.90575, 7.1107, 6.44572, 6.42162, 6.769639999999999, 6.93245, 6.818919999999999, 6.551080000000001, 6.58617, 6.96508, 6.44572, 6.7093, 6.28972, 7.1082399999999994, 7.135689999999999, 6.49072, 7.251339999999999, 8.51719, 6.807930000000001, 7.14756, 7.33368, 6.77422, 6.60394, 6.68461, 7.1309, 5.99146, 7.201169999999999, 6.10925, 6.68461, 6.39693, 6.927560000000001, 6.85751, 6.95655, 6.08677, 7.24423, 7.1309, 6.17587, 6.30992, 6.36303, 6.77422, 6.2860000000000005, 6.828710000000001, 6.47697, 6.72743, 6.55251, 6.62407, 5.9814099999999994, 6.76273, 7.06902, 5.9269300000000005, 6.80128, 7.313219999999999, 6.966019999999999, 6.6592899999999995, 6.39693, 6.57786, 6.65286, 6.293419999999999, 5.87493, 6.79122, 6.987489999999999, 6.30992, 6.55536, 7.09008, 6.2146099999999995, 7.04752, 6.90575, 6.10925, 6.6783399999999995, 6.39693, 7.259119999999999, 7.43838, 6.47697, 7.1309, 6.77422, 6.2634, 6.739339999999999, 6.47697, 6.90575, 7.279319999999999, 6.815639999999999, 6.65028, 6.27099, 7.17012, 6.354369999999999, 6.29157, 6.802389999999999, 6.602589999999999, 6.47697, 6.58755, 6.77422, 6.907760000000001, 7.09589, 6.882439999999999, 5.45959, 6.05209, 7.67322, 5.8579300000000005, 6.2146099999999995, 7.2957399999999994, 5.84354, 6.802389999999999, 6.58064, 6.2634, 7.00307, 6.90575, 7.21891, 7.503839999999999, 6.45677, 6.950810000000001, 5.97126, 6.23048, 6.15273, 7.57558, 6.96035, 6.3716099999999996, 6.2146099999999995, 6.7334, 6.86066, 6.378430000000001, 6.48004, 7.00307, 6.8200199999999995, 6.47697, 6.90575, 7.39388, 7.4787300000000005, 6.2146099999999995, 6.802389999999999, 6.43775, 7.24065, 6.13773, 6.3952599999999995, 7.1025, 7.04752, 7.09008, 6.77992, 6.9256, 6.035480000000001, 7.22766, 7.475339999999999, 5.72031, 6.272880000000001, 6.01616, 6.27099, 7.91936, 6.85646, 6.354369999999999, 6.2634, 6.51471, 6.92166, 6.253830000000001, 6.745239999999999, 6.30992, 7.3651800000000005, 6.24998, 6.893660000000001, 6.53669, 6.43615, 7.04752, 6.30992, 6.39693, 6.1334, 6.765039999999999, 6.85646, 6.892639999999999, 6.95655, 5.99146, 6.43775, 6.90575, 6.81124, 6.966019999999999, 6.8865300000000005, 6.62007, 7.334980000000001, 6.72743, 6.93245, 7.27031, 7.03878, 7.0255399999999995, 6.10925, 6.83518, 6.77992, 6.68461, 7.696210000000001, 6.53669, 6.52942, 6.126869999999999, 6.54965, 6.715380000000001, 7.31122, 5.8693, 6.90575, 6.0282800000000005, 6.30992, 6.23245, 6.31536, 7.486610000000001, 6.52942, 6.14204, 6.88755, 6.62007, 6.34564, 6.44413, 5.99146, 6.93245, 7.37776, 6.907760000000001, 7.18917, 6.7093, 6.75926, 6.3315, 6.5439099999999994, 6.1717, 7.9459100000000005, 6.77422, 7.424760000000001, 5.70378, 6.43775, 6.90575, 7.6009, 6.90575, 7.46737, 6.694560000000001, 8.16052, 6.984719999999999, 6.802389999999999, 5.99146, 6.802389999999999, 7.32647, 7.1309, 5.96101, 6.62007, 6.84055, 6.58617, 7.1309, 7.00307, 7.78322, 6.62007, 5.7525699999999995, 6.62407, 6.795710000000001, 7.212289999999999, 6.05209, 6.38856, 6.93925, 6.47697, 6.8773, 6.354369999999999, 7.9724699999999995, 6.703189999999999, 6.47697, 6.50429, 6.58617, 6.51471, 6.06611, 6.68461, 6.65544, 7.331060000000001, 6.64118, 6.47697, 7.475910000000001, 6.72743, 7.20786, 6.81124, 7.0201899999999995, 7.279319999999999, 6.80461, 5.99645, 7.10906, 6.40523, 6.77422, 7.01571, 6.54822, 6.14204, 6.47697, 7.24423, 5.93225, 7.46737, 6.69084, 6.47697, 6.85646, 6.88755, 7.24423, 6.95655, 6.67077, 7.313219999999999, 6.98008, 6.75577, 6.566669999999999, 7.09008, 6.697030000000001, 6.79794, 6.2634, 6.61874, 6.64118, 7.1309, 6.98101, 6.90575, 5.90263, 6.17794, 6.77422, 6.96035, 6.6515699999999995, 6.35957, 6.829789999999999, 6.66568, 7.09008, 6.10925, 6.85646, 6.90575, 6.95655, 6.126869999999999, 7.1309, 6.4552, 6.58617, 7.23778, 6.66568, 6.21261, 6.57925, 6.802389999999999, 6.88755, 7.08171, 6.6567300000000005, 7.696210000000001, 6.68461, 6.43775, 6.802389999999999, 6.6592899999999995, 6.48311, 6.408530000000001, 6.84055, 7.17778, 6.2634, 6.4892, 6.95177, 6.785589999999999, 7.033510000000001, 6.57647, 6.23637, 6.530880000000001, 6.43775, 6.90575, 6.30992, 6.85646, 6.79122, 6.30992, 6.62007, 5.76832, 6.81014, 6.551080000000001, 6.56526, 6.551080000000001, 7.09008, 6.9613, 6.7901, 6.95655, 6.65286, 5.9814099999999994, 6.28227, 7.46737, 7.18007, 7.46737, 6.90575, 6.52209, 7.37776, 6.90575, 5.99146, 7.46737, 5.99146, 6.18826, 6.59987, 6.68461, 7.6009, 7.14913, 7.27031, 6.317159999999999, 6.72503, 5.99146, 6.62007, 6.6871100000000006, 7.17012, 6.802389999999999, 5.93754, 6.995769999999999, 6.802389999999999, 6.52356, 6.55251, 6.56526, 6.72383, 7.09008, 6.68461, 6.52209, 7.313219999999999, 6.94698, 6.561030000000001, 6.907760000000001, 7.71869, 5.96615, 6.41673, 6.29157, 7.00307, 6.802389999999999, 6.90375, 6.1944099999999995, 7.09008, 6.90575, 6.47697, 7.26193, 6.60665, 6.424869999999999, 7.37776, 6.13773, 6.907760000000001, 6.858569999999999, 6.745239999999999, 7.495539999999999, 7.1546199999999995, 6.2804, 6.6592899999999995, 6.77422, 6.893660000000001, 6.86693, 7.408530000000001, 6.72743, 6.42972, 6.633319999999999, 7.0579, 6.68461, 7.185389999999999, 7.26543, 7.05099, 6.10925, 6.60123, 7.233460000000001, 6.90575, 6.77194, 6.6567300000000005, 6.3243599999999995, 6.55393, 6.9613, 6.90575, 6.907760000000001, 6.90975, 7.64969, 7.1309, 6.745239999999999, 5.99146, 6.354369999999999, 5.4161, 6.55536, 6.02102, 6.7334, 6.47697, 6.47697, 6.53669, 6.95655, 6.551080000000001, 7.6009, 6.90575, 7.17242, 6.3421199999999995, 6.9196800000000005, 6.51471, 6.85646, 6.551080000000001, 6.35611, 6.90575, 6.34914, 7.696210000000001, 7.17012, 6.802389999999999, 6.253830000000001, 6.90575, 6.48464, 6.49224, 6.82763, 6.90575, 7.014810000000001, 6.2634, 7.04752, 6.90575, 7.20786, 7.02997, 7.803839999999999, 6.31355, 6.89467, 6.829789999999999, 7.17012, 7.54961, 7.28207, 6.69084, 7.1929300000000005, 6.33328, 5.84354, 6.85646, 6.912739999999999, 6.80017, 6.97635, 6.2653, 7.1309, 7.17012, 7.0884100000000005, 7.16627, 6.19644, 6.39693, 5.9814099999999994, 6.90575, 6.90575, 6.6958, 5.01728, 7.279319999999999, 7.136480000000001, 6.608, 6.68461, 7.9831, 6.9828600000000005, 6.30992, 6.2146099999999995, 7.09506, 6.44572, 6.90575, 6.90575, 7.08339, 5.96615, 6.9622399999999995, 7.11233, 6.912739999999999, 6.68461, 6.8254600000000005, 7.346010000000001, 6.68085, 7.24423, 6.62007, 6.1070199999999994, 6.33328, 6.15698, 6.30262, 6.253830000000001, 7.30317, 6.829789999999999, 6.56808, 6.36303, 7.20786, 6.752269999999999, 6.95655, 6.02102, 6.633319999999999, 6.2634, 7.183110000000001, 6.907760000000001, 6.6174, 7.43838, 6.45047, 6.9707300000000005, 6.3952599999999995, 7.09008, 6.49979, 6.94986, 7.06902, 6.68461, 7.22766, 6.68461, 7.1309, 6.975410000000001, 6.2672, 6.50279, 6.551080000000001, 6.59987, 6.7334, 6.2146099999999995, 6.44572, 7.408530000000001, 7.09008, 6.614730000000001, 6.17379, 7.03615, 6.05209, 6.83518, 7.09008, 6.63857, 6.17794, 6.551080000000001, 6.30992, 7.07834, 6.39693, 6.57228, 6.938280000000001, 6.715380000000001, 6.7511, 6.715380000000001, 6.58617, 5.59842, 6.3935900000000006, 7.26193, 6.49072, 6.829789999999999, 6.745239999999999, 6.721430000000001, 6.59715, 6.00389, 6.9828600000000005, 6.62007, 6.85646, 7.04752, 6.23441, 6.551080000000001, 6.14633, 6.563860000000001, 6.73102, 6.2634, 6.3243599999999995, 6.721430000000001, 6.6796, 7.062189999999999, 6.10925, 7.313219999999999, 6.34564, 6.561030000000001, 6.17379, 7.06987, 6.87626, 6.505780000000001, 6.745239999999999, 6.966019999999999, 6.4488900000000005, 7.1309, 6.68461, 6.575080000000001, 6.40192, 6.70073, 6.56808, 6.7334, 6.30992, 7.0775, 6.6796, 6.8384100000000005, 7.03615, 6.85751, 6.745239999999999, 7.313219999999999, 6.86693, 7.08171, 6.85646, 6.47697, 6.47697, 6.28972, 7.46737, 7.2724, 6.61874, 6.30079, 7.0255399999999995, 6.27099, 6.90575, 6.34564, 6.9828600000000005, 7.450080000000001, 6.224559999999999, 6.551080000000001, 6.23441, 7.1309, 6.52209, 7.49332, 6.39192, 6.739339999999999, 7.4832399999999994, 6.16331, 6.68461, 6.90575, 6.90575, 7.1309, 6.86171, 6.715380000000001, 6.551080000000001, 6.33683, 6.9187, 7.0579, 6.35611, 7.02376, 5.5797300000000005, 6.90575, 6.82655, 6.90575, 5.9269300000000005, 7.42833, 5.87212, 6.463030000000001, 7.52833, 6.86797, 6.60665, 6.90575, 6.4677, 7.3651800000000005, 6.748760000000001, 6.77992, 6.975410000000001, 7.43838, 7.82405, 6.5439099999999994, 6.42162, 6.8844899999999996, 7.16085, 6.52209, 6.04025, 5.52146, 6.90575, 7.00307, 6.907760000000001, 6.817830000000001, 7.279319999999999, 6.907760000000001, 7.54961, 7.323169999999999, 6.90575, 6.41017, 6.90575, 6.787839999999999, 6.62007, 7.0967199999999995, 5.9269300000000005, 6.55393, 6.17379, 7.00307, 7.31122, 7.31122, 6.31355, 6.44572, 6.59578, 6.47697, 6.69332, 6.7511, 6.77422, 7.09008, 5.8579300000000005, 7.183110000000001, 7.728860000000001, 6.54965, 7.04752, 7.25488, 6.9256, 6.907760000000001, 5.65249, 7.041410000000001, 6.4599, 6.96035, 7.1333, 6.99942, 6.38012, 7.200419999999999, 7.18007, 7.1309, 6.461469999999999, 6.85646, 7.17012, 7.03527, 6.19848, 6.62007, 7.313219999999999, 6.907760000000001, 6.90575, 7.1452, 5.82895, 6.33683, 6.04025, 6.2146099999999995, 7.8935699999999995, 6.34564, 6.64249, 6.8977, 6.3699, 6.6567300000000005, 6.813439999999999, 6.53669, 6.90575, 6.47697, 6.05209, 7.21524, 6.551080000000001, 6.66568, 6.57925, 6.2146099999999995, 6.8426800000000005, 6.907760000000001, 6.90575, 7.106610000000001, 6.424869999999999, 6.65415, 6.86693, 6.745239999999999, 6.88346, 6.53669, 6.3207699999999996, 7.696210000000001, 7.64779, 7.313219999999999, 6.95655, 6.715380000000001, 6.44254, 6.61338, 6.23245, 6.95655, 6.768489999999999, 7.3981699999999995, 6.68461, 7.12287, 6.813439999999999, 6.752269999999999, 6.551080000000001, 6.7334, 6.318969999999999, 6.79122, 5.95324, 6.745239999999999, 7.1309, 6.54103, 7.06048, 6.24222, 6.68461, 6.05209, 6.78672, 7.09008, 7.1309, 6.47697, 7.1025, 5.9814099999999994, 7.24423, 6.44254, 7.451239999999999, 7.198180000000001, 7.27101, 7.245660000000001, 7.279319999999999, 6.85646, 7.279319999999999, 7.67322, 6.76273, 6.82437, 6.47697, 6.885510000000001, 7.07918, 7.279319999999999, 7.1309, 6.966019999999999, 6.73102, 6.633319999999999, 7.00307, 7.6009, 6.907760000000001, 6.32615, 6.508769999999999, 6.551080000000001, 7.0884100000000005, 6.829789999999999, 7.31986, 6.21661, 7.11802, 6.77422, 7.26193, 6.90575, 7.00307, 5.99146, 7.46737, 6.57786, 6.3081, 6.90575, 6.311730000000001, 6.39693, 6.95655, 6.62007, 6.3952599999999995, 6.48311, 6.39693, 6.90575, 6.60665, 6.90575, 6.318969999999999, 6.802389999999999, 6.70441, 6.51471, 6.77992, 6.68461, 6.29157, 6.40523, 6.18826, 7.24423, 6.83518, 7.09008, 7.84502, 7.1624, 6.813439999999999, 6.907760000000001, 6.68461, 6.14633, 7.17012, 6.53814, 6.882439999999999, 6.36647, 6.47697, 7.54697, 6.60665, 6.68461, 7.408530000000001, 7.2724, 6.46614, 6.90575, 5.7462, 6.36303, 7.04752, 6.551080000000001, 6.58064, 6.17379, 6.83195, 7.20786, 6.62007, 6.95655, 6.90575, 6.34564, 7.09008, 7.014810000000001, 6.73815, 6.65028, 7.03878, 6.10032, 7.266830000000001, 6.95655, 7.20786, 6.602589999999999, 6.551080000000001, 6.87626, 5.16479, 7.54961, 6.551080000000001, 6.49224, 6.58893, 6.60665, 6.907760000000001, 7.64969, 6.9177100000000005, 6.18415, 6.68461, 7.43838, 6.66441, 6.551080000000001, 6.41182, 6.43775, 6.43775, 6.4599, 7.00307, 5.99146, 6.852239999999999, 6.5439099999999994, 6.6515699999999995, 7.522939999999999, 6.16331, 6.551080000000001, 6.907760000000001, 7.04752, 6.44572, 6.3243599999999995, 6.41346, 6.551080000000001, 6.802389999999999, 6.62007, 6.5439099999999994, 6.57925, 6.38012, 6.4151, 6.52209, 6.29157, 6.2146099999999995, 6.97167, 6.75926, 6.66823, 7.37776, 7.1309, 6.90575, 6.10925, 7.408530000000001, 6.39693, 6.04025, 7.0396600000000005, 7.09589, 7.10003, 6.73102, 6.87523, 6.90575, 7.20786, 7.173960000000001, 6.90575, 6.47389, 6.99026, 7.0884100000000005, 6.206580000000001, 6.56526, 6.44572, 6.551080000000001, 6.53379, 6.90575, 6.46614, 6.61338, 6.90575, 6.85646, 6.47389, 6.10925, 6.99118, 6.2441699999999996, 7.1592899999999995, 6.90575, 6.59987, 7.01571, 6.42162, 6.716589999999999, 6.85646, 7.46737, 6.58617, 6.95655, 6.29157, 6.907760000000001, 6.46459, 6.62007, 6.95177, 6.58617, 6.50129, 6.2952699999999995, 6.85646, 6.15698, 6.90575, 7.6009, 7.00307, 6.17379, 6.15273, 6.62007, 7.346010000000001, 6.90575, 6.68461, 6.50429, 7.0942300000000005, 5.78383, 6.54535, 6.3716099999999996, 7.86327, 6.62007, 7.09008, 6.703189999999999, 6.53233, 6.58617, 7.46737, 6.39693, 6.38012, 6.802389999999999, 6.43935, 7.044910000000001, 6.42162, 6.90575, 6.802389999999999, 6.44413, 7.127689999999999, 6.45677, 6.40192, 6.55393, 7.06902, 6.59987, 6.715380000000001, 6.715380000000001, 6.39693, 6.57786, 6.68461, 7.00307, 6.42972, 6.85435, 6.937310000000001, 6.2106, 6.708080000000001, 6.0845, 6.907760000000001, 6.16331, 6.2441699999999996, 6.74406, 6.85646, 6.73221, 5.72031, 7.54961, 6.37673, 6.90575, 6.62007, 6.768489999999999, 6.63595, 5.82895, 6.90575, 6.75577, 6.77194, 6.77422, 5.8999, 6.2146099999999995, 6.2146099999999995, 6.62007, 6.9489, 7.354360000000001, 7.279319999999999, 5.8861, 6.6592899999999995, 7.06305, 6.61338, 7.00307, 6.49224, 6.84588, 6.35611, 6.35611, 6.8977, 7.20786, 6.90575, 7.1309, 7.393260000000001, 6.95655, 6.834110000000001, 6.07993, 7.10988, 6.802389999999999, 6.224559999999999, 6.57925, 6.927560000000001, 6.90575, 7.09008, 7.1309, 6.90575, 6.907760000000001, 6.16542, 6.62007, 7.6009, 6.95655, 6.90575, 6.90575, 6.796819999999999, 6.66568, 6.907760000000001, 6.8533, 6.813439999999999, 7.196689999999999, 6.43615, 6.9147300000000005, 6.77194, 6.90575, 6.90575, 6.47697, 7.0255399999999995, 7.522939999999999, 6.62007, 6.354369999999999, 7.1546199999999995, 6.90575, 6.551080000000001, 6.753439999999999, 6.77422, 7.313219999999999, 6.967910000000001, 6.816739999999999, 7.6009, 6.745239999999999, 7.37588, 6.86485, 6.41346, 6.7093, 6.551080000000001, 6.22654, 7.24423, 6.06146, 6.16331, 7.05359, 6.49224, 6.86171, 6.58617, 7.1309, 6.77422, 7.93737, 6.39693, 6.58617, 7.67322, 6.551080000000001, 6.2146099999999995, 6.77422, 6.99485, 6.45047, 6.66185, 6.94119, 7.21891, 7.57558, 7.495539999999999, 6.10925, 6.59715, 6.03787, 6.556780000000001, 6.354369999999999, 7.6009, 6.83303, 6.551080000000001, 7.279319999999999, 6.354369999999999, 7.925160000000001, 6.77422, 7.183110000000001, 6.1136800000000004, 6.77992, 6.62007, 7.00307, 7.86327, 6.70073, 7.1309, 6.32794, 6.16121, 5.6801699999999995, 6.65286, 6.802389999999999, 6.715380000000001, 6.95655, 6.78333, 6.90575, 6.67582, 6.47697, 6.907760000000001, 6.90575, 6.53233, 6.882439999999999, 7.0255399999999995, 6.23048, 6.715380000000001, 7.872839999999999, 6.49072, 6.90575, 6.4892, 6.63726, 6.3613, 6.79122, 6.53233, 6.05209, 6.697030000000001, 6.8742, 6.08677, 6.6280399999999995, 6.907760000000001, 6.05209, 5.70378, 7.02997, 6.715380000000001, 6.2146099999999995, 6.90575, 7.313219999999999, 6.3699, 6.07074, 6.54822, 6.62007, 6.59987, 6.7226300000000005, 6.51026, 6.907760000000001, 6.50429, 6.47697, 6.58617, 6.77422, 6.8977, 5.9135, 6.17379, 8.047189999999999, 6.93537, 6.2146099999999995, 6.507280000000001, 7.46737, 5.82895, 7.034389999999999, 6.7569300000000005, 6.95655, 6.17794, 6.68461, 7.495539999999999, 6.62007, 6.88755, 6.45205, 6.802389999999999, 6.32794, 6.68461, 8.03916, 6.829789999999999, 6.6745600000000005, 6.714169999999999, 6.43775, 7.00307, 6.43455, 6.90575, 7.346660000000001, 7.6009, 7.10988, 7.24423, 6.7569300000000005, 6.48004, 6.889589999999999, 7.313219999999999, 6.9256, 6.59167, 6.57786, 6.53669, 6.39693, 6.33328, 6.33328, 7.313219999999999, 6.551080000000001, 7.408530000000001, 7.3908, 6.90575, 6.9256, 6.95655, 6.13123, 6.551080000000001, 7.06561, 6.57925, 6.90575, 6.73102, 7.09008, 6.566669999999999, 6.43775, 6.62007, 6.424869999999999, 6.646389999999999, 6.2146099999999995, 6.802389999999999, 6.90575, 6.9613, 6.78672, 6.65286, 7.24423, 7.09008, 6.602589999999999, 6.42162, 7.0422899999999995, 7.034389999999999, 6.59987, 6.44572, 6.20456, 6.57925, 6.38012, 6.16331, 6.818919999999999, 6.551080000000001, 6.53669, 6.95655, 5.76832, 7.2100800000000005, 6.48311, 6.507280000000001, 6.45362, 6.765039999999999, 6.2634, 6.2691, 7.18917, 6.2146099999999995, 6.802389999999999, 6.50129, 6.2634, 7.38647, 6.96885, 6.10925, 7.196689999999999, 6.3403599999999996, 6.818919999999999, 6.72623, 6.90575, 6.7569300000000005, 6.62936, 7.09008, 6.62007, 5.9839400000000005, 6.95655, 7.49332, 6.62007, 6.62007, 6.753439999999999, 6.77422, 6.2653, 7.495539999999999, 6.7334, 6.95655, 6.56526, 6.88755, 7.47307, 6.47697, 6.90575, 6.90575, 7.909860000000001, 6.69084, 6.3716099999999996, 6.52209, 7.106610000000001, 6.40523, 6.69084, 5.627619999999999, 6.6567300000000005, 6.68461, 6.697030000000001, 6.22654, 7.740660000000001, 6.907760000000001, 6.43775, 6.43775, 6.813439999999999, 5.76832, 6.9256, 7.64969, 6.47697, 6.43615, 6.10925, 7.1309, 5.89715, 6.907760000000001, 6.745239999999999, 6.43775, 6.85646, 6.77422, 6.768489999999999, 7.029089999999999, 6.62007, 7.06133, 7.24423, 6.95177, 7.54961, 6.354369999999999, 6.87626, 6.318969999999999, 6.570880000000001, 7.61332, 7.09008, 6.7511, 6.551080000000001, 7.034389999999999, 6.49072, 6.30992, 6.55393, 6.72743, 6.05209, 7.0967199999999995, 6.90575, 6.551080000000001, 6.907760000000001, 6.785589999999999, 6.39693, 6.05209, 6.90575, 6.697030000000001, 6.814539999999999, 6.639880000000001, 6.62007, 7.24423, 6.77194, 6.551080000000001, 6.802389999999999, 5.8999, 6.57228, 7.062189999999999, 6.47697, 6.2441699999999996, 6.829789999999999, 6.95655, 6.907760000000001, 6.38012, 7.293019999999999, 6.91175, 6.45834, 6.556780000000001, 6.5582, 6.91175, 6.45362, 7.1309, 6.8773, 6.955589999999999, 7.80588, 6.9613, 5.4161, 6.907760000000001, 6.90575, 7.18992, 6.90575, 6.385190000000001, 7.31122, 6.6107, 6.807930000000001, 6.79794, 6.1717, 6.16331, 6.6592899999999995, 7.0483899999999995, 6.598510000000001, 6.09131, 7.106610000000001, 6.90575, 7.66153, 7.22548, 6.48768, 6.87213, 7.17012, 6.23245, 6.39693, 7.35244, 7.183110000000001, 6.56948, 8.00637, 7.05272, 6.33328, 6.90575, 6.802389999999999, 6.30992, 6.551080000000001, 6.10925, 6.77422, 6.30992, 6.49979, 6.802389999999999, 7.05704, 7.16858, 6.802389999999999, 6.58617, 6.551080000000001, 7.20564, 7.1507, 6.852239999999999, 7.6009, 6.70564, 5.7525699999999995, 6.90575, 6.11147, 6.95655, 6.84375, 6.95655, 6.8977, 7.34923, 6.93245, 6.34564, 7.03878, 7.400010000000001, 5.8579300000000005, 7.37588, 6.83195, 7.00307, 6.84162, 6.354369999999999, 6.93342, 6.608, 6.85646, 6.61607, 6.056780000000001, 6.90575, 6.697030000000001, 6.5395900000000005, 6.6120399999999995, 6.63726, 7.1309, 6.739339999999999, 7.86327, 6.55393, 6.47697, 6.7511, 6.907760000000001, 6.05912, 6.54535, 6.551080000000001, 7.00307, 6.51471, 7.0422899999999995, 6.57925, 6.66823, 7.1309, 6.551080000000001, 6.44572, 7.00307, 6.253830000000001, 5.99146, 7.2724, 6.907760000000001, 6.90575, 6.3315, 6.3699, 6.39693, 7.82405, 6.95655, 6.09582, 6.07535, 6.90575, 6.8426800000000005, 7.0518600000000005, 6.993930000000001, 6.907760000000001, 6.79122, 6.7511, 6.2146099999999995, 6.78897, 6.67203, 7.259119999999999, 7.6811, 6.745239999999999, 7.27031, 6.721430000000001, 6.90575, 6.563860000000001, 6.99485, 7.37776, 7.06048, 6.30992, 6.84375, 7.0282, 6.66696, 6.90575, 6.47235, 6.56244, 8.0229, 6.90575, 6.6592899999999995, 6.80351, 6.92658, 6.4892, 6.28227, 7.06902, 6.08677, 7.1309, 5.68698, 6.33683, 6.984719999999999, 6.753439999999999, 6.354369999999999, 6.52209, 6.52209, 7.362010000000001, 6.8200199999999995, 6.73102, 6.39693, 6.8773, 6.507280000000001, 6.81014, 6.802389999999999, 6.49072, 7.46737, 6.745239999999999, 6.11147, 6.2634, 7.181589999999999, 6.551080000000001, 7.05618, 5.86079, 6.51619, 6.56948, 6.937310000000001, 6.9256, 6.90575, 6.10925, 6.39693, 7.09008, 6.82437, 6.753439999999999, 6.966019999999999, 6.802389999999999, 7.239210000000001, 6.5582, 6.907760000000001, 6.98008, 6.62407, 5.70378, 6.551080000000001, 6.41673, 7.313219999999999, 6.62007, 6.84588, 6.42162, 6.68461, 6.715380000000001, 6.85646, 6.57786, 5.8579300000000005, 6.2146099999999995, 7.313219999999999, 7.37776, 6.30992, 7.1309, 6.69084, 6.70564, 5.7462, 6.16752, 7.279319999999999, 6.73102, 6.53669, 6.24222, 7.03527, 7.04752, 6.507280000000001, 6.93049, 6.59715, 7.09008, 6.45047, 6.33328, 6.68461, 6.62007, 6.90575, 7.04752, 6.6346300000000005, 6.59167, 6.41836, 7.2724, 6.56526, 7.91936, 6.54103, 6.90575, 7.57558, 6.20456, 6.802389999999999, 7.484369999999999, 6.90575, 6.51471, 5.7462, 6.39693, 6.94698, 7.084230000000001, 6.96885, 6.907760000000001, 7.00307, 7.293019999999999, 7.173189999999999, 6.77422, 6.815639999999999, 6.43294, 6.813439999999999, 6.90575, 6.88857, 6.90575, 7.09008, 6.90575, 7.226210000000001, 7.279319999999999, 6.73102, 6.05912, 6.68461, 6.6592899999999995, 7.91936, 6.507280000000001, 7.00307, 6.47697, 6.551080000000001, 6.90575, 6.2146099999999995, 6.907760000000001, 6.715380000000001, 6.96885, 6.68461, 6.57368, 6.745239999999999, 6.53669, 5.76832, 6.2146099999999995, 6.8426800000000005, 7.520230000000001, 5.5797300000000005, 6.51323, 7.1082399999999994, 6.5582, 7.17012, 6.768489999999999, 6.39693, 7.393260000000001, 6.6958, 6.95177, 6.2146099999999995, 6.5582, 6.9613, 6.4892, 7.676010000000001, 6.715380000000001, 6.907760000000001, 6.3935900000000006, 7.54961, 6.86171, 5.79606, 6.83087, 6.6783399999999995, 6.54535, 6.593039999999999, 6.77422, 6.44572, 7.04752, 7.37776, 7.17012, 6.8426800000000005, 7.00307, 6.126869999999999, 6.50129, 6.8773, 6.56526, 6.354369999999999, 6.96885, 6.575080000000001, 6.62007, 6.42811, 6.752269999999999, 6.90575, 6.78672, 8.12089, 6.829789999999999, 7.00307, 6.2146099999999995, 6.1944099999999995, 7.740660000000001, 6.907760000000001, 6.2146099999999995, 6.96979, 6.68461, 7.14283, 6.139880000000001, 7.1293, 6.89467, 5.43808, 7.183110000000001, 6.5467900000000006, 6.34388, 6.39024, 7.0255399999999995, 6.424869999999999, 6.68461, 6.49979, 7.37776, 6.7901, 6.17379, 6.4488900000000005, 6.614730000000001, 6.60665, 7.09008, 6.51323, 6.93245, 6.6592899999999995, 6.30992, 7.37776, 6.09807, 6.8977, 6.35784, 6.37502, 6.57925, 7.7021, 7.46737, 7.6009, 7.36455, 6.59715, 6.639880000000001, 6.36303, 5.82895, 6.59715, 6.62007, 6.551080000000001, 7.09008, 6.78333, 6.563860000000001, 7.0076, 6.880380000000001, 6.745239999999999, 6.82437, 6.4677, 7.127689999999999, 7.1309, 6.62007, 7.82084, 7.288930000000001, 6.39693, 6.68461, 7.10988, 6.563860000000001, 6.354369999999999, 6.7546, 7.196689999999999, 5.99146, 6.74052, 6.67203, 6.86485, 7.1309, 7.6009, 6.6107, 7.24423, 6.9256, 7.11314, 6.86693, 6.58617, 6.85646, 5.70378, 6.2146099999999995, 6.92363, 6.84588, 6.86171, 6.813439999999999, 6.50279, 5.7589, 6.7417, 7.18917, 6.2146099999999995, 6.93245, 6.78897, 6.74759, 7.00307, 6.3935900000000006, 7.09008, 7.84385, 6.802389999999999, 6.57647, 6.78672, 6.39693, 6.9707300000000005, 8.3082, 7.1309, 7.17012, 6.593039999999999, 6.90575, 6.62007, 6.86693, 6.259580000000001, 6.41999, 5.52146, 6.907760000000001, 7.43838, 6.64509, 7.09008, 6.39693, 7.0255399999999995, 7.903969999999999, 6.745239999999999, 6.80461, 7.037030000000001, 7.04752, 6.47697, 6.65286, 6.76388, 6.90575, 6.87626, 6.90575, 7.1507, 7.07834, 7.21082, 6.52942, 6.701960000000001, 6.8426800000000005, 6.0282800000000005, 6.3207699999999996, 6.24611, 6.57786, 6.18826, 6.975410000000001, 7.16085, 6.30992, 6.83303, 7.61874, 6.48158, 6.44095, 6.99485, 6.907760000000001, 6.8384100000000005, 6.79122, 6.551080000000001, 6.6695, 7.279319999999999, 6.57925, 6.813439999999999, 6.30992, 6.68461, 6.47389, 6.802389999999999, 6.785589999999999, 7.313219999999999, 6.551080000000001, 7.29097, 5.8861, 6.98008, 6.802389999999999, 7.20786, 6.802389999999999, 6.983789999999999, 6.75926, 6.68461, 6.55962, 6.8977, 6.05912, 6.90575, 7.4570300000000005, 7.1309, 6.566669999999999, 6.829789999999999, 6.85646, 6.643789999999999, 6.77422, 7.90101, 6.32794, 6.25767, 7.81883, 6.966019999999999, 6.33328, 6.77422, 6.8384100000000005, 6.62007, 6.813439999999999, 6.551080000000001, 6.920669999999999, 7.195189999999999, 6.62007, 6.3315, 6.69332, 6.745239999999999, 6.90575, 7.0396600000000005, 6.90575, 6.07535, 6.30992, 6.96885, 6.47697, 6.39693, 7.24423, 7.12367, 7.17012, 6.18415, 6.68461, 6.44413, 6.4677, 6.47697, 6.907760000000001, 6.4552, 7.1546199999999995, 7.37776, 7.18917, 6.10925, 6.5903, 7.136480000000001, 5.95584, 7.03878, 6.461469999999999, 6.697030000000001, 5.9839400000000005, 6.66568, 6.2146099999999995, 6.56526, 6.51471, 5.61677, 6.49375, 7.06048, 6.715380000000001, 6.10925, 6.95655, 7.1309, 6.95655, 6.90575, 6.76273, 6.311730000000001, 6.29157, 6.86693, 6.68461, 6.90575, 6.95655, 7.17012, 7.0255399999999995, 6.86171, 7.495539999999999, 6.49224, 6.90575, 6.8865300000000005, 7.57353, 6.602589999999999, 6.30992, 6.23048, 6.5467900000000006, 6.530880000000001, 6.802389999999999, 7.6009, 6.46459, 6.834110000000001, 7.313219999999999, 6.802389999999999, 6.66441, 7.251339999999999, 5.87774, 7.43838, 6.35957, 6.43775, 6.5820300000000005, 6.768489999999999, 7.17012, 5.6733199999999995, 6.90575, 7.281389999999999, 7.17702, 6.90575, 6.95845, 6.44572, 6.583410000000001, 6.91672, 6.90575, 8.229510000000001, 7.027310000000001, 6.551080000000001, 7.136480000000001, 6.71174, 6.74288, 7.0934, 7.200419999999999, 6.83087, 7.37776, 6.79122, 6.67203, 6.55393, 6.39693, 7.46737, 6.802389999999999, 7.165489999999999, 6.62007, 6.90575, 7.0255399999999995, 7.70661, 6.47389, 6.35957, 6.07535, 6.907760000000001, 7.20786, 6.43775, 6.556780000000001, 6.966019999999999, 6.95273, 6.3716099999999996, 6.745239999999999, 6.43133, 6.907760000000001, 6.68461, 6.64898, 6.28972, 7.00307, 6.2146099999999995, 6.66058, 7.016610000000001, 7.09008, 6.85646, 6.90575, 5.66988, 7.09008, 6.53379, 6.84801, 5.99146, 7.21891, 6.90575, 6.745239999999999, 7.07242, 7.6009, 6.817830000000001, 7.346010000000001, 6.6592899999999995, 7.46737, 6.975410000000001, 6.79122, 6.719010000000001, 6.720219999999999, 6.90575, 6.90575, 6.68336, 6.892639999999999, 6.86485, 6.947939999999999, 6.955589999999999, 6.90575, 6.551080000000001, 5.66988, 7.0255399999999995, 7.04752, 6.3935900000000006, 6.807930000000001, 6.74288, 6.802389999999999, 6.4599, 6.354369999999999, 6.18208, 7.398789999999999, 7.37776, 7.35883, 6.47697, 7.18463, 6.745239999999999, 7.05876, 6.84588, 6.68461, 7.64969, 6.59578, 6.715380000000001, 6.04025, 6.507280000000001, 6.23441, 7.098380000000001, 6.2804, 7.6256, 6.633319999999999, 6.6346300000000005, 6.43455, 6.52649, 7.54961, 7.09008, 6.36475, 5.7462, 6.77422, 6.10925, 6.73459, 7.1293, 6.49224, 6.28413, 7.17012, 6.90575, 6.6515699999999995, 6.56948, 6.80461, 6.03787, 7.313219999999999, 6.11589, 6.68461, 7.09008, 5.96615, 8.26873, 6.17794, 6.3935900000000006, 7.12287, 6.43775, 5.95324, 6.6796, 6.758089999999999, 6.68461, 6.90575, 7.495539999999999, 6.84588, 6.745239999999999, 6.21261, 6.10032, 8.048789999999999, 7.313219999999999, 6.802389999999999, 6.745239999999999, 6.907760000000001, 6.90575, 5.82305, 6.90575, 7.17012, 6.2441699999999996, 8.08641, 5.59842, 7.08171, 6.9594, 6.97354, 7.30653, 6.55962, 6.58617, 6.74406, 7.56008, 6.1944099999999995, 7.408530000000001, 6.61338, 6.01616, 6.32794, 7.18007, 6.74052, 6.95655, 6.58617, 6.66568, 6.85646, 6.44572, 7.313219999999999, 7.1309, 5.99146, 6.18826, 5.59842, 6.49224, 6.821110000000001, 6.56526, 6.47697, 6.813439999999999, 7.43838, 6.30262, 6.38351, 6.551080000000001, 5.45959, 6.43775, 6.90575, 6.53233, 6.61874, 6.06843, 6.1203, 7.88231, 6.90575, 6.7569300000000005, 5.7651900000000005, 6.938280000000001, 7.08255, 6.41346, 6.882439999999999, 7.37776, 6.44413, 6.90575, 6.51471, 6.5439099999999994, 6.551080000000001, 6.90575, 7.35372, 7.135689999999999, 7.46737, 6.63595, 6.802389999999999, 7.346010000000001, 6.90575, 6.86693, 7.1309, 5.78383, 6.829789999999999, 6.65286, 6.7334, 7.2998, 6.65415, 6.9256, 6.90575, 6.39693, 6.52209, 6.3699, 6.770789999999999, 6.39693, 6.49072, 6.02345, 7.32251, 6.13123, 6.29711, 7.04752, 6.799060000000001, 6.272880000000001, 6.49527, 6.57925, 6.697030000000001, 6.703189999999999, 7.04752, 6.65286, 6.752269999999999, 6.2146099999999995, 6.42162, 6.90575, 7.014810000000001, 6.62007, 6.85646, 6.745239999999999, 6.9256, 6.58617, 6.51471, 5.96615, 6.90575, 6.52942, 6.16331, 6.56526, 6.813439999999999, 7.09008, 5.8141300000000005, 6.769639999999999, 6.08677, 6.7369699999999995, 7.064760000000001, 7.11883, 6.51175, 7.46737, 6.57228, 6.551080000000001, 7.67322, 6.35957, 6.907760000000001, 6.58617, 5.8579300000000005, 7.1309, 6.57925, 6.43294, 6.39693, 7.46737, 6.95655, 6.54247, 6.3716099999999996, 7.293019999999999, 6.08677, 7.64969, 6.95655, 8.13153, 6.3613, 6.10925, 6.551080000000001, 6.907760000000001, 6.907760000000001, 6.43775, 6.3243599999999995, 6.83518, 6.993930000000001, 6.6567300000000005, 6.984719999999999, 7.062189999999999, 6.907760000000001, 6.77992, 7.195189999999999, 7.185389999999999, 6.07993, 6.01616, 6.72743, 6.33683, 6.70073, 7.20786, 7.0103100000000005, 6.551080000000001, 7.1309, 6.7334, 7.495539999999999, 6.24028, 6.354369999999999, 6.90575, 6.551080000000001, 7.00307, 6.85013, 7.0255399999999995, 6.39693, 7.495539999999999, 6.768489999999999, 6.23441, 6.461469999999999, 6.5395900000000005, 6.907760000000001, 6.05209, 6.28413, 6.126869999999999, 7.12287, 6.745239999999999, 7.21744, 6.39693, 6.49072, 6.47697, 6.05209, 7.24423, 6.802389999999999, 7.09008, 6.44572, 7.00307, 6.966019999999999, 6.721430000000001, 6.62936, 6.813439999999999, 6.28227, 7.64969, 6.9575, 7.3696, 6.461469999999999, 6.90575, 7.20786, 6.78333, 6.57647, 6.5903, 7.00307, 6.74993, 6.57925, 6.907760000000001, 6.16331, 6.59578, 6.802389999999999, 6.272880000000001, 7.014810000000001, 6.2146099999999995, 6.43615, 6.64509, 6.608, 6.68461, 6.58617, 6.62007, 7.00307, 6.95655, 6.12249, 6.62007, 7.09008, 6.83303, 6.98101, 6.6871100000000006, 6.81014, 7.37776, 6.51767, 6.85435, 7.64969, 7.91936, 6.907760000000001, 6.9256, 6.6733, 7.5574699999999995, 6.13773, 6.67203, 6.30992, 6.47697, 6.8956800000000005, 6.56948, 6.33328, 6.802389999999999, 6.9707300000000005, 8.00637, 6.65286, 6.57368, 5.70711, 6.57786, 6.92363, 6.57368, 7.37776, 6.2146099999999995, 7.408530000000001, 7.1155800000000005, 7.91936, 7.09008, 7.37776, 7.1309, 6.58617, 6.14633, 6.6592899999999995, 6.90575, 7.092569999999999, 6.86485, 7.57558, 7.200419999999999, 6.95655, 6.2146099999999995, 6.05209, 6.44254, 6.4599, 6.60394, 6.975410000000001, 7.400010000000001, 8.537, 6.07993, 7.36645, 6.67708, 6.99942, 6.61338, 7.64969, 6.68461, 6.57925, 7.09008, 7.1082399999999994, 6.83518, 7.09008, 6.58617, 5.8861, 6.90575, 6.43615, 6.84162, 7.313219999999999, 6.55962, 6.07993, 6.3952599999999995, 6.633319999999999, 6.42162, 7.09008, 7.313219999999999, 6.30992, 6.79122, 6.720219999999999, 6.66823, 7.2861899999999995, 6.802389999999999, 6.703189999999999, 5.98896, 7.620710000000001, 7.09008, 7.6009, 6.28972, 6.48768, 6.68461, 6.41182, 7.37776, 7.525639999999999, 6.74993, 6.72623, 7.09008, 7.25347, 7.585789999999999, 6.45362, 6.354369999999999, 6.984719999999999, 6.90575, 6.937310000000001, 7.0775, 7.346010000000001, 7.027310000000001, 6.907760000000001, 6.9489, 6.907760000000001, 7.495539999999999, 6.01127, 6.802389999999999, 6.745239999999999, 6.90575, 6.633319999999999, 6.80572, 6.2480400000000005, 6.2634, 6.31355, 7.35819, 6.49677, 6.68461, 6.633319999999999, 7.30317, 6.95655, 6.907760000000001, 5.742999999999999, 6.39693, 7.313219999999999, 7.09008, 6.47697, 7.196689999999999, 6.47697, 6.30262, 6.745239999999999, 7.07412, 6.354369999999999, 6.10925, 6.68461, 7.42357, 6.95655, 6.715380000000001, 6.9828600000000005, 7.02465, 6.49224, 6.49979, 6.27099, 5.8861, 7.393260000000001, 6.829789999999999, 6.32794, 6.28786, 5.9839400000000005, 6.68461, 5.84354, 6.62007, 7.12287, 6.2146099999999995, 6.84162, 7.00307, 6.2146099999999995, 6.983789999999999, 6.35611, 6.17379, 6.95655, 6.39693, 6.88755, 7.04316, 6.90575, 6.84162, 6.45362, 6.83518, 6.85646, 6.46925, 5.99146, 6.62007, 7.00307, 5.99146, 6.22654, 6.633319999999999, 6.77308, 7.1107, 6.95655, 6.967910000000001, 6.995769999999999, 6.66568, 6.594410000000001, 6.90575, 6.5439099999999994, 6.62007, 6.60665, 7.04752, 7.062189999999999, 7.313219999999999, 7.04752, 7.0884100000000005, 6.937310000000001, 6.90575, 6.23441, 6.25767, 6.551080000000001, 6.90575, 7.09008, 6.68461, 6.2146099999999995, 6.386880000000001, 6.44413, 6.58617, 6.10925, 6.90073, 6.745239999999999, 7.2233, 6.8773, 6.813439999999999, 7.037030000000001, 6.40523, 6.2146099999999995, 6.17379, 7.6009, 6.30992, 6.685860000000001, 5.99146, 6.38856, 6.47697, 7.46737, 6.551080000000001, 6.9226399999999995, 6.87213, 6.73102, 6.30992, 7.45298, 5.72359, 6.882439999999999, 5.940169999999999, 6.90675, 6.551080000000001, 6.9147300000000005, 6.85646, 6.563860000000001, 6.381819999999999, 5.78996, 6.769639999999999, 6.73102, 7.06133, 6.68461, 6.2146099999999995, 6.4708, 7.08171, 6.90575, 7.6009, 6.52062, 6.907760000000001, 6.60935, 6.51471, 6.9828600000000005, 6.85646, 6.30992, 7.338889999999999, 6.22654, 6.311730000000001, 7.01392, 6.49224, 6.2205900000000005, 7.44659, 7.388330000000001, 6.85118, 7.24423, 6.632000000000001, 6.90575, 7.10906, 6.944089999999999, 6.83518, 6.222580000000001, 6.84588, 7.17012, 6.52503, 6.2860000000000005, 6.80128, 6.07993 ], "xaxis": "x2", "y0": "yes", "yaxis": "y2" }, { "box": { "visible": false }, "fillcolor": "rgba(0, 0, 0, 0)", "hoverinfo": "x", "hoveron": "points", "jitter": 0.4, "legendgroup": "male", "line": { "color": "rgba(0, 0, 0, 0)", "width": 0 }, "marker": { "color": "hsla(328, 70%, 70%,1)", "line": { "color": "hsla(328, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.3, "size": 9, "symbol": "circle" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "all", "scalegroup": "male", "showlegend": false, "side": "both", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.99942, 5.99146, 7.67322, 7.09008, 5.61677, 6.646389999999999, 7.02643, 6.4552, 7.32975, 6.95845, 7.06902, 6.04025, 6.907760000000001, 7.91936, 6.745239999999999, 6.30079, 7.068169999999999, 6.07535, 6.7417, 7.71869, 6.882439999999999, 6.47697, 6.77878, 6.907760000000001, 6.93342, 7.06902, 6.57368, 6.829789999999999, 7.557989999999999, 6.892639999999999, 7.0255399999999995, 6.57925, 7.313219999999999, 6.47697, 7.1309, 6.551080000000001, 6.882439999999999, 6.907760000000001, 6.682110000000001, 6.39693, 6.48004, 6.60665, 7.00307, 6.10925, 5.78383, 6.94505, 6.9546399999999995, 7.17012, 7.11477, 6.993930000000001, 6.593039999999999, 6.49979, 6.5439099999999994, 6.39192, 6.51471, 6.30992, 6.30992, 7.116389999999999, 6.46925, 7.554860000000001, 6.90675, 6.85646, 5.94803, 6.90575, 6.90575, 7.408530000000001, 7.0076, 6.88857, 7.35947, 6.39693, 7.041410000000001, 6.66696, 6.30992, 7.313219999999999, 6.787839999999999, 6.90575, 6.802389999999999, 7.00307, 7.074960000000001, 7.5606, 5.99146, 6.16331, 5.94803, 6.43775, 7.282760000000001, 6.39693, 6.813439999999999, 6.694560000000001, 6.29157, 6.23048, 6.67203, 6.16331, 6.88755, 6.95655, 7.56008, 6.28227, 6.30992, 6.05912, 6.602589999999999, 7.47307, 6.2146099999999995, 6.95655, 6.90575, 6.461469999999999, 7.09008, 7.46737, 6.829789999999999, 6.60665, 6.74052, 6.745239999999999, 7.6009, 6.62007, 6.551080000000001, 6.663130000000001, 7.60589, 6.53669, 6.5582, 6.16121, 6.19236, 6.2146099999999995, 7.37776, 6.6995, 6.58617, 6.23832, 6.27476, 6.48311, 6.69084, 6.54965, 6.745239999999999, 6.882439999999999, 6.663130000000001, 5.70378, 6.7226300000000005, 7.20786, 6.802389999999999, 6.79122, 6.62007, 6.42162, 6.12249, 6.90575, 6.28227, 6.745239999999999, 6.206580000000001, 5.99146, 6.682110000000001, 6.49677, 7.408530000000001, 6.10925, 6.317159999999999, 6.2146099999999995, 6.551080000000001, 6.25575, 7.0884100000000005, 6.16331, 6.68461, 5.8999, 7.01392, 7.1107, 6.9363399999999995, 6.90575, 6.1070199999999994, 6.85646, 6.44572, 6.551080000000001, 6.84588, 8.10168, 7.31255, 5.99645, 6.90575, 6.802389999999999, 7.111510000000001, 6.2146099999999995, 6.66696, 6.907760000000001, 6.90575, 6.6592899999999995, 8.047189999999999, 6.62407, 7.0076, 6.30992, 6.17379, 6.55393, 6.24611, 7.78322, 6.563860000000001, 6.60665, 7.12448, 6.507280000000001, 6.461469999999999, 6.8977, 7.82405, 7.75148, 6.62407, 7.346010000000001, 6.2146099999999995, 7.1309, 6.51471, 5.96615, 6.84055, 7.041410000000001 ], "xaxis": "x2", "y0": "male", "yaxis": "y2" }, { "box": { "visible": false }, "fillcolor": "rgba(0, 0, 0, 0)", "hoverinfo": "x", "hoveron": "points", "jitter": 0.4, "legendgroup": "yes", "line": { "color": "rgba(0, 0, 0, 0)", "width": 0 }, "marker": { "color": "hsla(164, 70%, 70%,1)", "line": { "color": "hsla(164, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.3, "size": 9, "symbol": "circle" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "all", "scalegroup": "yes", "showlegend": false, "side": "both", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.99942, 5.99146, 7.67322, 7.09008, 5.61677, 6.646389999999999, 7.02643, 6.4552, 7.32975, 6.95845, 7.06902, 6.04025, 6.907760000000001, 7.91936, 6.745239999999999, 6.30079, 7.068169999999999, 6.07535, 6.7417, 7.71869, 6.882439999999999, 6.47697, 6.77878, 6.907760000000001, 6.93342, 7.06902, 6.57368, 6.829789999999999, 7.557989999999999, 6.892639999999999, 7.0255399999999995, 6.57925, 6.47697, 7.1309, 6.551080000000001, 6.882439999999999, 6.907760000000001, 6.682110000000001, 6.39693, 6.48004, 6.60665, 7.00307, 5.78383, 6.94505, 6.9546399999999995, 7.17012, 7.11477, 6.593039999999999, 6.49979, 6.5439099999999994, 6.39192, 6.51471, 6.30992, 6.30992, 7.116389999999999, 6.46925, 7.554860000000001, 6.90675, 6.85646, 5.94803, 6.90575, 6.90575, 7.408530000000001, 7.0076, 6.88857, 7.35947, 6.39693, 7.041410000000001, 6.66696, 6.30992, 7.313219999999999, 6.787839999999999, 6.90575, 6.802389999999999, 7.00307, 7.074960000000001, 7.5606, 6.16331, 5.94803, 6.43775, 7.282760000000001, 6.39693, 6.813439999999999, 6.694560000000001, 6.29157, 6.23048, 6.16331, 6.88755, 6.95655, 7.56008, 6.28227, 6.30992, 6.05912, 6.602589999999999, 7.47307, 6.2146099999999995, 6.95655, 6.90575, 6.461469999999999, 7.09008, 7.46737, 6.829789999999999, 6.60665, 6.74052, 6.745239999999999, 7.6009, 6.62007, 6.551080000000001, 6.663130000000001, 7.60589, 6.53669, 6.5582, 6.16121, 6.19236, 6.2146099999999995, 7.37776, 6.58617, 6.23832, 6.27476, 6.48311, 6.69084, 6.54965, 6.882439999999999, 6.663130000000001, 5.70378, 6.7226300000000005, 7.20786, 6.802389999999999, 6.79122, 6.62007, 6.42162, 6.12249, 6.90575, 6.28227, 6.206580000000001, 5.99146, 6.682110000000001, 6.49677, 7.408530000000001, 6.10925, 6.317159999999999, 6.2146099999999995, 6.551080000000001, 6.25575, 7.0884100000000005, 6.16331, 6.68461, 5.8999, 7.01392, 7.1107, 6.9363399999999995, 6.90575, 6.1070199999999994, 6.85646, 6.44572, 6.551080000000001, 6.84588, 8.10168, 7.31255, 5.99645, 6.90575, 6.802389999999999, 6.2146099999999995, 6.66696, 6.907760000000001, 6.90575, 6.6592899999999995, 8.047189999999999, 6.62407, 7.0076, 6.30992, 6.17379, 6.55393, 6.3952599999999995, 6.24611, 7.78322, 6.60665, 7.12448, 6.507280000000001, 6.461469999999999, 6.8977, 7.82405, 7.75148, 6.62407, 6.2146099999999995, 7.1309, 6.51471, 5.96615, 6.84055, 7.041410000000001, 6.51471, 6.551080000000001, 7.346010000000001, 6.966019999999999, 6.90575, 7.17012, 6.5820300000000005, 7.04752, 6.354369999999999, 6.59578 ], "xaxis": "x2", "y0": "yes", "yaxis": "y2" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(328, 30%, 30%,1)", "width": 0.5 }, "visible": false, "width": 0.25 }, "fillcolor": "hsla(328, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "male", "line": { "width": 0 }, "marker": { "color": "hsla(328, 50%, 50%,0.9)", "line": { "color": "hsla(328, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "circle" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": false, "scalegroup": "male", "showlegend": false, "side": "both", "span": [ 6.715336602494612, 6.74323291695408 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 6.99942, 5.99146, 7.67322, 7.09008, 5.61677, 6.646389999999999, 7.02643, 6.4552, 7.32975, 6.95845, 7.06902, 6.04025, 6.907760000000001, 7.91936, 6.745239999999999, 6.30079, 7.068169999999999, 6.07535, 6.7417, 7.71869, 6.882439999999999, 6.47697, 6.77878, 6.907760000000001, 6.93342, 7.06902, 6.57368, 6.829789999999999, 7.557989999999999, 6.892639999999999, 7.0255399999999995, 6.57925, 7.313219999999999, 6.47697, 7.1309, 6.551080000000001, 6.882439999999999, 6.907760000000001, 6.682110000000001, 6.39693, 6.48004, 6.60665, 7.00307, 6.10925, 5.78383, 6.94505, 6.9546399999999995, 7.17012, 7.11477, 6.993930000000001, 6.593039999999999, 6.49979, 6.5439099999999994, 6.39192, 6.51471, 6.30992, 6.30992, 7.116389999999999, 6.46925, 7.554860000000001, 6.90675, 6.85646, 5.94803, 6.90575, 6.90575, 7.408530000000001, 7.0076, 6.88857, 7.35947, 6.39693, 7.041410000000001, 6.66696, 6.30992, 7.313219999999999, 6.787839999999999, 6.90575, 6.802389999999999, 7.00307, 7.074960000000001, 7.5606, 5.99146, 6.16331, 5.94803, 6.43775, 7.282760000000001, 6.39693, 6.813439999999999, 6.694560000000001, 6.29157, 6.23048, 6.67203, 6.16331, 6.88755, 6.95655, 7.56008, 6.28227, 6.30992, 6.05912, 6.602589999999999, 7.47307, 6.2146099999999995, 6.95655, 6.90575, 6.461469999999999, 7.09008, 7.46737, 6.829789999999999, 6.60665, 6.74052, 6.745239999999999, 7.6009, 6.62007, 6.551080000000001, 6.663130000000001, 7.60589, 6.53669, 6.5582, 6.16121, 6.19236, 6.2146099999999995, 7.37776, 6.6995, 6.58617, 6.23832, 6.27476, 6.48311, 6.69084, 6.54965, 6.745239999999999, 6.882439999999999, 6.663130000000001, 5.70378, 6.7226300000000005, 7.20786, 6.802389999999999, 6.79122, 6.62007, 6.42162, 6.12249, 6.90575, 6.28227, 6.745239999999999, 6.206580000000001, 5.99146, 6.682110000000001, 6.49677, 7.408530000000001, 6.10925, 6.317159999999999, 6.2146099999999995, 6.551080000000001, 6.25575, 7.0884100000000005, 6.16331, 6.68461, 5.8999, 7.01392, 7.1107, 6.9363399999999995, 6.90575, 6.1070199999999994, 6.85646, 6.44572, 6.551080000000001, 6.84588, 8.10168, 7.31255, 5.99645, 6.90575, 6.802389999999999, 7.111510000000001, 6.2146099999999995, 6.66696, 6.907760000000001, 6.90575, 6.6592899999999995, 8.047189999999999, 6.62407, 7.0076, 6.30992, 6.17379, 6.55393, 6.24611, 7.78322, 6.563860000000001, 6.60665, 7.12448, 6.507280000000001, 6.461469999999999, 6.8977, 7.82405, 7.75148, 6.62407, 7.346010000000001, 6.2146099999999995, 7.1309, 6.51471, 5.96615, 6.84055, 7.041410000000001, 6.51471, 6.551080000000001, 7.346010000000001, 6.966019999999999, 6.90575, 7.17012, 6.5820300000000005, 7.04752, 6.354369999999999, 6.59578, 7.82405, 6.5467900000000006, 6.551080000000001, 6.39693, 6.88755, 6.39693, 6.39693, 6.65286, 6.36647, 6.622739999999999, 6.90575, 5.7525699999999995, 6.15273, 7.04752, 5.52146, 6.770789999999999, 6.907760000000001, 7.00125, 7.064760000000001, 7.00307, 6.05209, 6.745239999999999, 7.045780000000001, 6.54535, 6.37673, 6.62007, 6.907760000000001, 6.10925, 6.39693, 8.16052, 6.745239999999999, 7.03527, 6.765039999999999, 7.1309, 6.77422, 6.87213, 6.551080000000001, 6.907760000000001, 6.6567300000000005, 6.80017, 7.226210000000001, 6.10925, 6.90575, 6.70073, 7.495539999999999, 8.05516, 6.9256, 7.06987, 6.694560000000001, 6.90575, 6.43775, 6.97261, 7.29709, 7.179310000000001, 7.313219999999999, 6.7226300000000005, 6.82437, 6.715380000000001, 7.173189999999999, 6.62007, 6.77878, 6.7226300000000005, 6.85118, 6.49224, 7.313219999999999, 6.62007, 7.158510000000001, 6.818919999999999, 6.68461, 6.57647, 6.43455, 5.89715, 6.34564, 6.556780000000001, 6.7093, 6.93925, 7.00307, 6.551080000000001, 6.90575, 6.53669, 6.69084, 7.313219999999999, 6.05209, 6.90575, 6.62007, 6.4552, 6.77422, 6.87005, 6.65544, 6.42162, 5.9269300000000005, 6.317159999999999, 6.42972, 6.62007, 6.96508, 6.19236, 6.61607, 5.5606800000000005, 6.57368, 6.2634, 6.715380000000001, 7.408530000000001, 6.17379, 7.333019999999999, 6.37502, 6.16331, 6.317159999999999, 7.04752, 6.68461, 6.98008, 6.912739999999999, 6.86693, 7.3670800000000005, 6.68461, 6.90575, 6.90575, 6.62007, 6.45362, 6.49072, 6.47697, 6.9431199999999995, 6.90575, 6.10925, 6.67203, 6.7334, 7.34278, 6.802389999999999, 6.90575, 6.658010000000001, 6.9256, 6.90575, 6.91075, 6.6592899999999995, 5.8579300000000005, 6.6592899999999995, 6.16331, 7.441319999999999, 6.47851, 7.07834, 6.745239999999999, 7.20786, 6.36475, 6.63857, 7.475910000000001, 6.62007, 6.4892, 7.00307, 6.56948, 7.43838, 7.15383, 7.064760000000001, 6.88755, 7.26193, 6.23245, 6.30445, 6.715380000000001, 7.313219999999999, 7.37776, 5.8579300000000005, 6.85646, 6.2441699999999996, 7.26193, 6.90575, 6.907760000000001, 6.272880000000001, 6.66568, 7.481560000000001, 7.04752, 6.61338, 6.40688, 6.73815, 5.8579300000000005, 7.57558, 6.83518, 6.38856, 6.768489999999999, 6.90575, 6.86693, 6.39693, 6.34739, 7.1507, 6.58617, 7.282760000000001, 7.00307, 6.66058, 6.58064, 6.90575, 6.10925, 6.64249, 6.715380000000001, 6.62007, 7.1309, 6.51471, 5.99146, 6.95655, 6.65286, 6.16331, 6.24611, 7.1309, 7.1333, 7.24423, 6.04025, 6.86901, 6.802389999999999, 6.70073, 6.1203, 6.90575, 7.313219999999999, 6.54822, 6.95655, 7.50108, 6.39693, 6.551080000000001, 7.07918, 5.8579300000000005, 5.70378, 6.7369699999999995, 7.745, 6.87213, 5.89715, 6.39693, 6.30628, 6.8773, 6.708080000000001, 6.52942, 6.818919999999999, 7.041410000000001, 6.06611, 6.882439999999999, 6.94986, 6.703189999999999, 6.37502, 5.70378, 7.03615, 7.37776, 5.66988, 6.907760000000001, 6.882439999999999, 6.752269999999999, 6.48158, 6.47697, 7.04752, 6.802389999999999, 6.984719999999999, 5.9269300000000005, 6.49224, 6.385190000000001, 7.1309, 7.663880000000001, 7.07242, 6.907760000000001, 6.43775, 8.05516, 6.807930000000001, 6.785589999999999, 6.907760000000001, 6.403569999999999, 6.035480000000001, 7.24423, 6.05209, 7.338889999999999, 7.0255399999999995, 7.00307, 5.99146, 6.33683, 6.07993, 7.488289999999999, 6.51175, 5.7365699999999995, 5.7365699999999995, 6.90575, 6.697030000000001, 6.354369999999999, 6.802389999999999, 6.62007, 6.68461, 6.68835, 5.8260000000000005, 6.85646, 6.44572, 6.95655, 7.20786, 6.3716099999999996, 6.8977, 6.47697, 6.802389999999999, 6.90575, 6.84055, 7.676010000000001, 6.85646, 6.43775, 7.20786, 6.89163, 7.0121199999999995, 6.85646, 6.77422, 6.54965, 6.05209, 6.697030000000001, 6.90575, 6.68461, 6.62007, 7.24423, 6.36819, 6.8844899999999996, 6.62007, 6.745239999999999, 6.19236, 6.39693, 6.85646, 6.7334, 5.9269300000000005, 5.98896, 6.48004, 6.55393, 6.5903, 7.02643, 7.15305, 6.19236, 6.43615, 6.6871100000000006, 6.42162, 6.06379, 6.93537, 7.09008, 6.802389999999999, 6.47697, 6.2634, 7.79028, 6.10032, 6.0282800000000005, 7.408530000000001, 6.6174, 6.907760000000001, 6.90575, 5.99146, 6.2441699999999996, 6.00141, 6.39693, 6.79122, 6.9196800000000005, 6.9147300000000005, 6.90575, 6.408530000000001, 6.646389999999999, 6.746410000000001, 6.30992, 6.42972, 6.18826, 6.5467900000000006, 7.522939999999999, 6.7334, 6.07993, 6.907760000000001, 6.90575, 7.04752, 6.66185, 6.47697, 7.23418, 6.54247, 6.753439999999999, 6.51471, 7.034389999999999, 6.65286, 7.262630000000001, 6.47697, 7.20786, 6.90575, 6.30992, 6.984719999999999, 6.30445, 6.05209, 6.34564, 6.95655, 6.49224, 6.62007, 5.82895, 6.39693, 6.06146, 6.43775, 6.03787, 6.3952599999999995, 6.22654, 7.144410000000001, 6.90575, 6.91374, 5.70378, 7.6009, 6.5903, 7.1592899999999995, 6.57786, 6.6783399999999995, 6.72383, 6.41182, 6.53233, 6.907760000000001, 6.7334, 7.236339999999999, 6.20456, 6.10925, 6.715380000000001, 6.72743, 6.551080000000001, 7.084230000000001, 6.97635, 7.20786, 6.685860000000001, 6.8977, 7.00307, 6.35089, 5.70378, 6.59167, 6.461469999999999, 6.984719999999999, 6.53233, 6.646389999999999, 6.39693, 7.459910000000001, 6.19848, 7.0255399999999995, 7.1309, 6.745239999999999, 6.22654, 6.10925, 7.08171, 6.64249, 7.49332, 7.495539999999999, 7.1546199999999995, 7.1309, 6.745239999999999, 6.18415, 5.82895, 6.10925, 6.58617, 6.48158, 6.20456, 7.313219999999999, 6.94022, 6.90575, 6.41836, 6.10925, 7.48717, 7.0193, 6.983789999999999, 6.633319999999999, 6.29157, 7.49109, 6.91672, 6.90575, 6.51323, 6.715380000000001, 5.8141300000000005, 6.47697, 7.37212, 6.646389999999999, 7.0184, 6.84055, 7.24423, 6.834110000000001, 7.09008, 6.52942, 7.4553, 7.00307, 6.37502, 7.24423, 6.48158, 6.68461, 6.10925, 6.90575, 6.90575, 7.24423, 7.75577, 6.82437, 6.43775, 6.18415, 6.43775, 6.90575, 7.1107, 6.44572, 6.42162, 6.769639999999999, 6.93245, 6.818919999999999, 6.551080000000001, 6.58617, 6.96508, 6.44572, 6.7093, 6.83195, 6.28972, 7.1082399999999994, 7.135689999999999, 6.49072, 7.251339999999999, 8.51719, 6.807930000000001, 7.14756, 7.33368, 6.77422, 6.60394, 6.68461, 7.1309, 5.99146, 7.201169999999999, 5.99146, 6.10925, 6.68461, 6.39693, 6.927560000000001, 6.85751, 6.95655, 6.08677, 7.24423, 7.1309, 6.17587, 6.802389999999999, 6.30992, 6.36303, 5.8999, 6.77422, 6.2860000000000005, 6.828710000000001, 6.47697, 6.72743, 6.55251, 6.29157, 5.59842, 6.62407, 5.9814099999999994, 6.76273, 7.06902, 5.9269300000000005, 6.80128, 7.313219999999999, 6.966019999999999, 6.6592899999999995, 6.39693, 6.57786, 6.62007, 6.65286, 6.293419999999999, 5.4161, 5.87493, 6.79122, 6.987489999999999, 6.30992, 6.55536, 7.09008, 6.2146099999999995, 7.04752, 6.90575, 6.10925, 6.6783399999999995, 6.39693, 7.259119999999999, 7.43838, 6.47697, 7.1309, 6.77422, 6.2634, 6.739339999999999, 7.46737, 6.47697, 6.90575, 7.279319999999999, 6.815639999999999, 7.1309, 6.65028, 6.27099, 7.17012, 6.354369999999999, 6.29157, 6.802389999999999, 6.602589999999999, 6.47697, 6.63857, 6.58755, 6.77422, 6.907760000000001, 7.09589, 6.882439999999999, 5.45959, 6.05209, 7.67322, 6.85646, 5.8579300000000005, 5.78074, 6.2146099999999995, 7.2957399999999994, 5.84354, 6.802389999999999, 6.58064, 6.2634, 7.00307, 6.90575, 7.21891, 7.503839999999999, 6.45677, 6.950810000000001, 5.97126, 6.23048, 6.15273, 7.57558, 6.96035, 6.3716099999999996, 6.2146099999999995, 6.7334, 6.86066, 6.378430000000001, 6.48004, 7.00307, 6.8200199999999995, 6.47697, 6.90575, 7.39388, 7.4787300000000005, 6.2146099999999995, 6.802389999999999, 6.43775, 7.24065, 5.70378, 6.13773, 6.3952599999999995, 7.1025, 7.04752, 7.09008, 6.77992, 6.9256, 6.035480000000001, 7.22766, 7.475339999999999, 6.62007, 5.72031, 6.272880000000001, 6.01616, 6.27099, 7.91936, 6.2146099999999995, 6.85646, 6.354369999999999, 6.2634, 6.51471, 6.92166, 6.253830000000001, 5.9269300000000005, 6.745239999999999, 6.30992, 7.3651800000000005, 6.24998, 6.893660000000001, 6.53669, 6.43615, 7.04752, 6.30992, 6.39693, 6.1334, 6.765039999999999, 6.85646, 6.892639999999999, 6.95655, 5.99146, 6.43775, 6.90575, 6.81124, 6.966019999999999, 6.8865300000000005, 6.62007, 7.334980000000001, 6.72743, 6.93245, 7.27031, 7.03878, 7.0255399999999995, 6.83518, 6.77992, 6.68461, 7.696210000000001, 6.53669, 6.52942, 6.126869999999999, 6.54965, 6.715380000000001, 7.31122, 5.8693, 6.90575, 6.0282800000000005, 6.30992, 6.23245, 6.31536, 7.486610000000001, 6.52942, 6.8426800000000005, 6.14204, 6.88755, 6.62007, 6.34564, 6.44413, 6.62007, 5.99146, 6.93245, 7.37776, 6.907760000000001, 5.99146, 7.18917, 6.7093, 6.75926, 6.3315, 6.5439099999999994, 6.1717, 7.9459100000000005, 6.77422, 7.424760000000001, 6.45362, 5.70378, 6.43775, 6.90575, 7.6009, 6.90575, 7.46737, 6.694560000000001, 6.907760000000001, 8.16052, 6.98008, 6.984719999999999, 6.802389999999999, 5.99146, 6.802389999999999, 7.32647, 7.1309, 5.96101, 6.62007, 6.84055, 6.58617, 7.1309, 7.00307, 7.78322, 6.62007, 5.7525699999999995, 6.62407, 6.795710000000001, 7.212289999999999, 6.05209, 6.38856, 6.93925, 6.47697, 6.8773, 6.354369999999999, 7.9724699999999995, 7.64969, 6.703189999999999, 6.658010000000001, 6.47697, 6.50429, 6.58617, 6.893660000000001, 6.51471, 6.06611, 6.68461, 6.65544, 7.331060000000001, 6.64118, 6.47697, 7.475910000000001, 6.72743, 7.20786, 6.81124, 7.0201899999999995, 7.279319999999999, 8.02027, 6.80461, 5.99645, 7.10906, 6.40523, 6.77422, 7.01571, 6.54822, 6.14204, 6.57786, 6.47697, 7.24423, 5.93225, 5.9269300000000005, 7.46737, 6.69084, 6.47697, 6.85646, 6.88755, 7.24423, 6.2634, 6.95655, 6.67077, 6.85646, 7.313219999999999, 6.98008, 6.75577, 6.566669999999999, 7.09008, 6.697030000000001, 5.78383, 6.79794, 6.2634, 6.61874, 6.64118, 7.1309, 6.98101, 6.90575, 5.90263, 6.17794, 6.77422, 6.96035, 6.6515699999999995, 6.35957, 6.829789999999999, 6.66568, 7.09008, 6.10925, 6.85646, 6.90575, 6.95655, 6.126869999999999, 7.1309, 6.4552, 6.58617, 7.23778, 6.66568, 6.21261, 6.57925, 6.907760000000001, 6.802389999999999, 6.88755, 7.08171, 6.6567300000000005, 7.696210000000001, 6.68461, 6.43775, 6.802389999999999, 6.6592899999999995, 5.4161, 6.48311, 6.408530000000001, 6.84055, 7.17778, 6.2634, 6.4892, 6.62007, 6.95177, 6.785589999999999, 7.033510000000001, 7.1107, 6.57647, 6.85646, 6.23637, 6.530880000000001, 6.43775, 6.90575, 6.30992, 6.85646, 6.62007, 6.04025, 6.79122, 6.30992, 6.62007, 5.76832, 6.81014, 6.551080000000001, 6.56526, 6.551080000000001, 7.09008, 6.86693, 6.9613, 6.7901, 6.95655, 6.65286, 5.9814099999999994, 6.28227, 7.46737, 7.18007, 7.46737, 6.90575, 6.52209, 7.37776, 6.90575, 5.99146, 7.46737, 5.99146, 6.18826, 6.4552, 6.59987, 7.346010000000001, 6.68461, 7.6009, 7.14913, 7.27031, 6.317159999999999, 6.72503, 5.8861, 5.99146, 6.62007, 6.6871100000000006, 7.17012, 6.802389999999999, 5.93754, 6.995769999999999, 6.802389999999999, 6.52356, 6.55251, 6.56526, 6.72383, 7.09008, 6.68461, 6.52209, 7.313219999999999, 6.94698, 6.561030000000001, 6.907760000000001, 7.71869, 5.96615, 7.143619999999999, 6.41673, 6.907760000000001, 6.29157, 6.354369999999999, 7.00307, 6.802389999999999, 6.90375, 6.1944099999999995, 7.09008, 6.90575, 6.47697, 7.26193, 6.60665, 6.424869999999999, 6.745239999999999, 7.37776, 6.13773, 6.882439999999999, 6.907760000000001, 6.858569999999999, 6.745239999999999, 7.495539999999999, 7.1546199999999995, 6.68461, 6.2804, 6.6592899999999995, 6.77422, 6.893660000000001, 6.86693, 7.408530000000001, 6.72743, 6.42972, 6.633319999999999, 7.0579, 6.68461, 7.185389999999999, 7.26543, 7.05099, 6.10925, 6.60123, 7.233460000000001, 6.90575, 6.77194, 6.6567300000000005, 6.3243599999999995, 6.55393, 6.90575, 6.10925, 6.9613, 6.90575, 6.907760000000001, 6.90975, 7.64969, 7.1309, 6.745239999999999, 5.99146, 6.354369999999999, 5.4161, 6.55536, 6.02102, 6.7334, 6.47697, 6.47697, 6.53669, 6.95655, 6.551080000000001, 6.16331, 7.6009, 6.90575, 7.17242, 6.3421199999999995, 6.9196800000000005, 6.51471, 7.24423, 6.85646, 6.551080000000001, 6.86693, 6.35611, 6.90575, 6.34914, 7.696210000000001, 7.17012, 6.802389999999999, 6.253830000000001, 6.90575, 6.48464, 6.49224, 6.82763, 6.90575, 7.014810000000001, 6.2634, 7.04752, 6.90575, 7.20786, 7.02997, 7.803839999999999, 6.31355, 6.89467, 6.829789999999999, 7.17012, 7.54961, 7.28207, 6.69084, 7.1929300000000005, 6.33328, 5.84354, 6.85646, 6.912739999999999, 6.80017, 6.97635, 6.2653, 6.07535, 7.1309, 7.17012, 6.59715, 7.0884100000000005, 6.77992, 7.16627, 6.19644, 6.39693, 5.9814099999999994, 6.90575, 6.90575, 6.6958, 5.01728, 7.279319999999999, 7.136480000000001, 6.608, 6.68461, 7.9831, 6.9828600000000005, 6.30992, 6.2146099999999995, 7.09506, 6.44572, 6.2634, 6.90575, 6.90575, 7.08339, 5.96615, 6.9622399999999995, 7.11233, 6.912739999999999, 6.68461, 6.85646, 6.8254600000000005, 7.346010000000001, 6.68085, 7.24423, 6.8426800000000005, 6.62007, 6.1070199999999994, 6.33328, 6.15698, 6.893660000000001, 6.43775, 6.30262, 6.253830000000001, 7.30317, 6.829789999999999, 6.56808, 6.36303, 7.20786, 6.752269999999999, 6.95655, 6.02102, 6.633319999999999, 6.2634, 7.183110000000001, 6.907760000000001, 6.6174, 7.43838, 6.45047, 6.9707300000000005, 6.3952599999999995, 7.09008, 6.49979, 6.94986, 7.06902, 6.68461, 7.22766, 6.68461, 7.1309, 6.975410000000001, 6.2672, 6.50279, 6.551080000000001, 6.59987, 6.7334, 6.16331, 6.2146099999999995, 6.95655, 6.694560000000001, 6.44572, 6.6783399999999995, 7.408530000000001, 7.09008, 6.614730000000001, 6.72743, 6.17379, 7.03615, 6.05209, 6.6280399999999995, 6.83518, 7.09008, 6.63857, 6.17794, 6.551080000000001, 6.30992, 7.07834, 6.39693, 6.57228, 7.346010000000001, 6.938280000000001, 6.715380000000001, 6.7511, 6.715380000000001, 6.58617, 5.59842, 6.3935900000000006, 7.26193, 6.49072, 6.829789999999999, 6.745239999999999, 6.721430000000001, 6.59715, 6.00389, 6.9828600000000005, 6.62007, 6.85646, 7.04752, 6.23441, 6.551080000000001, 6.63726, 6.14633, 6.563860000000001, 6.73102, 6.2634, 6.3243599999999995, 6.721430000000001, 6.6796, 7.062189999999999, 6.10925, 7.313219999999999, 6.34564, 6.561030000000001, 6.17379, 7.06987, 6.87626, 6.505780000000001, 6.745239999999999, 6.966019999999999, 6.4488900000000005, 7.1309, 6.68461, 6.575080000000001, 6.40192, 6.70073, 6.56808, 6.7334, 6.30992, 7.0775, 6.6796, 6.8384100000000005, 7.03615, 6.85751, 6.745239999999999, 7.313219999999999, 6.86693, 7.08171, 6.85646, 6.47697, 6.47697, 6.28972, 7.46737, 7.2724, 6.61874, 6.30079, 7.0255399999999995, 6.27099, 6.90575, 6.34564, 6.9828600000000005, 7.450080000000001, 6.224559999999999, 6.551080000000001, 6.551080000000001, 6.23441, 6.77422, 7.1309, 6.52209, 7.49332, 6.39192, 6.739339999999999, 7.4832399999999994, 6.16331, 6.68461, 6.90575, 6.715380000000001, 6.90575, 7.1309, 6.86171, 6.715380000000001, 5.70378, 6.551080000000001, 6.802389999999999, 6.33683, 6.9187, 7.0579, 6.35611, 7.02376, 5.4161, 5.5797300000000005, 6.90575, 6.82655, 6.90575, 5.9269300000000005, 7.42833, 5.87212, 6.463030000000001, 7.52833, 6.86797, 6.95655, 6.60665, 6.90575, 6.4677, 7.3651800000000005, 6.748760000000001, 6.77992, 6.975410000000001, 7.43838, 7.82405, 6.5439099999999994, 6.42162, 6.8844899999999996, 7.16085, 6.52209, 6.04025, 5.52146, 6.90575, 7.00307, 6.907760000000001, 6.817830000000001, 7.279319999999999, 6.907760000000001, 7.54961, 7.323169999999999, 6.90575, 6.41017, 6.90575, 6.787839999999999, 6.62007, 7.0967199999999995, 5.9269300000000005, 6.55393, 7.0255399999999995, 6.17379, 7.00307, 7.31122, 7.31122, 6.31355, 6.44572, 6.59578, 6.47697, 7.226210000000001, 6.62007, 6.69332, 6.7511, 6.77422, 7.09008, 5.8579300000000005, 7.183110000000001, 7.728860000000001, 6.54965, 7.04752, 7.25488, 6.9256, 6.907760000000001, 5.65249, 7.041410000000001, 6.4599, 6.96035, 7.1333, 6.99942, 6.38012, 7.200419999999999, 7.18007, 7.1309, 6.461469999999999, 6.85646, 7.17012, 7.03527, 6.19848, 6.62007, 7.313219999999999, 6.907760000000001, 6.90575, 6.05209, 7.1452, 6.02102, 5.82895, 6.33683, 6.04025, 6.2146099999999995, 7.8935699999999995, 6.34564, 6.64249, 6.8977, 6.3699, 6.6567300000000005, 6.813439999999999, 6.53669, 6.90575, 6.47697, 6.05209, 7.21524, 6.551080000000001, 6.66568, 6.57925, 6.2146099999999995, 6.8426800000000005, 6.907760000000001, 6.90575, 7.106610000000001, 6.424869999999999, 6.65415, 6.86693, 6.745239999999999, 6.88346, 6.53669, 6.3207699999999996, 7.696210000000001, 7.64779, 7.313219999999999, 6.95655, 5.95584, 6.715380000000001, 6.44254, 6.8966899999999995, 6.61338, 6.8426800000000005, 6.23245, 6.95655, 6.768489999999999, 7.3981699999999995, 6.68461, 7.12287, 6.813439999999999, 6.752269999999999, 6.551080000000001, 6.86066, 6.7334, 6.318969999999999, 6.79122, 5.95324, 6.745239999999999, 7.1309, 6.54103, 7.06048, 6.24222, 6.68461, 6.9177100000000005, 6.05209, 6.78672, 7.09008, 7.1309, 6.47697, 7.1025, 5.9814099999999994, 7.24423, 6.44254, 7.451239999999999, 7.198180000000001, 7.27101, 7.245660000000001, 6.51471, 7.279319999999999, 6.85646, 7.279319999999999, 7.67322, 6.76273, 6.82437, 6.47697, 6.885510000000001, 7.07918, 7.279319999999999, 7.1309, 6.966019999999999, 6.73102, 6.633319999999999, 7.00307, 5.940169999999999, 7.6009, 6.907760000000001, 6.32615, 6.508769999999999, 6.551080000000001, 7.0884100000000005, 6.829789999999999, 7.31986, 6.21661, 7.11802, 6.77422, 7.26193, 6.90575, 7.17012, 7.00307, 5.99146, 7.46737, 6.57786, 6.3081, 6.90575, 6.311730000000001, 6.39693, 6.95655, 6.62007, 6.3952599999999995, 7.04752, 6.48311, 6.50429, 6.39693, 6.90575, 6.60665, 6.90575, 6.318969999999999, 6.802389999999999, 6.70441, 6.51471, 6.77992, 6.68461, 6.29157, 6.40523, 6.18826, 7.24423, 6.83518, 7.09008, 7.84502, 7.1624, 6.813439999999999, 6.907760000000001, 6.68461, 6.14633, 7.17012, 6.53814, 6.2146099999999995, 6.882439999999999, 6.36647, 6.47697, 7.54697, 6.60665, 6.68461, 7.408530000000001, 7.2724, 6.46614, 6.90575, 6.95655, 5.7462, 6.36303, 7.20786, 7.04752, 7.04316, 6.551080000000001, 6.58064, 6.17379, 6.83195, 6.8533, 5.70378, 7.20786, 6.62007, 6.95655, 6.90575, 6.34564, 7.09008, 7.014810000000001, 6.73815, 6.65028, 7.03878, 6.10032, 7.266830000000001, 6.95655, 6.58617, 7.20786, 6.68461, 6.602589999999999, 6.551080000000001, 6.87626, 5.16479, 7.54961, 6.551080000000001, 6.84055, 6.49224, 6.58893, 5.2983199999999995, 6.60665, 6.907760000000001, 7.64969, 6.9177100000000005, 6.18415, 6.68461, 7.43838, 6.66441, 6.551080000000001, 5.99146, 6.41182, 6.43775, 6.10925, 6.43775, 6.4599, 7.00307, 5.99146, 6.852239999999999, 6.51175, 6.5439099999999994, 6.6515699999999995, 7.522939999999999, 6.16331, 6.551080000000001, 6.907760000000001, 7.04752, 6.44572, 6.3243599999999995, 6.41346, 6.551080000000001, 6.802389999999999, 6.62007, 6.5439099999999994, 6.57925, 6.38012, 6.4151, 6.52209, 6.29157, 6.2146099999999995, 6.97167, 6.75926, 6.73102, 6.66823, 7.37776, 7.1309, 6.90575, 6.10925, 7.408530000000001, 6.39693, 6.04025, 7.0396600000000005, 7.09589, 7.10003, 6.73102, 6.87523, 6.90575, 7.20786, 7.173960000000001, 6.90575, 6.47389, 6.99026, 7.0884100000000005, 6.206580000000001, 6.56526, 6.44572, 6.802389999999999, 6.551080000000001, 6.53379, 6.90575, 6.46614, 6.61338, 6.90575, 6.85646, 6.47389, 6.10925, 6.99118, 6.2441699999999996, 7.1592899999999995, 6.697030000000001, 6.90575, 6.59987, 7.01571, 6.42162, 6.716589999999999, 6.85646, 7.46737, 6.58617, 6.95655, 6.29157, 6.907760000000001, 6.46459, 6.62007, 6.95177, 6.58617, 6.50129, 6.2952699999999995, 6.85646, 6.15698, 6.90575, 7.6009, 7.00307, 6.17379, 6.15273, 7.01392, 6.62007, 7.346010000000001, 6.90575, 6.68461, 6.50429, 7.24423, 7.0942300000000005, 5.78383, 6.54535, 6.3716099999999996, 7.86327, 6.62007, 7.09008, 6.703189999999999, 6.354369999999999, 6.53233, 6.58617, 7.46737, 6.9622399999999995, 6.39693, 6.38012, 6.802389999999999, 6.43935, 7.044910000000001, 6.42162, 6.90575, 6.802389999999999, 6.44413, 7.127689999999999, 6.45677, 6.40192, 6.55393, 6.593039999999999, 7.06902, 6.59987, 6.802389999999999, 6.715380000000001, 6.715380000000001, 6.39693, 6.57786, 6.68461, 7.00307, 6.42972, 6.85435, 6.58893, 6.937310000000001, 6.2106, 6.708080000000001, 6.0845, 6.907760000000001, 6.16331, 6.43775, 6.2146099999999995, 6.2441699999999996, 6.74406, 6.85646, 6.73221, 5.72031, 6.13123, 7.54961, 6.37673, 6.90575, 6.62007, 6.768489999999999, 6.63595, 5.82895, 6.90575, 6.75577, 6.77194, 6.77422, 6.99485, 6.58617, 5.8999, 6.2146099999999995, 6.2146099999999995, 6.6567300000000005, 6.62007, 6.9489, 7.354360000000001, 7.279319999999999, 5.8861, 6.6592899999999995, 7.06305, 6.61338, 7.00307, 6.49224, 6.84588, 6.35611, 6.35611, 6.8977, 7.20786, 6.90575, 7.59287, 7.1309, 7.393260000000001, 6.95655, 6.834110000000001, 6.07993, 7.10988, 6.802389999999999, 6.224559999999999, 6.57925, 6.927560000000001, 6.90575, 7.09008, 7.1309, 6.90575, 6.907760000000001, 6.16542, 6.62007, 7.6009, 6.963189999999999, 6.95655, 6.90575, 6.90575, 6.796819999999999, 6.66568, 6.907760000000001, 6.8533, 6.813439999999999, 7.196689999999999, 6.43615, 6.9147300000000005, 6.551080000000001, 6.77194, 6.90575, 6.90575, 6.66823, 6.47697, 7.0255399999999995, 7.522939999999999, 6.62007, 6.354369999999999, 7.1546199999999995, 6.90575, 6.551080000000001, 5.78383, 6.753439999999999, 6.77422, 7.313219999999999, 6.967910000000001, 6.816739999999999, 7.6009, 6.745239999999999, 6.51471, 7.37588, 6.86485, 6.41346, 6.7093, 6.551080000000001, 6.22654, 7.24423, 6.06146, 6.16331, 7.05359, 6.86171, 6.58617, 7.1309, 6.77422, 7.93737, 6.39693, 6.58617, 7.67322, 6.551080000000001, 6.2146099999999995, 6.77422, 6.2634, 6.99485, 6.45047, 6.66185, 6.94119, 6.90575, 7.21891, 7.57558, 7.495539999999999, 6.10925, 6.59715, 7.09008, 6.03787, 6.556780000000001, 6.354369999999999, 7.6009, 6.83303, 6.551080000000001, 7.279319999999999, 6.354369999999999, 7.925160000000001, 6.77422, 7.183110000000001, 6.1136800000000004, 6.77992, 6.62007, 7.00307, 7.86327, 6.70073, 6.795710000000001, 7.1309, 6.32794, 6.16121, 5.6801699999999995, 6.65286, 6.802389999999999, 6.715380000000001, 6.95655, 6.78333, 6.90575, 6.67582, 6.47697, 6.907760000000001, 6.90575, 6.53233, 6.882439999999999, 7.0255399999999995, 6.23048, 6.715380000000001, 7.872839999999999, 6.49072, 6.90575, 6.4892, 6.63726, 6.12249, 6.3613, 6.79122, 6.53233, 6.05209, 6.907760000000001, 6.697030000000001, 6.8742, 6.08677, 6.6280399999999995, 6.907760000000001, 6.05209, 5.70378, 7.02997, 6.715380000000001, 6.2146099999999995, 6.90575, 7.313219999999999, 6.3699, 6.07074, 6.77992, 6.54822, 6.62007, 6.59987, 6.62007, 6.8966899999999995, 6.802389999999999, 6.7226300000000005, 6.07993, 6.51026, 6.907760000000001, 6.50429, 6.47697, 6.58617, 6.77422, 6.8977, 5.9135, 6.17379, 8.047189999999999, 6.93537, 6.2146099999999995, 6.507280000000001, 7.46737, 5.82895, 7.034389999999999, 6.7569300000000005, 7.2998, 6.95655, 6.17794, 6.68461, 7.495539999999999, 6.62007, 6.88755, 6.45205, 6.802389999999999, 6.32794, 6.68461, 8.03916, 6.829789999999999, 6.6745600000000005, 6.714169999999999, 6.43775, 5.4161, 7.00307, 6.43455, 6.90575, 7.346660000000001, 6.9256, 7.6009, 7.10988, 7.24423, 6.7569300000000005, 6.48004, 6.889589999999999, 7.313219999999999, 6.9256, 6.59167, 6.57786, 6.53669, 6.39693, 6.33328, 6.33328, 7.313219999999999, 6.551080000000001, 7.408530000000001, 6.802389999999999, 7.3908, 6.90575, 6.9256, 6.95655, 6.13123, 6.551080000000001, 7.06561, 6.57925, 6.90575, 6.73102, 7.09008, 6.566669999999999, 6.9966800000000005, 6.43775, 6.62007, 6.68461, 6.424869999999999, 6.646389999999999, 6.2146099999999995, 6.802389999999999, 6.90575, 6.9613, 5.70378, 6.78672, 6.65286, 7.24423, 7.09008, 6.602589999999999, 6.42162, 7.0422899999999995, 7.034389999999999, 6.59987, 6.44572, 6.20456, 6.57925, 6.38012, 6.16331, 7.43838, 6.818919999999999, 6.551080000000001, 6.53669, 6.95655, 5.76832, 7.2100800000000005, 6.48311, 6.507280000000001, 6.45362, 6.765039999999999, 6.2634, 6.2691, 7.18917, 6.2146099999999995, 6.802389999999999, 6.50129, 6.2634, 7.38647, 6.96885, 6.10925, 7.196689999999999, 6.3403599999999996, 6.818919999999999, 6.72623, 6.90575, 7.04752, 6.7569300000000005, 6.62936, 7.09008, 6.62007, 5.9839400000000005, 6.95655, 7.49332, 6.62007, 6.31355, 6.62007, 6.753439999999999, 6.77422, 6.2653, 7.495539999999999, 6.7334, 6.95655, 6.56526, 6.88755, 7.47307, 6.47697, 6.90575, 6.90575, 7.909860000000001, 6.69084, 6.3716099999999996, 6.52209, 7.106610000000001, 6.40523, 6.69084, 5.627619999999999, 6.6567300000000005, 6.68461, 6.697030000000001, 6.22654, 7.740660000000001, 6.907760000000001, 6.43775, 6.43775, 6.813439999999999, 5.76832, 6.9256, 7.64969, 6.47697, 6.10925, 7.1309, 5.89715, 6.907760000000001, 6.745239999999999, 6.43775, 6.85646, 6.77422, 6.768489999999999, 7.029089999999999, 6.62007, 7.06133, 7.24423, 6.95177, 7.54961, 6.354369999999999, 6.87626, 6.318969999999999, 6.570880000000001, 6.62007, 7.61332, 7.09008, 6.7511, 6.8977, 6.551080000000001, 7.40914, 7.034389999999999, 6.49072, 6.30992, 5.70378, 6.55393, 6.72743, 6.05209, 7.0967199999999995, 6.90575, 6.551080000000001, 6.907760000000001, 6.785589999999999, 6.39693, 6.05209, 6.90575, 6.697030000000001, 6.814539999999999, 6.639880000000001, 6.62007, 7.24423, 6.77194, 6.551080000000001, 6.802389999999999, 5.8999, 6.57228, 7.062189999999999, 6.47697, 6.2441699999999996, 6.829789999999999, 6.95655, 6.907760000000001, 6.38012, 7.293019999999999, 6.91175, 6.68461, 6.45834, 6.556780000000001, 6.5582, 6.91175, 6.45362, 7.1309, 6.8773, 6.955589999999999, 7.80588, 6.9613, 5.4161, 6.907760000000001, 6.90575, 7.18992, 7.507689999999999, 6.90575, 6.385190000000001, 7.31122, 6.6107, 6.807930000000001, 6.79794, 6.1717, 6.16331, 6.6592899999999995, 7.0483899999999995, 6.598510000000001, 5.5797300000000005, 7.6009, 6.09131, 7.106610000000001, 6.90575, 7.66153, 7.22548, 6.48768, 6.87213, 7.17012, 6.23245, 6.39693, 6.4677, 7.35244, 7.183110000000001, 6.56948, 8.00637, 7.05272, 6.33328, 6.90575, 6.802389999999999, 6.30992, 6.551080000000001, 6.10925, 6.77422, 6.30992, 7.522939999999999, 6.49979, 6.802389999999999, 7.05704, 7.16858, 6.802389999999999, 6.58617, 6.551080000000001, 7.20564, 6.551080000000001, 7.1507, 6.852239999999999, 7.6009, 6.70564, 5.7525699999999995, 6.90575, 6.802389999999999, 6.11147, 6.95655, 6.84375, 6.95655, 6.8977, 7.34923, 6.93245, 6.34564, 6.79122, 7.03878, 7.400010000000001, 5.8579300000000005, 7.37588, 6.83195, 7.00307, 6.84162, 6.354369999999999, 6.93342, 6.608, 6.85646, 6.61607, 6.056780000000001, 6.90575, 6.697030000000001, 6.5395900000000005, 6.6120399999999995, 6.63726, 7.1309, 6.739339999999999, 7.86327, 6.55393, 6.47697, 6.7511, 6.907760000000001, 6.05912, 6.54535, 6.551080000000001, 7.00307, 6.51471, 6.57925, 6.66823, 7.71869, 5.52146, 7.1309, 6.551080000000001, 6.44572, 7.00307, 6.253830000000001, 7.401839999999999, 5.99146, 7.2724, 6.907760000000001, 6.90575, 6.3315, 6.3699, 6.39693, 7.82405, 6.95655, 6.09582, 6.07535, 6.90575, 6.8426800000000005, 7.0518600000000005, 6.993930000000001, 6.907760000000001, 6.79122, 6.7511, 6.2146099999999995, 6.78897, 6.67203, 7.259119999999999, 7.6811, 6.745239999999999, 7.27031, 6.721430000000001, 6.90575, 6.563860000000001, 6.99485, 7.37776, 7.06048, 7.6009, 6.30992, 6.84375, 7.0282, 6.66696, 6.90575, 6.47235, 6.56244, 8.0229, 6.90575, 6.6592899999999995, 6.80351, 6.92658, 6.4892, 6.28227, 7.06902, 6.08677, 5.958419999999999, 7.1309, 5.68698, 6.62007, 6.33683, 6.984719999999999, 6.753439999999999, 6.354369999999999, 6.52209, 6.52209, 7.362010000000001, 6.8200199999999995, 6.73102, 6.39693, 6.8773, 6.507280000000001, 7.313219999999999, 6.81014, 6.802389999999999, 6.49072, 7.46737, 6.82437, 6.745239999999999, 6.11147, 6.2634, 7.181589999999999, 6.551080000000001, 7.05618, 6.29157, 7.2998, 5.86079, 6.51619, 6.56948, 6.937310000000001, 5.83188, 6.9256, 6.90575, 6.10925, 6.39693, 7.09008, 6.82437, 6.753439999999999, 6.966019999999999, 6.802389999999999, 7.239210000000001, 6.5582, 6.907760000000001, 6.98008, 6.62407, 5.70378, 6.551080000000001, 6.41673, 7.313219999999999, 6.62007, 6.84588, 6.95655, 6.42162, 6.68461, 6.715380000000001, 6.85646, 6.57786, 5.8579300000000005, 6.2146099999999995, 7.313219999999999, 7.37776, 6.07993, 6.30992, 7.1309, 6.69084, 6.70564, 5.7462, 6.16752, 7.279319999999999, 6.73102, 6.53669, 6.24222, 7.03527, 7.04752, 6.507280000000001, 6.93049, 6.59715, 7.09008, 6.45047, 6.33328, 6.68461, 6.62007, 6.6592899999999995, 6.90575, 7.04752, 6.30992, 7.43838, 6.6346300000000005, 6.59167, 6.1181, 6.41836, 7.2724, 6.56526, 6.90575, 7.91936, 6.54103, 6.90575, 7.57558, 6.20456, 6.802389999999999, 6.899719999999999, 7.484369999999999, 6.90575, 6.51471, 5.7462, 6.39693, 6.94698, 7.084230000000001, 6.96885, 6.907760000000001, 7.00307, 7.293019999999999, 7.173189999999999, 6.77422, 6.815639999999999, 6.43294, 6.813439999999999, 6.90575, 6.88857, 6.90575, 7.09008, 6.90575, 7.226210000000001, 5.76832, 5.70378, 7.279319999999999, 6.05912, 6.68461, 6.6592899999999995, 7.91936, 6.507280000000001, 7.00307, 6.47697, 6.551080000000001, 6.90575, 6.2146099999999995, 6.907760000000001, 6.715380000000001, 6.96885, 6.68461, 6.57368, 6.745239999999999, 6.53669, 5.76832, 6.2146099999999995, 6.8426800000000005, 7.520230000000001, 5.5797300000000005, 6.51323, 7.1082399999999994, 6.5582, 7.17012, 6.768489999999999, 6.39693, 7.393260000000001, 6.6958, 6.39693, 6.95177, 6.2146099999999995, 7.09008, 6.5582, 7.09008, 6.9613, 6.4892, 7.676010000000001, 6.715380000000001, 5.70378, 6.907760000000001, 6.3935900000000006, 7.54961, 6.86171, 5.79606, 6.83087, 6.6783399999999995, 6.54535, 6.593039999999999, 6.77422, 6.44572, 7.04752, 6.3716099999999996, 7.37776, 7.17012, 6.8426800000000005, 7.00307, 6.126869999999999, 6.50129, 6.8773, 6.56526, 6.354369999999999, 6.96885, 6.575080000000001, 6.62007, 6.42811, 6.752269999999999, 6.90575, 6.78672, 7.1309, 8.12089, 6.829789999999999, 7.00307, 6.2146099999999995, 6.1944099999999995, 7.740660000000001, 6.551080000000001, 6.907760000000001, 6.2146099999999995, 6.96979, 6.68461, 7.14283, 6.139880000000001, 7.1293, 6.89467, 5.43808, 6.621410000000001, 7.183110000000001, 6.5467900000000006, 6.34388, 6.39024, 7.0255399999999995, 6.424869999999999, 6.68461, 6.49979, 7.37776, 6.7901, 6.17379, 6.4488900000000005, 6.614730000000001, 6.802389999999999, 6.60665, 7.09008, 6.51323, 6.93245, 6.6592899999999995, 6.30992, 6.30992, 6.7226300000000005, 7.37776, 6.09807, 6.8977, 6.35784, 6.37502, 6.57925, 7.7021, 7.46737, 7.6009, 7.36455, 6.59715, 6.639880000000001, 6.36303, 5.82895, 6.59715, 6.62007, 6.551080000000001, 7.09008, 6.78333, 6.563860000000001, 7.0076, 6.880380000000001, 6.745239999999999, 6.82437, 6.4677, 7.127689999999999, 7.1309, 6.62007, 7.82084, 7.288930000000001, 6.72743, 6.39693, 6.68461, 7.10988, 6.563860000000001, 6.354369999999999, 6.7546, 7.196689999999999, 5.99146, 6.74052, 7.24423, 6.67203, 6.86485, 7.1309, 7.6009, 6.6107, 7.24423, 6.9256, 7.11314, 6.86693, 6.85118, 6.58617, 6.85646, 5.70378, 6.2146099999999995, 6.92363, 5.67675, 6.84588, 6.86171, 6.813439999999999, 6.62936, 6.50279, 5.7589, 6.7417, 7.18917, 6.2146099999999995, 6.93245, 6.78897, 6.74759, 7.00307, 6.3935900000000006, 7.09008, 7.84385, 6.802389999999999, 6.57647, 6.78672, 6.39693, 6.9707300000000005, 8.3082, 7.1309, 7.17012, 6.593039999999999, 6.90575, 6.62007, 6.86693, 6.259580000000001, 6.41999, 6.90575, 5.52146, 6.907760000000001, 7.43838, 6.64509, 7.09008, 6.39693, 7.0255399999999995, 7.903969999999999, 6.745239999999999, 6.80461, 7.037030000000001, 7.04752, 6.08904, 6.47697, 6.65286, 6.76388, 6.90575, 6.802389999999999, 6.87626, 6.90575, 7.1507, 7.07834, 7.21082, 6.52942, 6.701960000000001, 6.8426800000000005, 6.3207699999999996, 6.69827, 6.24611, 6.57786, 6.18826, 6.975410000000001, 7.16085, 6.30992, 6.83303, 7.61874, 6.48158, 5.99146, 6.44095, 6.99485, 6.907760000000001, 6.8384100000000005, 6.79122, 6.551080000000001, 6.6695, 7.279319999999999, 6.57925, 6.813439999999999, 6.30992, 6.68461, 6.47389, 6.802389999999999, 6.785589999999999, 6.45362, 7.313219999999999, 6.551080000000001, 7.29097, 5.8861, 6.98008, 6.802389999999999, 7.20786, 6.802389999999999, 6.983789999999999, 6.75926, 6.68461, 6.55962, 6.8977, 6.05912, 6.90575, 7.4570300000000005, 7.1309, 6.566669999999999, 6.829789999999999, 6.85646, 6.643789999999999, 6.77422, 7.90101, 6.32794, 6.25767, 7.81883, 6.966019999999999, 6.33328, 6.2146099999999995, 6.77422, 6.8384100000000005, 6.62007, 6.813439999999999, 6.551080000000001, 6.920669999999999, 7.195189999999999, 6.62007, 6.745239999999999, 6.3315, 6.69332, 6.745239999999999, 6.90575, 7.0396600000000005, 6.90575, 5.8260000000000005, 6.07535, 6.30992, 6.96885, 6.47697, 6.39693, 7.24423, 7.12367, 7.17012, 6.60394, 6.18415, 6.68461, 6.44413, 6.4677, 6.72623, 6.2146099999999995, 6.47697, 6.907760000000001, 6.4552, 7.1546199999999995, 7.37776, 7.18917, 6.10925, 6.5903, 7.136480000000001, 5.95584, 7.03878, 6.461469999999999, 6.697030000000001, 5.9839400000000005, 6.66568, 6.2146099999999995, 6.56526, 6.51471, 5.61677, 6.49375, 7.06048, 6.715380000000001, 6.10925, 6.95655, 7.1309, 6.95655, 6.90575, 6.76273, 6.311730000000001, 7.1507, 7.00307, 6.29157, 6.86693, 6.68461, 6.90575, 6.95655, 7.17012, 7.0255399999999995, 6.86171, 7.495539999999999, 6.49224, 6.90575, 6.8865300000000005, 7.57353, 6.602589999999999, 6.85646, 6.30992, 6.23048, 6.5467900000000006, 6.530880000000001, 6.802389999999999, 7.6009, 6.55962, 6.46459, 6.834110000000001, 7.313219999999999, 6.802389999999999, 6.7334, 6.66441, 7.251339999999999, 5.87774, 6.802389999999999, 7.43838, 6.35957, 6.43775, 6.5820300000000005, 6.768489999999999, 7.17012, 6.68461, 5.6733199999999995, 6.90575, 7.281389999999999, 7.17702, 6.90575, 6.95845, 6.44572, 6.583410000000001, 6.91672, 6.90575, 8.229510000000001, 7.027310000000001, 6.551080000000001, 6.84055, 7.136480000000001, 6.71174, 6.787839999999999, 6.74288, 7.0934, 7.200419999999999, 6.83087, 7.37776, 6.79122, 6.67203, 6.55393, 6.39693, 7.46737, 6.802389999999999, 7.165489999999999, 6.62007, 6.90575, 7.0255399999999995, 7.70661, 6.47389, 6.35957, 6.07535, 6.907760000000001, 7.1107, 6.593039999999999, 6.30992, 7.20786, 6.43775, 6.556780000000001, 6.83518, 6.77878, 6.966019999999999, 6.95273, 6.3716099999999996, 6.43133, 6.907760000000001, 6.68461, 6.64898, 6.28972, 7.00307, 6.2146099999999995, 6.66058, 6.967910000000001, 7.016610000000001, 6.68461, 7.09008, 6.85646, 6.90575, 5.66988, 7.09008, 6.53379, 6.84801, 6.90575, 5.99146, 7.21891, 6.90575, 6.745239999999999, 7.07242, 7.6009, 6.817830000000001, 6.23637, 7.346010000000001, 6.6592899999999995, 7.46737, 6.975410000000001, 6.79122, 6.719010000000001, 6.720219999999999, 6.90575, 6.90575, 6.68336, 6.892639999999999, 6.86485, 6.947939999999999, 6.955589999999999, 6.90575, 5.78383, 6.551080000000001, 5.66988, 7.0255399999999995, 7.04752, 6.3935900000000006, 6.807930000000001, 6.74288, 6.802389999999999, 6.4599, 6.354369999999999, 6.18208, 7.398789999999999, 7.37776, 7.35883, 6.47697, 7.18463, 6.745239999999999, 7.05876, 6.694560000000001, 6.84588, 6.68461, 7.64969, 6.59578, 7.027310000000001, 6.715380000000001, 6.04025, 5.84644, 6.2146099999999995, 6.507280000000001, 6.23441, 7.098380000000001, 6.2804, 7.6256, 6.633319999999999, 6.6346300000000005, 7.195189999999999, 6.43455, 6.52649, 6.49527, 6.51915, 7.54961, 7.09008, 7.00307, 6.36475, 5.7462, 6.77422, 6.10925, 6.73459, 7.1293, 6.49224, 6.28413, 7.17012, 6.90575, 6.6515699999999995, 6.56948, 6.80461, 6.03787, 7.313219999999999, 6.11589, 6.68461, 6.72743, 7.09008, 5.96615, 8.26873, 6.17794, 6.3935900000000006, 7.12287, 6.43775, 5.95324, 6.6796, 6.758089999999999, 6.68461, 5.70378, 6.90575, 7.495539999999999, 6.84588, 6.745239999999999, 6.21261, 7.251339999999999, 6.10032, 8.048789999999999, 7.313219999999999, 6.802389999999999, 6.745239999999999, 6.907760000000001, 6.90575, 5.82305, 6.90575, 7.17012, 6.2441699999999996, 8.08641, 5.59842, 7.08171, 6.9594, 6.97354, 7.30653, 6.55962, 6.58617, 6.74406, 7.56008, 6.1944099999999995, 7.408530000000001, 6.61338, 6.01616, 6.32794, 7.18007, 6.74052, 6.95655, 6.58617, 6.66568, 6.85646, 6.44572, 7.313219999999999, 7.1309, 5.99146, 6.18826, 5.59842, 6.49224, 6.821110000000001, 6.56526, 6.47697, 6.813439999999999, 7.43838, 7.2717, 6.30262, 6.38351, 6.551080000000001, 5.45959, 6.43775, 6.90575, 6.53233, 6.61874, 6.06843, 6.1203, 7.88231, 6.90575, 6.7569300000000005, 5.7651900000000005, 6.938280000000001, 7.08255, 6.41346, 6.882439999999999, 7.37776, 6.44413, 6.90575, 6.51471, 7.2998, 6.5439099999999994, 6.551080000000001, 6.90575, 7.35372, 7.135689999999999, 7.46737, 6.63595, 6.802389999999999, 7.346010000000001, 6.90575, 6.86693, 7.1309, 5.78383, 6.829789999999999, 6.65286, 6.7334, 7.2998, 6.65415, 6.9256, 6.90575, 6.39693, 6.52209, 6.3699, 6.770789999999999, 6.39693, 6.49072, 6.02345, 7.32251, 6.13123, 6.29711, 7.04752, 6.799060000000001, 6.272880000000001, 6.354369999999999, 6.49527, 6.57925, 6.697030000000001, 5.52146, 6.703189999999999, 7.04752, 6.65286, 6.752269999999999, 6.2146099999999995, 6.42162, 6.90575, 7.014810000000001, 6.62007, 6.85646, 6.745239999999999, 6.9256, 6.58617, 6.51471, 5.96615, 6.90575, 6.52942, 6.16331, 6.56526, 6.813439999999999, 7.09008, 5.8141300000000005, 6.49979, 6.769639999999999, 6.08677, 6.7369699999999995, 7.064760000000001, 6.01616, 7.11883, 6.48158, 6.51175, 7.46737, 6.57228, 6.551080000000001, 7.67322, 6.35957, 6.907760000000001, 6.58617, 7.1309, 6.57925, 6.43294, 6.39693, 7.46737, 6.95655, 6.54247, 6.3716099999999996, 7.293019999999999, 6.08677, 7.64969, 6.95655, 8.13153, 6.3613, 6.10925, 6.551080000000001, 6.907760000000001, 6.97261, 6.907760000000001, 6.43775, 6.3243599999999995, 6.83518, 6.993930000000001, 6.6567300000000005, 6.984719999999999, 7.062189999999999, 6.907760000000001, 6.77992, 7.195189999999999, 7.185389999999999, 6.07993, 6.01616, 6.72743, 6.33683, 6.70073, 7.20786, 7.0103100000000005, 6.551080000000001, 7.1309, 6.7334, 7.495539999999999, 6.24028, 6.354369999999999, 6.90575, 6.551080000000001, 7.00307, 6.85013, 7.0255399999999995, 6.39693, 7.495539999999999, 6.768489999999999, 6.23441, 6.461469999999999, 6.5395900000000005, 6.907760000000001, 6.05209, 6.28413, 6.126869999999999, 7.12287, 6.745239999999999, 7.21744, 6.39693, 6.49072, 6.47697, 6.05209, 7.24423, 6.802389999999999, 7.09008, 6.44572, 7.00307, 6.966019999999999, 6.721430000000001, 6.62936, 6.813439999999999, 6.28227, 7.64969, 6.9575, 7.3696, 6.461469999999999, 6.90575, 7.20786, 6.78333, 6.57647, 6.5903, 7.00307, 6.74993, 6.57925, 6.907760000000001, 7.18917, 6.16331, 6.59578, 6.802389999999999, 6.272880000000001, 7.014810000000001, 6.2146099999999995, 6.43615, 6.64509, 6.608, 6.68461, 6.58617, 6.62007, 6.19032, 7.00307, 6.95655, 6.12249, 6.62007, 7.313219999999999, 7.09008, 6.83303, 6.98101, 6.6871100000000006, 7.09008, 6.81014, 7.37776, 6.51767, 6.85435, 7.64969, 7.91936, 6.907760000000001, 6.9256, 6.6733, 7.5574699999999995, 6.13773, 6.67203, 6.30992, 6.47697, 6.8956800000000005, 6.56948, 6.33328, 6.802389999999999, 6.9707300000000005, 8.00637, 6.65286, 6.57368, 5.70711, 6.57786, 6.92363, 6.57368, 7.37776, 6.2146099999999995, 7.408530000000001, 7.1155800000000005, 7.91936, 7.09008, 7.37776, 7.1309, 6.58617, 6.14633, 6.6592899999999995, 6.90575, 7.092569999999999, 6.86485, 7.57558, 7.200419999999999, 6.95655, 6.2146099999999995, 6.05209, 6.44254, 6.35957, 5.72031, 6.4599, 6.60394, 6.51471, 6.975410000000001, 6.39693, 7.400010000000001, 8.537, 6.07993, 7.36645, 6.67708, 6.99942, 6.61338, 7.64969, 6.68461, 6.57925, 7.09008, 7.1082399999999994, 6.83518, 7.09008, 6.58617, 6.90575, 6.43615, 6.84162, 7.313219999999999, 6.55962, 6.07993, 6.3952599999999995, 6.633319999999999, 6.42162, 7.09008, 6.13123, 7.313219999999999, 6.30992, 6.79122, 6.720219999999999, 6.66823, 7.2861899999999995, 6.802389999999999, 6.703189999999999, 5.98896, 7.620710000000001, 6.0822199999999995, 6.77878, 7.09008, 7.6009, 6.28972, 6.48768, 6.68461, 6.41182, 7.37776, 7.525639999999999, 6.74993, 6.72623, 7.09008, 7.25347, 7.585789999999999, 6.45362, 6.354369999999999, 6.984719999999999, 6.90575, 6.937310000000001, 6.907760000000001, 7.0775, 7.346010000000001, 7.027310000000001, 6.907760000000001, 6.9489, 6.907760000000001, 7.495539999999999, 6.01127, 6.802389999999999, 6.745239999999999, 6.58617, 6.90575, 6.633319999999999, 6.80572, 6.2480400000000005, 6.2634, 6.31355, 7.35819, 6.49677, 6.68461, 6.633319999999999, 7.30317, 6.95655, 6.907760000000001, 5.742999999999999, 6.39693, 7.313219999999999, 6.90575, 7.09008, 6.47697, 7.196689999999999, 6.47697, 6.30262, 6.745239999999999, 7.07412, 6.354369999999999, 6.10925, 6.68461, 7.42357, 6.768489999999999, 6.95655, 6.715380000000001, 6.9828600000000005, 7.02465, 6.49224, 6.49979, 6.27099, 5.8861, 7.393260000000001, 6.829789999999999, 6.32794, 6.28786, 5.9839400000000005, 6.68461, 5.84354, 6.62007, 7.12287, 6.2146099999999995, 6.84162, 7.00307, 6.2146099999999995, 6.983789999999999, 6.35611, 6.17379, 6.95655, 6.39693, 6.88755, 7.04316, 6.90575, 6.84162, 6.45362, 6.83518, 6.85646, 6.46925, 5.99146, 6.62007, 7.00307, 5.99146, 6.22654, 6.633319999999999, 6.77308, 7.1107, 6.95655, 6.967910000000001, 6.995769999999999, 6.66568, 6.594410000000001, 6.90575, 6.5439099999999994, 6.62007, 6.60665, 7.04752, 7.062189999999999, 7.313219999999999, 7.04752, 7.0884100000000005, 6.937310000000001, 6.90575, 6.23441, 6.25767, 6.2146099999999995, 6.551080000000001, 6.90575, 7.09008, 6.68461, 6.2146099999999995, 6.386880000000001, 6.44413, 6.58617, 6.10925, 6.90073, 6.745239999999999, 7.2233, 6.8773, 6.813439999999999, 7.037030000000001, 6.40523, 6.2146099999999995, 6.17379, 7.6009, 6.30992, 6.685860000000001, 6.38856, 6.47697, 7.46737, 6.551080000000001, 6.9226399999999995, 6.87213, 6.73102, 6.30992, 7.45298, 5.72359, 7.1309, 6.882439999999999, 5.940169999999999, 6.90675, 6.551080000000001, 6.9147300000000005, 6.85646, 6.563860000000001, 6.381819999999999, 5.78996, 6.769639999999999, 6.73102, 7.06133, 6.68461, 6.2146099999999995, 6.912739999999999, 6.4708, 6.2634, 7.08171, 6.90575, 7.6009, 6.52062, 6.907760000000001, 6.60935, 6.51471, 6.9828600000000005, 6.85646, 6.30992, 7.338889999999999, 6.22654, 6.84055, 6.311730000000001, 7.01392, 6.49224, 6.2205900000000005, 7.44659, 7.388330000000001, 6.85118, 7.24423, 6.632000000000001, 6.90575, 7.10906, 6.944089999999999, 6.83518, 6.222580000000001, 6.84588, 7.17012, 6.52503, 6.2860000000000005, 6.80128, 6.07993 ], "xaxis": "x2", "y0": "male", "yaxis": "y2" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(164, 30%, 30%,1)", "width": 0.5 }, "visible": false, "width": 0.25 }, "fillcolor": "hsla(164, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "yes", "line": { "width": 0 }, "marker": { "color": "hsla(164, 50%, 50%,0.9)", "line": { "color": "hsla(164, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "circle" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": false, "scalegroup": "yes", "showlegend": false, "side": "both", "span": [ 6.725233087892977, 6.7537986000522405 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 6.99942, 5.99146, 7.67322, 7.09008, 5.61677, 6.646389999999999, 7.02643, 6.4552, 7.32975, 6.95845, 7.06902, 6.04025, 6.907760000000001, 7.91936, 6.745239999999999, 6.30079, 7.068169999999999, 6.07535, 6.7417, 7.71869, 6.882439999999999, 6.47697, 6.77878, 6.907760000000001, 6.93342, 7.06902, 6.57368, 6.829789999999999, 7.557989999999999, 6.892639999999999, 7.0255399999999995, 6.57925, 6.47697, 7.1309, 6.551080000000001, 6.882439999999999, 6.907760000000001, 6.682110000000001, 6.39693, 6.48004, 6.60665, 7.00307, 5.78383, 6.94505, 6.9546399999999995, 7.17012, 7.11477, 6.593039999999999, 6.49979, 6.5439099999999994, 6.39192, 6.51471, 6.30992, 6.30992, 7.116389999999999, 6.46925, 7.554860000000001, 6.90675, 6.85646, 5.94803, 6.90575, 6.90575, 7.408530000000001, 7.0076, 6.88857, 7.35947, 6.39693, 7.041410000000001, 6.66696, 6.30992, 7.313219999999999, 6.787839999999999, 6.90575, 6.802389999999999, 7.00307, 7.074960000000001, 7.5606, 6.16331, 5.94803, 6.43775, 7.282760000000001, 6.39693, 6.813439999999999, 6.694560000000001, 6.29157, 6.23048, 6.16331, 6.88755, 6.95655, 7.56008, 6.28227, 6.30992, 6.05912, 6.602589999999999, 7.47307, 6.2146099999999995, 6.95655, 6.90575, 6.461469999999999, 7.09008, 7.46737, 6.829789999999999, 6.60665, 6.74052, 6.745239999999999, 7.6009, 6.62007, 6.551080000000001, 6.663130000000001, 7.60589, 6.53669, 6.5582, 6.16121, 6.19236, 6.2146099999999995, 7.37776, 6.58617, 6.23832, 6.27476, 6.48311, 6.69084, 6.54965, 6.882439999999999, 6.663130000000001, 5.70378, 6.7226300000000005, 7.20786, 6.802389999999999, 6.79122, 6.62007, 6.42162, 6.12249, 6.90575, 6.28227, 6.206580000000001, 5.99146, 6.682110000000001, 6.49677, 7.408530000000001, 6.10925, 6.317159999999999, 6.2146099999999995, 6.551080000000001, 6.25575, 7.0884100000000005, 6.16331, 6.68461, 5.8999, 7.01392, 7.1107, 6.9363399999999995, 6.90575, 6.1070199999999994, 6.85646, 6.44572, 6.551080000000001, 6.84588, 8.10168, 7.31255, 5.99645, 6.90575, 6.802389999999999, 6.2146099999999995, 6.66696, 6.907760000000001, 6.90575, 6.6592899999999995, 8.047189999999999, 6.62407, 7.0076, 6.30992, 6.17379, 6.55393, 6.3952599999999995, 6.24611, 7.78322, 6.60665, 7.12448, 6.507280000000001, 6.461469999999999, 6.8977, 7.82405, 7.75148, 6.62407, 6.2146099999999995, 7.1309, 6.51471, 5.96615, 6.84055, 7.041410000000001, 6.51471, 6.551080000000001, 7.346010000000001, 6.966019999999999, 6.90575, 7.17012, 6.5820300000000005, 7.04752, 6.354369999999999, 6.59578, 7.82405, 6.5467900000000006, 6.551080000000001, 6.39693, 6.88755, 6.39693, 6.39693, 6.65286, 6.36647, 6.622739999999999, 6.90575, 5.7525699999999995, 6.15273, 7.04752, 5.52146, 6.770789999999999, 6.907760000000001, 7.00125, 7.064760000000001, 7.00307, 6.05209, 6.745239999999999, 7.045780000000001, 6.54535, 6.37673, 6.62007, 6.907760000000001, 6.10925, 6.39693, 8.16052, 6.745239999999999, 7.03527, 6.765039999999999, 7.1309, 6.77422, 6.87213, 6.551080000000001, 6.907760000000001, 6.6567300000000005, 6.80017, 7.226210000000001, 6.10925, 6.90575, 6.70073, 7.495539999999999, 8.05516, 6.9256, 7.06987, 6.694560000000001, 6.90575, 6.43775, 6.97261, 7.29709, 7.179310000000001, 7.313219999999999, 6.7226300000000005, 6.82437, 6.715380000000001, 7.173189999999999, 6.62007, 6.7226300000000005, 6.85118, 6.49224, 7.313219999999999, 6.62007, 7.158510000000001, 6.68461, 6.57647, 5.89715, 6.34564, 6.556780000000001, 6.7093, 6.93925, 7.00307, 6.551080000000001, 6.90575, 6.53669, 6.69084, 7.313219999999999, 6.05209, 6.90575, 6.62007, 6.4552, 6.77422, 6.87005, 6.65544, 6.42162, 5.9269300000000005, 6.317159999999999, 6.42972, 6.62007, 6.96508, 6.19236, 6.61607, 5.5606800000000005, 6.57368, 6.2634, 6.715380000000001, 7.408530000000001, 6.17379, 7.333019999999999, 6.37502, 6.317159999999999, 7.04752, 6.68461, 6.98008, 6.912739999999999, 6.86693, 7.3670800000000005, 6.68461, 7.09008, 6.90575, 6.90575, 6.62007, 6.45362, 6.47697, 6.9431199999999995, 6.90575, 6.10925, 6.67203, 6.7334, 7.34278, 6.90575, 6.658010000000001, 6.9256, 6.90575, 6.91075, 6.6592899999999995, 6.6592899999999995, 6.16331, 7.441319999999999, 6.47851, 7.07834, 6.745239999999999, 7.20786, 6.36475, 6.63857, 7.475910000000001, 6.62007, 6.4892, 7.00307, 6.56948, 7.43838, 7.15383, 7.064760000000001, 6.88755, 7.26193, 6.23245, 6.30445, 6.715380000000001, 7.313219999999999, 7.37776, 5.8579300000000005, 6.85646, 6.2441699999999996, 6.90575, 6.907760000000001, 6.272880000000001, 6.66568, 7.481560000000001, 7.04752, 6.61338, 6.40688, 5.8579300000000005, 7.57558, 6.83518, 6.38856, 6.768489999999999, 6.90575, 6.39693, 6.34739, 7.1507, 6.58617, 7.282760000000001, 7.00307, 6.66058, 6.58064, 6.90575, 6.10925, 6.64249, 6.715380000000001, 6.62007, 7.1309, 5.99146, 6.95655, 6.65286, 6.16331, 6.24611, 7.1309, 7.1333, 7.24423, 6.04025, 6.86901, 6.802389999999999, 6.70073, 6.1203, 6.90575, 7.313219999999999, 6.54822, 6.95655, 7.50108, 6.39693, 7.07918, 5.8579300000000005, 5.70378, 6.7369699999999995, 7.745, 6.87213, 6.39693, 6.30628, 6.8773, 6.708080000000001, 6.818919999999999, 7.041410000000001, 6.882439999999999, 6.94986, 6.703189999999999, 6.37502, 7.03615, 7.37776, 5.66988, 6.907760000000001, 6.882439999999999, 6.752269999999999, 6.48158, 6.47697, 6.802389999999999, 6.984719999999999, 5.9269300000000005, 6.49224, 6.385190000000001, 7.1309, 7.663880000000001, 7.07242, 6.907760000000001, 6.43775, 8.05516, 6.807930000000001, 6.907760000000001, 6.403569999999999, 6.035480000000001, 7.24423, 6.05209, 7.00307, 5.99146, 6.33683, 6.07993, 7.488289999999999, 6.51175, 5.7365699999999995, 6.90575, 6.697030000000001, 6.354369999999999, 6.802389999999999, 6.62007, 6.68461, 6.68835, 5.8260000000000005, 6.85646, 6.44572, 6.95655, 7.20786, 6.3716099999999996, 6.8977, 6.47697, 6.802389999999999, 6.84055, 7.676010000000001, 6.85646, 6.43775, 7.20786, 6.89163, 7.0121199999999995, 6.85646, 6.77422, 6.54965, 6.05209, 6.697030000000001, 6.90575, 6.68461, 6.62007, 7.24423, 6.36819, 6.8844899999999996, 6.62007, 6.745239999999999, 6.19236, 6.39693, 6.85646, 6.7334, 5.98896, 6.48004, 6.55393, 6.5903, 7.02643, 7.15305, 6.19236, 6.43615, 6.6871100000000006, 6.42162, 6.06379, 6.93537, 7.09008, 6.802389999999999, 6.47697, 6.2634, 7.79028, 6.10032, 6.0282800000000005, 7.408530000000001, 6.6174, 6.907760000000001, 6.90575, 5.99146, 6.2441699999999996, 6.00141, 6.79122, 6.9196800000000005, 6.9147300000000005, 6.90575, 6.646389999999999, 6.746410000000001, 6.30992, 6.42972, 6.18826, 6.5467900000000006, 7.522939999999999, 6.7334, 6.07993, 6.907760000000001, 6.90575, 7.04752, 6.66185, 6.47697, 7.23418, 6.54247, 6.753439999999999, 6.51471, 7.034389999999999, 6.65286, 7.262630000000001, 7.20786, 6.90575, 6.30992, 6.984719999999999, 6.30445, 6.05209, 6.34564, 6.95655, 6.49224, 6.62007, 5.82895, 6.39693, 6.06146, 6.43775, 6.03787, 6.3952599999999995, 6.22654, 7.144410000000001, 6.90575, 6.91374, 5.70378, 6.5903, 7.1592899999999995, 6.57786, 6.6783399999999995, 6.72383, 6.41182, 6.53233, 6.907760000000001, 6.7334, 7.236339999999999, 6.20456, 6.10925, 6.715380000000001, 6.72743, 7.084230000000001, 6.97635, 7.20786, 7.00307, 6.35089, 6.59167, 6.461469999999999, 6.984719999999999, 6.53233, 6.646389999999999, 6.39693, 7.459910000000001, 6.19848, 7.0255399999999995, 6.745239999999999, 6.22654, 6.10925, 7.08171, 6.64249, 7.49332, 7.495539999999999, 7.1546199999999995, 7.1309, 6.745239999999999, 6.18415, 5.82895, 6.10925, 6.58617, 6.48158, 6.20456, 7.313219999999999, 6.94022, 6.90575, 6.41836, 6.10925, 7.48717, 7.0193, 6.983789999999999, 6.633319999999999, 6.29157, 7.49109, 6.91672, 6.90575, 6.715380000000001, 6.47697, 7.37212, 6.646389999999999, 7.0184, 6.84055, 7.24423, 7.09008, 6.52942, 7.4553, 7.00307, 6.37502, 7.24423, 6.48158, 6.68461, 6.10925, 6.90575, 6.90575, 7.75577, 6.82437, 6.18415, 6.43775, 6.90575, 7.1107, 6.44572, 6.42162, 6.769639999999999, 6.93245, 6.818919999999999, 6.551080000000001, 6.58617, 6.96508, 6.44572, 6.7093, 6.28972, 7.1082399999999994, 7.135689999999999, 6.49072, 7.251339999999999, 8.51719, 6.807930000000001, 7.14756, 7.33368, 6.77422, 6.60394, 6.68461, 7.1309, 5.99146, 7.201169999999999, 6.10925, 6.68461, 6.39693, 6.927560000000001, 6.85751, 6.95655, 6.08677, 7.24423, 7.1309, 6.17587, 6.30992, 6.36303, 6.77422, 6.2860000000000005, 6.828710000000001, 6.47697, 6.72743, 6.55251, 6.62407, 5.9814099999999994, 6.76273, 7.06902, 5.9269300000000005, 6.80128, 7.313219999999999, 6.966019999999999, 6.6592899999999995, 6.39693, 6.57786, 6.65286, 6.293419999999999, 5.87493, 6.79122, 6.987489999999999, 6.30992, 6.55536, 7.09008, 6.2146099999999995, 7.04752, 6.90575, 6.10925, 6.6783399999999995, 6.39693, 7.259119999999999, 7.43838, 6.47697, 7.1309, 6.77422, 6.2634, 6.739339999999999, 6.47697, 6.90575, 7.279319999999999, 6.815639999999999, 6.65028, 6.27099, 7.17012, 6.354369999999999, 6.29157, 6.802389999999999, 6.602589999999999, 6.47697, 6.58755, 6.77422, 6.907760000000001, 7.09589, 6.882439999999999, 5.45959, 6.05209, 7.67322, 5.8579300000000005, 6.2146099999999995, 7.2957399999999994, 5.84354, 6.802389999999999, 6.58064, 6.2634, 7.00307, 6.90575, 7.21891, 7.503839999999999, 6.45677, 6.950810000000001, 5.97126, 6.23048, 6.15273, 7.57558, 6.96035, 6.3716099999999996, 6.2146099999999995, 6.7334, 6.86066, 6.378430000000001, 6.48004, 7.00307, 6.8200199999999995, 6.47697, 6.90575, 7.39388, 7.4787300000000005, 6.2146099999999995, 6.802389999999999, 6.43775, 7.24065, 6.13773, 6.3952599999999995, 7.1025, 7.04752, 7.09008, 6.77992, 6.9256, 6.035480000000001, 7.22766, 7.475339999999999, 5.72031, 6.272880000000001, 6.01616, 6.27099, 7.91936, 6.85646, 6.354369999999999, 6.2634, 6.51471, 6.92166, 6.253830000000001, 6.745239999999999, 6.30992, 7.3651800000000005, 6.24998, 6.893660000000001, 6.53669, 6.43615, 7.04752, 6.30992, 6.39693, 6.1334, 6.765039999999999, 6.85646, 6.892639999999999, 6.95655, 5.99146, 6.43775, 6.90575, 6.81124, 6.966019999999999, 6.8865300000000005, 6.62007, 7.334980000000001, 6.72743, 6.93245, 7.27031, 7.03878, 7.0255399999999995, 6.10925, 6.83518, 6.77992, 6.68461, 7.696210000000001, 6.53669, 6.52942, 6.126869999999999, 6.54965, 6.715380000000001, 7.31122, 5.8693, 6.90575, 6.0282800000000005, 6.30992, 6.23245, 6.31536, 7.486610000000001, 6.52942, 6.14204, 6.88755, 6.62007, 6.34564, 6.44413, 5.99146, 6.93245, 7.37776, 6.907760000000001, 7.18917, 6.7093, 6.75926, 6.3315, 6.5439099999999994, 6.1717, 7.9459100000000005, 6.77422, 7.424760000000001, 5.70378, 6.43775, 6.90575, 7.6009, 6.90575, 7.46737, 6.694560000000001, 8.16052, 6.984719999999999, 6.802389999999999, 5.99146, 6.802389999999999, 7.32647, 7.1309, 5.96101, 6.62007, 6.84055, 6.58617, 7.1309, 7.00307, 7.78322, 6.62007, 5.7525699999999995, 6.62407, 6.795710000000001, 7.212289999999999, 6.05209, 6.38856, 6.93925, 6.47697, 6.8773, 6.354369999999999, 7.9724699999999995, 6.703189999999999, 6.47697, 6.50429, 6.58617, 6.51471, 6.06611, 6.68461, 6.65544, 7.331060000000001, 6.64118, 6.47697, 7.475910000000001, 6.72743, 7.20786, 6.81124, 7.0201899999999995, 7.279319999999999, 6.80461, 5.99645, 7.10906, 6.40523, 6.77422, 7.01571, 6.54822, 6.14204, 6.47697, 7.24423, 5.93225, 7.46737, 6.69084, 6.47697, 6.85646, 6.88755, 7.24423, 6.95655, 6.67077, 7.313219999999999, 6.98008, 6.75577, 6.566669999999999, 7.09008, 6.697030000000001, 6.79794, 6.2634, 6.61874, 6.64118, 7.1309, 6.98101, 6.90575, 5.90263, 6.17794, 6.77422, 6.96035, 6.6515699999999995, 6.35957, 6.829789999999999, 6.66568, 7.09008, 6.10925, 6.85646, 6.90575, 6.95655, 6.126869999999999, 7.1309, 6.4552, 6.58617, 7.23778, 6.66568, 6.21261, 6.57925, 6.802389999999999, 6.88755, 7.08171, 6.6567300000000005, 7.696210000000001, 6.68461, 6.43775, 6.802389999999999, 6.6592899999999995, 6.48311, 6.408530000000001, 6.84055, 7.17778, 6.2634, 6.4892, 6.95177, 6.785589999999999, 7.033510000000001, 6.57647, 6.23637, 6.530880000000001, 6.43775, 6.90575, 6.30992, 6.85646, 6.79122, 6.30992, 6.62007, 5.76832, 6.81014, 6.551080000000001, 6.56526, 6.551080000000001, 7.09008, 6.9613, 6.7901, 6.95655, 6.65286, 5.9814099999999994, 6.28227, 7.46737, 7.18007, 7.46737, 6.90575, 6.52209, 7.37776, 6.90575, 5.99146, 7.46737, 5.99146, 6.18826, 6.59987, 6.68461, 7.6009, 7.14913, 7.27031, 6.317159999999999, 6.72503, 5.99146, 6.62007, 6.6871100000000006, 7.17012, 6.802389999999999, 5.93754, 6.995769999999999, 6.802389999999999, 6.52356, 6.55251, 6.56526, 6.72383, 7.09008, 6.68461, 6.52209, 7.313219999999999, 6.94698, 6.561030000000001, 6.907760000000001, 7.71869, 5.96615, 6.41673, 6.29157, 7.00307, 6.802389999999999, 6.90375, 6.1944099999999995, 7.09008, 6.90575, 6.47697, 7.26193, 6.60665, 6.424869999999999, 7.37776, 6.13773, 6.907760000000001, 6.858569999999999, 6.745239999999999, 7.495539999999999, 7.1546199999999995, 6.2804, 6.6592899999999995, 6.77422, 6.893660000000001, 6.86693, 7.408530000000001, 6.72743, 6.42972, 6.633319999999999, 7.0579, 6.68461, 7.185389999999999, 7.26543, 7.05099, 6.10925, 6.60123, 7.233460000000001, 6.90575, 6.77194, 6.6567300000000005, 6.3243599999999995, 6.55393, 6.9613, 6.90575, 6.907760000000001, 6.90975, 7.64969, 7.1309, 6.745239999999999, 5.99146, 6.354369999999999, 5.4161, 6.55536, 6.02102, 6.7334, 6.47697, 6.47697, 6.53669, 6.95655, 6.551080000000001, 7.6009, 6.90575, 7.17242, 6.3421199999999995, 6.9196800000000005, 6.51471, 6.85646, 6.551080000000001, 6.35611, 6.90575, 6.34914, 7.696210000000001, 7.17012, 6.802389999999999, 6.253830000000001, 6.90575, 6.48464, 6.49224, 6.82763, 6.90575, 7.014810000000001, 6.2634, 7.04752, 6.90575, 7.20786, 7.02997, 7.803839999999999, 6.31355, 6.89467, 6.829789999999999, 7.17012, 7.54961, 7.28207, 6.69084, 7.1929300000000005, 6.33328, 5.84354, 6.85646, 6.912739999999999, 6.80017, 6.97635, 6.2653, 7.1309, 7.17012, 7.0884100000000005, 7.16627, 6.19644, 6.39693, 5.9814099999999994, 6.90575, 6.90575, 6.6958, 5.01728, 7.279319999999999, 7.136480000000001, 6.608, 6.68461, 7.9831, 6.9828600000000005, 6.30992, 6.2146099999999995, 7.09506, 6.44572, 6.90575, 6.90575, 7.08339, 5.96615, 6.9622399999999995, 7.11233, 6.912739999999999, 6.68461, 6.8254600000000005, 7.346010000000001, 6.68085, 7.24423, 6.62007, 6.1070199999999994, 6.33328, 6.15698, 6.30262, 6.253830000000001, 7.30317, 6.829789999999999, 6.56808, 6.36303, 7.20786, 6.752269999999999, 6.95655, 6.02102, 6.633319999999999, 6.2634, 7.183110000000001, 6.907760000000001, 6.6174, 7.43838, 6.45047, 6.9707300000000005, 6.3952599999999995, 7.09008, 6.49979, 6.94986, 7.06902, 6.68461, 7.22766, 6.68461, 7.1309, 6.975410000000001, 6.2672, 6.50279, 6.551080000000001, 6.59987, 6.7334, 6.2146099999999995, 6.44572, 7.408530000000001, 7.09008, 6.614730000000001, 6.17379, 7.03615, 6.05209, 6.83518, 7.09008, 6.63857, 6.17794, 6.551080000000001, 6.30992, 7.07834, 6.39693, 6.57228, 6.938280000000001, 6.715380000000001, 6.7511, 6.715380000000001, 6.58617, 5.59842, 6.3935900000000006, 7.26193, 6.49072, 6.829789999999999, 6.745239999999999, 6.721430000000001, 6.59715, 6.00389, 6.9828600000000005, 6.62007, 6.85646, 7.04752, 6.23441, 6.551080000000001, 6.14633, 6.563860000000001, 6.73102, 6.2634, 6.3243599999999995, 6.721430000000001, 6.6796, 7.062189999999999, 6.10925, 7.313219999999999, 6.34564, 6.561030000000001, 6.17379, 7.06987, 6.87626, 6.505780000000001, 6.745239999999999, 6.966019999999999, 6.4488900000000005, 7.1309, 6.68461, 6.575080000000001, 6.40192, 6.70073, 6.56808, 6.7334, 6.30992, 7.0775, 6.6796, 6.8384100000000005, 7.03615, 6.85751, 6.745239999999999, 7.313219999999999, 6.86693, 7.08171, 6.85646, 6.47697, 6.47697, 6.28972, 7.46737, 7.2724, 6.61874, 6.30079, 7.0255399999999995, 6.27099, 6.90575, 6.34564, 6.9828600000000005, 7.450080000000001, 6.224559999999999, 6.551080000000001, 6.23441, 7.1309, 6.52209, 7.49332, 6.39192, 6.739339999999999, 7.4832399999999994, 6.16331, 6.68461, 6.90575, 6.90575, 7.1309, 6.86171, 6.715380000000001, 6.551080000000001, 6.33683, 6.9187, 7.0579, 6.35611, 7.02376, 5.5797300000000005, 6.90575, 6.82655, 6.90575, 5.9269300000000005, 7.42833, 5.87212, 6.463030000000001, 7.52833, 6.86797, 6.60665, 6.90575, 6.4677, 7.3651800000000005, 6.748760000000001, 6.77992, 6.975410000000001, 7.43838, 7.82405, 6.5439099999999994, 6.42162, 6.8844899999999996, 7.16085, 6.52209, 6.04025, 5.52146, 6.90575, 7.00307, 6.907760000000001, 6.817830000000001, 7.279319999999999, 6.907760000000001, 7.54961, 7.323169999999999, 6.90575, 6.41017, 6.90575, 6.787839999999999, 6.62007, 7.0967199999999995, 5.9269300000000005, 6.55393, 6.17379, 7.00307, 7.31122, 7.31122, 6.31355, 6.44572, 6.59578, 6.47697, 6.69332, 6.7511, 6.77422, 7.09008, 5.8579300000000005, 7.183110000000001, 7.728860000000001, 6.54965, 7.04752, 7.25488, 6.9256, 6.907760000000001, 5.65249, 7.041410000000001, 6.4599, 6.96035, 7.1333, 6.99942, 6.38012, 7.200419999999999, 7.18007, 7.1309, 6.461469999999999, 6.85646, 7.17012, 7.03527, 6.19848, 6.62007, 7.313219999999999, 6.907760000000001, 6.90575, 7.1452, 5.82895, 6.33683, 6.04025, 6.2146099999999995, 7.8935699999999995, 6.34564, 6.64249, 6.8977, 6.3699, 6.6567300000000005, 6.813439999999999, 6.53669, 6.90575, 6.47697, 6.05209, 7.21524, 6.551080000000001, 6.66568, 6.57925, 6.2146099999999995, 6.8426800000000005, 6.907760000000001, 6.90575, 7.106610000000001, 6.424869999999999, 6.65415, 6.86693, 6.745239999999999, 6.88346, 6.53669, 6.3207699999999996, 7.696210000000001, 7.64779, 7.313219999999999, 6.95655, 6.715380000000001, 6.44254, 6.61338, 6.23245, 6.95655, 6.768489999999999, 7.3981699999999995, 6.68461, 7.12287, 6.813439999999999, 6.752269999999999, 6.551080000000001, 6.7334, 6.318969999999999, 6.79122, 5.95324, 6.745239999999999, 7.1309, 6.54103, 7.06048, 6.24222, 6.68461, 6.05209, 6.78672, 7.09008, 7.1309, 6.47697, 7.1025, 5.9814099999999994, 7.24423, 6.44254, 7.451239999999999, 7.198180000000001, 7.27101, 7.245660000000001, 7.279319999999999, 6.85646, 7.279319999999999, 7.67322, 6.76273, 6.82437, 6.47697, 6.885510000000001, 7.07918, 7.279319999999999, 7.1309, 6.966019999999999, 6.73102, 6.633319999999999, 7.00307, 7.6009, 6.907760000000001, 6.32615, 6.508769999999999, 6.551080000000001, 7.0884100000000005, 6.829789999999999, 7.31986, 6.21661, 7.11802, 6.77422, 7.26193, 6.90575, 7.00307, 5.99146, 7.46737, 6.57786, 6.3081, 6.90575, 6.311730000000001, 6.39693, 6.95655, 6.62007, 6.3952599999999995, 6.48311, 6.39693, 6.90575, 6.60665, 6.90575, 6.318969999999999, 6.802389999999999, 6.70441, 6.51471, 6.77992, 6.68461, 6.29157, 6.40523, 6.18826, 7.24423, 6.83518, 7.09008, 7.84502, 7.1624, 6.813439999999999, 6.907760000000001, 6.68461, 6.14633, 7.17012, 6.53814, 6.882439999999999, 6.36647, 6.47697, 7.54697, 6.60665, 6.68461, 7.408530000000001, 7.2724, 6.46614, 6.90575, 5.7462, 6.36303, 7.04752, 6.551080000000001, 6.58064, 6.17379, 6.83195, 7.20786, 6.62007, 6.95655, 6.90575, 6.34564, 7.09008, 7.014810000000001, 6.73815, 6.65028, 7.03878, 6.10032, 7.266830000000001, 6.95655, 7.20786, 6.602589999999999, 6.551080000000001, 6.87626, 5.16479, 7.54961, 6.551080000000001, 6.49224, 6.58893, 6.60665, 6.907760000000001, 7.64969, 6.9177100000000005, 6.18415, 6.68461, 7.43838, 6.66441, 6.551080000000001, 6.41182, 6.43775, 6.43775, 6.4599, 7.00307, 5.99146, 6.852239999999999, 6.5439099999999994, 6.6515699999999995, 7.522939999999999, 6.16331, 6.551080000000001, 6.907760000000001, 7.04752, 6.44572, 6.3243599999999995, 6.41346, 6.551080000000001, 6.802389999999999, 6.62007, 6.5439099999999994, 6.57925, 6.38012, 6.4151, 6.52209, 6.29157, 6.2146099999999995, 6.97167, 6.75926, 6.66823, 7.37776, 7.1309, 6.90575, 6.10925, 7.408530000000001, 6.39693, 6.04025, 7.0396600000000005, 7.09589, 7.10003, 6.73102, 6.87523, 6.90575, 7.20786, 7.173960000000001, 6.90575, 6.47389, 6.99026, 7.0884100000000005, 6.206580000000001, 6.56526, 6.44572, 6.551080000000001, 6.53379, 6.90575, 6.46614, 6.61338, 6.90575, 6.85646, 6.47389, 6.10925, 6.99118, 6.2441699999999996, 7.1592899999999995, 6.90575, 6.59987, 7.01571, 6.42162, 6.716589999999999, 6.85646, 7.46737, 6.58617, 6.95655, 6.29157, 6.907760000000001, 6.46459, 6.62007, 6.95177, 6.58617, 6.50129, 6.2952699999999995, 6.85646, 6.15698, 6.90575, 7.6009, 7.00307, 6.17379, 6.15273, 6.62007, 7.346010000000001, 6.90575, 6.68461, 6.50429, 7.0942300000000005, 5.78383, 6.54535, 6.3716099999999996, 7.86327, 6.62007, 7.09008, 6.703189999999999, 6.53233, 6.58617, 7.46737, 6.39693, 6.38012, 6.802389999999999, 6.43935, 7.044910000000001, 6.42162, 6.90575, 6.802389999999999, 6.44413, 7.127689999999999, 6.45677, 6.40192, 6.55393, 7.06902, 6.59987, 6.715380000000001, 6.715380000000001, 6.39693, 6.57786, 6.68461, 7.00307, 6.42972, 6.85435, 6.937310000000001, 6.2106, 6.708080000000001, 6.0845, 6.907760000000001, 6.16331, 6.2441699999999996, 6.74406, 6.85646, 6.73221, 5.72031, 7.54961, 6.37673, 6.90575, 6.62007, 6.768489999999999, 6.63595, 5.82895, 6.90575, 6.75577, 6.77194, 6.77422, 5.8999, 6.2146099999999995, 6.2146099999999995, 6.62007, 6.9489, 7.354360000000001, 7.279319999999999, 5.8861, 6.6592899999999995, 7.06305, 6.61338, 7.00307, 6.49224, 6.84588, 6.35611, 6.35611, 6.8977, 7.20786, 6.90575, 7.1309, 7.393260000000001, 6.95655, 6.834110000000001, 6.07993, 7.10988, 6.802389999999999, 6.224559999999999, 6.57925, 6.927560000000001, 6.90575, 7.09008, 7.1309, 6.90575, 6.907760000000001, 6.16542, 6.62007, 7.6009, 6.95655, 6.90575, 6.90575, 6.796819999999999, 6.66568, 6.907760000000001, 6.8533, 6.813439999999999, 7.196689999999999, 6.43615, 6.9147300000000005, 6.77194, 6.90575, 6.90575, 6.47697, 7.0255399999999995, 7.522939999999999, 6.62007, 6.354369999999999, 7.1546199999999995, 6.90575, 6.551080000000001, 6.753439999999999, 6.77422, 7.313219999999999, 6.967910000000001, 6.816739999999999, 7.6009, 6.745239999999999, 7.37588, 6.86485, 6.41346, 6.7093, 6.551080000000001, 6.22654, 7.24423, 6.06146, 6.16331, 7.05359, 6.49224, 6.86171, 6.58617, 7.1309, 6.77422, 7.93737, 6.39693, 6.58617, 7.67322, 6.551080000000001, 6.2146099999999995, 6.77422, 6.99485, 6.45047, 6.66185, 6.94119, 7.21891, 7.57558, 7.495539999999999, 6.10925, 6.59715, 6.03787, 6.556780000000001, 6.354369999999999, 7.6009, 6.83303, 6.551080000000001, 7.279319999999999, 6.354369999999999, 7.925160000000001, 6.77422, 7.183110000000001, 6.1136800000000004, 6.77992, 6.62007, 7.00307, 7.86327, 6.70073, 7.1309, 6.32794, 6.16121, 5.6801699999999995, 6.65286, 6.802389999999999, 6.715380000000001, 6.95655, 6.78333, 6.90575, 6.67582, 6.47697, 6.907760000000001, 6.90575, 6.53233, 6.882439999999999, 7.0255399999999995, 6.23048, 6.715380000000001, 7.872839999999999, 6.49072, 6.90575, 6.4892, 6.63726, 6.3613, 6.79122, 6.53233, 6.05209, 6.697030000000001, 6.8742, 6.08677, 6.6280399999999995, 6.907760000000001, 6.05209, 5.70378, 7.02997, 6.715380000000001, 6.2146099999999995, 6.90575, 7.313219999999999, 6.3699, 6.07074, 6.54822, 6.62007, 6.59987, 6.7226300000000005, 6.51026, 6.907760000000001, 6.50429, 6.47697, 6.58617, 6.77422, 6.8977, 5.9135, 6.17379, 8.047189999999999, 6.93537, 6.2146099999999995, 6.507280000000001, 7.46737, 5.82895, 7.034389999999999, 6.7569300000000005, 6.95655, 6.17794, 6.68461, 7.495539999999999, 6.62007, 6.88755, 6.45205, 6.802389999999999, 6.32794, 6.68461, 8.03916, 6.829789999999999, 6.6745600000000005, 6.714169999999999, 6.43775, 7.00307, 6.43455, 6.90575, 7.346660000000001, 7.6009, 7.10988, 7.24423, 6.7569300000000005, 6.48004, 6.889589999999999, 7.313219999999999, 6.9256, 6.59167, 6.57786, 6.53669, 6.39693, 6.33328, 6.33328, 7.313219999999999, 6.551080000000001, 7.408530000000001, 7.3908, 6.90575, 6.9256, 6.95655, 6.13123, 6.551080000000001, 7.06561, 6.57925, 6.90575, 6.73102, 7.09008, 6.566669999999999, 6.43775, 6.62007, 6.424869999999999, 6.646389999999999, 6.2146099999999995, 6.802389999999999, 6.90575, 6.9613, 6.78672, 6.65286, 7.24423, 7.09008, 6.602589999999999, 6.42162, 7.0422899999999995, 7.034389999999999, 6.59987, 6.44572, 6.20456, 6.57925, 6.38012, 6.16331, 6.818919999999999, 6.551080000000001, 6.53669, 6.95655, 5.76832, 7.2100800000000005, 6.48311, 6.507280000000001, 6.45362, 6.765039999999999, 6.2634, 6.2691, 7.18917, 6.2146099999999995, 6.802389999999999, 6.50129, 6.2634, 7.38647, 6.96885, 6.10925, 7.196689999999999, 6.3403599999999996, 6.818919999999999, 6.72623, 6.90575, 6.7569300000000005, 6.62936, 7.09008, 6.62007, 5.9839400000000005, 6.95655, 7.49332, 6.62007, 6.62007, 6.753439999999999, 6.77422, 6.2653, 7.495539999999999, 6.7334, 6.95655, 6.56526, 6.88755, 7.47307, 6.47697, 6.90575, 6.90575, 7.909860000000001, 6.69084, 6.3716099999999996, 6.52209, 7.106610000000001, 6.40523, 6.69084, 5.627619999999999, 6.6567300000000005, 6.68461, 6.697030000000001, 6.22654, 7.740660000000001, 6.907760000000001, 6.43775, 6.43775, 6.813439999999999, 5.76832, 6.9256, 7.64969, 6.47697, 6.43615, 6.10925, 7.1309, 5.89715, 6.907760000000001, 6.745239999999999, 6.43775, 6.85646, 6.77422, 6.768489999999999, 7.029089999999999, 6.62007, 7.06133, 7.24423, 6.95177, 7.54961, 6.354369999999999, 6.87626, 6.318969999999999, 6.570880000000001, 7.61332, 7.09008, 6.7511, 6.551080000000001, 7.034389999999999, 6.49072, 6.30992, 6.55393, 6.72743, 6.05209, 7.0967199999999995, 6.90575, 6.551080000000001, 6.907760000000001, 6.785589999999999, 6.39693, 6.05209, 6.90575, 6.697030000000001, 6.814539999999999, 6.639880000000001, 6.62007, 7.24423, 6.77194, 6.551080000000001, 6.802389999999999, 5.8999, 6.57228, 7.062189999999999, 6.47697, 6.2441699999999996, 6.829789999999999, 6.95655, 6.907760000000001, 6.38012, 7.293019999999999, 6.91175, 6.45834, 6.556780000000001, 6.5582, 6.91175, 6.45362, 7.1309, 6.8773, 6.955589999999999, 7.80588, 6.9613, 5.4161, 6.907760000000001, 6.90575, 7.18992, 6.90575, 6.385190000000001, 7.31122, 6.6107, 6.807930000000001, 6.79794, 6.1717, 6.16331, 6.6592899999999995, 7.0483899999999995, 6.598510000000001, 6.09131, 7.106610000000001, 6.90575, 7.66153, 7.22548, 6.48768, 6.87213, 7.17012, 6.23245, 6.39693, 7.35244, 7.183110000000001, 6.56948, 8.00637, 7.05272, 6.33328, 6.90575, 6.802389999999999, 6.30992, 6.551080000000001, 6.10925, 6.77422, 6.30992, 6.49979, 6.802389999999999, 7.05704, 7.16858, 6.802389999999999, 6.58617, 6.551080000000001, 7.20564, 7.1507, 6.852239999999999, 7.6009, 6.70564, 5.7525699999999995, 6.90575, 6.11147, 6.95655, 6.84375, 6.95655, 6.8977, 7.34923, 6.93245, 6.34564, 7.03878, 7.400010000000001, 5.8579300000000005, 7.37588, 6.83195, 7.00307, 6.84162, 6.354369999999999, 6.93342, 6.608, 6.85646, 6.61607, 6.056780000000001, 6.90575, 6.697030000000001, 6.5395900000000005, 6.6120399999999995, 6.63726, 7.1309, 6.739339999999999, 7.86327, 6.55393, 6.47697, 6.7511, 6.907760000000001, 6.05912, 6.54535, 6.551080000000001, 7.00307, 6.51471, 7.0422899999999995, 6.57925, 6.66823, 7.1309, 6.551080000000001, 6.44572, 7.00307, 6.253830000000001, 5.99146, 7.2724, 6.907760000000001, 6.90575, 6.3315, 6.3699, 6.39693, 7.82405, 6.95655, 6.09582, 6.07535, 6.90575, 6.8426800000000005, 7.0518600000000005, 6.993930000000001, 6.907760000000001, 6.79122, 6.7511, 6.2146099999999995, 6.78897, 6.67203, 7.259119999999999, 7.6811, 6.745239999999999, 7.27031, 6.721430000000001, 6.90575, 6.563860000000001, 6.99485, 7.37776, 7.06048, 6.30992, 6.84375, 7.0282, 6.66696, 6.90575, 6.47235, 6.56244, 8.0229, 6.90575, 6.6592899999999995, 6.80351, 6.92658, 6.4892, 6.28227, 7.06902, 6.08677, 7.1309, 5.68698, 6.33683, 6.984719999999999, 6.753439999999999, 6.354369999999999, 6.52209, 6.52209, 7.362010000000001, 6.8200199999999995, 6.73102, 6.39693, 6.8773, 6.507280000000001, 6.81014, 6.802389999999999, 6.49072, 7.46737, 6.745239999999999, 6.11147, 6.2634, 7.181589999999999, 6.551080000000001, 7.05618, 5.86079, 6.51619, 6.56948, 6.937310000000001, 6.9256, 6.90575, 6.10925, 6.39693, 7.09008, 6.82437, 6.753439999999999, 6.966019999999999, 6.802389999999999, 7.239210000000001, 6.5582, 6.907760000000001, 6.98008, 6.62407, 5.70378, 6.551080000000001, 6.41673, 7.313219999999999, 6.62007, 6.84588, 6.42162, 6.68461, 6.715380000000001, 6.85646, 6.57786, 5.8579300000000005, 6.2146099999999995, 7.313219999999999, 7.37776, 6.30992, 7.1309, 6.69084, 6.70564, 5.7462, 6.16752, 7.279319999999999, 6.73102, 6.53669, 6.24222, 7.03527, 7.04752, 6.507280000000001, 6.93049, 6.59715, 7.09008, 6.45047, 6.33328, 6.68461, 6.62007, 6.90575, 7.04752, 6.6346300000000005, 6.59167, 6.41836, 7.2724, 6.56526, 7.91936, 6.54103, 6.90575, 7.57558, 6.20456, 6.802389999999999, 7.484369999999999, 6.90575, 6.51471, 5.7462, 6.39693, 6.94698, 7.084230000000001, 6.96885, 6.907760000000001, 7.00307, 7.293019999999999, 7.173189999999999, 6.77422, 6.815639999999999, 6.43294, 6.813439999999999, 6.90575, 6.88857, 6.90575, 7.09008, 6.90575, 7.226210000000001, 7.279319999999999, 6.73102, 6.05912, 6.68461, 6.6592899999999995, 7.91936, 6.507280000000001, 7.00307, 6.47697, 6.551080000000001, 6.90575, 6.2146099999999995, 6.907760000000001, 6.715380000000001, 6.96885, 6.68461, 6.57368, 6.745239999999999, 6.53669, 5.76832, 6.2146099999999995, 6.8426800000000005, 7.520230000000001, 5.5797300000000005, 6.51323, 7.1082399999999994, 6.5582, 7.17012, 6.768489999999999, 6.39693, 7.393260000000001, 6.6958, 6.95177, 6.2146099999999995, 6.5582, 6.9613, 6.4892, 7.676010000000001, 6.715380000000001, 6.907760000000001, 6.3935900000000006, 7.54961, 6.86171, 5.79606, 6.83087, 6.6783399999999995, 6.54535, 6.593039999999999, 6.77422, 6.44572, 7.04752, 7.37776, 7.17012, 6.8426800000000005, 7.00307, 6.126869999999999, 6.50129, 6.8773, 6.56526, 6.354369999999999, 6.96885, 6.575080000000001, 6.62007, 6.42811, 6.752269999999999, 6.90575, 6.78672, 8.12089, 6.829789999999999, 7.00307, 6.2146099999999995, 6.1944099999999995, 7.740660000000001, 6.907760000000001, 6.2146099999999995, 6.96979, 6.68461, 7.14283, 6.139880000000001, 7.1293, 6.89467, 5.43808, 7.183110000000001, 6.5467900000000006, 6.34388, 6.39024, 7.0255399999999995, 6.424869999999999, 6.68461, 6.49979, 7.37776, 6.7901, 6.17379, 6.4488900000000005, 6.614730000000001, 6.60665, 7.09008, 6.51323, 6.93245, 6.6592899999999995, 6.30992, 7.37776, 6.09807, 6.8977, 6.35784, 6.37502, 6.57925, 7.7021, 7.46737, 7.6009, 7.36455, 6.59715, 6.639880000000001, 6.36303, 5.82895, 6.59715, 6.62007, 6.551080000000001, 7.09008, 6.78333, 6.563860000000001, 7.0076, 6.880380000000001, 6.745239999999999, 6.82437, 6.4677, 7.127689999999999, 7.1309, 6.62007, 7.82084, 7.288930000000001, 6.39693, 6.68461, 7.10988, 6.563860000000001, 6.354369999999999, 6.7546, 7.196689999999999, 5.99146, 6.74052, 6.67203, 6.86485, 7.1309, 7.6009, 6.6107, 7.24423, 6.9256, 7.11314, 6.86693, 6.58617, 6.85646, 5.70378, 6.2146099999999995, 6.92363, 6.84588, 6.86171, 6.813439999999999, 6.50279, 5.7589, 6.7417, 7.18917, 6.2146099999999995, 6.93245, 6.78897, 6.74759, 7.00307, 6.3935900000000006, 7.09008, 7.84385, 6.802389999999999, 6.57647, 6.78672, 6.39693, 6.9707300000000005, 8.3082, 7.1309, 7.17012, 6.593039999999999, 6.90575, 6.62007, 6.86693, 6.259580000000001, 6.41999, 5.52146, 6.907760000000001, 7.43838, 6.64509, 7.09008, 6.39693, 7.0255399999999995, 7.903969999999999, 6.745239999999999, 6.80461, 7.037030000000001, 7.04752, 6.47697, 6.65286, 6.76388, 6.90575, 6.87626, 6.90575, 7.1507, 7.07834, 7.21082, 6.52942, 6.701960000000001, 6.8426800000000005, 6.0282800000000005, 6.3207699999999996, 6.24611, 6.57786, 6.18826, 6.975410000000001, 7.16085, 6.30992, 6.83303, 7.61874, 6.48158, 6.44095, 6.99485, 6.907760000000001, 6.8384100000000005, 6.79122, 6.551080000000001, 6.6695, 7.279319999999999, 6.57925, 6.813439999999999, 6.30992, 6.68461, 6.47389, 6.802389999999999, 6.785589999999999, 7.313219999999999, 6.551080000000001, 7.29097, 5.8861, 6.98008, 6.802389999999999, 7.20786, 6.802389999999999, 6.983789999999999, 6.75926, 6.68461, 6.55962, 6.8977, 6.05912, 6.90575, 7.4570300000000005, 7.1309, 6.566669999999999, 6.829789999999999, 6.85646, 6.643789999999999, 6.77422, 7.90101, 6.32794, 6.25767, 7.81883, 6.966019999999999, 6.33328, 6.77422, 6.8384100000000005, 6.62007, 6.813439999999999, 6.551080000000001, 6.920669999999999, 7.195189999999999, 6.62007, 6.3315, 6.69332, 6.745239999999999, 6.90575, 7.0396600000000005, 6.90575, 6.07535, 6.30992, 6.96885, 6.47697, 6.39693, 7.24423, 7.12367, 7.17012, 6.18415, 6.68461, 6.44413, 6.4677, 6.47697, 6.907760000000001, 6.4552, 7.1546199999999995, 7.37776, 7.18917, 6.10925, 6.5903, 7.136480000000001, 5.95584, 7.03878, 6.461469999999999, 6.697030000000001, 5.9839400000000005, 6.66568, 6.2146099999999995, 6.56526, 6.51471, 5.61677, 6.49375, 7.06048, 6.715380000000001, 6.10925, 6.95655, 7.1309, 6.95655, 6.90575, 6.76273, 6.311730000000001, 6.29157, 6.86693, 6.68461, 6.90575, 6.95655, 7.17012, 7.0255399999999995, 6.86171, 7.495539999999999, 6.49224, 6.90575, 6.8865300000000005, 7.57353, 6.602589999999999, 6.30992, 6.23048, 6.5467900000000006, 6.530880000000001, 6.802389999999999, 7.6009, 6.46459, 6.834110000000001, 7.313219999999999, 6.802389999999999, 6.66441, 7.251339999999999, 5.87774, 7.43838, 6.35957, 6.43775, 6.5820300000000005, 6.768489999999999, 7.17012, 5.6733199999999995, 6.90575, 7.281389999999999, 7.17702, 6.90575, 6.95845, 6.44572, 6.583410000000001, 6.91672, 6.90575, 8.229510000000001, 7.027310000000001, 6.551080000000001, 7.136480000000001, 6.71174, 6.74288, 7.0934, 7.200419999999999, 6.83087, 7.37776, 6.79122, 6.67203, 6.55393, 6.39693, 7.46737, 6.802389999999999, 7.165489999999999, 6.62007, 6.90575, 7.0255399999999995, 7.70661, 6.47389, 6.35957, 6.07535, 6.907760000000001, 7.20786, 6.43775, 6.556780000000001, 6.966019999999999, 6.95273, 6.3716099999999996, 6.745239999999999, 6.43133, 6.907760000000001, 6.68461, 6.64898, 6.28972, 7.00307, 6.2146099999999995, 6.66058, 7.016610000000001, 7.09008, 6.85646, 6.90575, 5.66988, 7.09008, 6.53379, 6.84801, 5.99146, 7.21891, 6.90575, 6.745239999999999, 7.07242, 7.6009, 6.817830000000001, 7.346010000000001, 6.6592899999999995, 7.46737, 6.975410000000001, 6.79122, 6.719010000000001, 6.720219999999999, 6.90575, 6.90575, 6.68336, 6.892639999999999, 6.86485, 6.947939999999999, 6.955589999999999, 6.90575, 6.551080000000001, 5.66988, 7.0255399999999995, 7.04752, 6.3935900000000006, 6.807930000000001, 6.74288, 6.802389999999999, 6.4599, 6.354369999999999, 6.18208, 7.398789999999999, 7.37776, 7.35883, 6.47697, 7.18463, 6.745239999999999, 7.05876, 6.84588, 6.68461, 7.64969, 6.59578, 6.715380000000001, 6.04025, 6.507280000000001, 6.23441, 7.098380000000001, 6.2804, 7.6256, 6.633319999999999, 6.6346300000000005, 6.43455, 6.52649, 7.54961, 7.09008, 6.36475, 5.7462, 6.77422, 6.10925, 6.73459, 7.1293, 6.49224, 6.28413, 7.17012, 6.90575, 6.6515699999999995, 6.56948, 6.80461, 6.03787, 7.313219999999999, 6.11589, 6.68461, 7.09008, 5.96615, 8.26873, 6.17794, 6.3935900000000006, 7.12287, 6.43775, 5.95324, 6.6796, 6.758089999999999, 6.68461, 6.90575, 7.495539999999999, 6.84588, 6.745239999999999, 6.21261, 6.10032, 8.048789999999999, 7.313219999999999, 6.802389999999999, 6.745239999999999, 6.907760000000001, 6.90575, 5.82305, 6.90575, 7.17012, 6.2441699999999996, 8.08641, 5.59842, 7.08171, 6.9594, 6.97354, 7.30653, 6.55962, 6.58617, 6.74406, 7.56008, 6.1944099999999995, 7.408530000000001, 6.61338, 6.01616, 6.32794, 7.18007, 6.74052, 6.95655, 6.58617, 6.66568, 6.85646, 6.44572, 7.313219999999999, 7.1309, 5.99146, 6.18826, 5.59842, 6.49224, 6.821110000000001, 6.56526, 6.47697, 6.813439999999999, 7.43838, 6.30262, 6.38351, 6.551080000000001, 5.45959, 6.43775, 6.90575, 6.53233, 6.61874, 6.06843, 6.1203, 7.88231, 6.90575, 6.7569300000000005, 5.7651900000000005, 6.938280000000001, 7.08255, 6.41346, 6.882439999999999, 7.37776, 6.44413, 6.90575, 6.51471, 6.5439099999999994, 6.551080000000001, 6.90575, 7.35372, 7.135689999999999, 7.46737, 6.63595, 6.802389999999999, 7.346010000000001, 6.90575, 6.86693, 7.1309, 5.78383, 6.829789999999999, 6.65286, 6.7334, 7.2998, 6.65415, 6.9256, 6.90575, 6.39693, 6.52209, 6.3699, 6.770789999999999, 6.39693, 6.49072, 6.02345, 7.32251, 6.13123, 6.29711, 7.04752, 6.799060000000001, 6.272880000000001, 6.49527, 6.57925, 6.697030000000001, 6.703189999999999, 7.04752, 6.65286, 6.752269999999999, 6.2146099999999995, 6.42162, 6.90575, 7.014810000000001, 6.62007, 6.85646, 6.745239999999999, 6.9256, 6.58617, 6.51471, 5.96615, 6.90575, 6.52942, 6.16331, 6.56526, 6.813439999999999, 7.09008, 5.8141300000000005, 6.769639999999999, 6.08677, 6.7369699999999995, 7.064760000000001, 7.11883, 6.51175, 7.46737, 6.57228, 6.551080000000001, 7.67322, 6.35957, 6.907760000000001, 6.58617, 5.8579300000000005, 7.1309, 6.57925, 6.43294, 6.39693, 7.46737, 6.95655, 6.54247, 6.3716099999999996, 7.293019999999999, 6.08677, 7.64969, 6.95655, 8.13153, 6.3613, 6.10925, 6.551080000000001, 6.907760000000001, 6.907760000000001, 6.43775, 6.3243599999999995, 6.83518, 6.993930000000001, 6.6567300000000005, 6.984719999999999, 7.062189999999999, 6.907760000000001, 6.77992, 7.195189999999999, 7.185389999999999, 6.07993, 6.01616, 6.72743, 6.33683, 6.70073, 7.20786, 7.0103100000000005, 6.551080000000001, 7.1309, 6.7334, 7.495539999999999, 6.24028, 6.354369999999999, 6.90575, 6.551080000000001, 7.00307, 6.85013, 7.0255399999999995, 6.39693, 7.495539999999999, 6.768489999999999, 6.23441, 6.461469999999999, 6.5395900000000005, 6.907760000000001, 6.05209, 6.28413, 6.126869999999999, 7.12287, 6.745239999999999, 7.21744, 6.39693, 6.49072, 6.47697, 6.05209, 7.24423, 6.802389999999999, 7.09008, 6.44572, 7.00307, 6.966019999999999, 6.721430000000001, 6.62936, 6.813439999999999, 6.28227, 7.64969, 6.9575, 7.3696, 6.461469999999999, 6.90575, 7.20786, 6.78333, 6.57647, 6.5903, 7.00307, 6.74993, 6.57925, 6.907760000000001, 6.16331, 6.59578, 6.802389999999999, 6.272880000000001, 7.014810000000001, 6.2146099999999995, 6.43615, 6.64509, 6.608, 6.68461, 6.58617, 6.62007, 7.00307, 6.95655, 6.12249, 6.62007, 7.09008, 6.83303, 6.98101, 6.6871100000000006, 6.81014, 7.37776, 6.51767, 6.85435, 7.64969, 7.91936, 6.907760000000001, 6.9256, 6.6733, 7.5574699999999995, 6.13773, 6.67203, 6.30992, 6.47697, 6.8956800000000005, 6.56948, 6.33328, 6.802389999999999, 6.9707300000000005, 8.00637, 6.65286, 6.57368, 5.70711, 6.57786, 6.92363, 6.57368, 7.37776, 6.2146099999999995, 7.408530000000001, 7.1155800000000005, 7.91936, 7.09008, 7.37776, 7.1309, 6.58617, 6.14633, 6.6592899999999995, 6.90575, 7.092569999999999, 6.86485, 7.57558, 7.200419999999999, 6.95655, 6.2146099999999995, 6.05209, 6.44254, 6.4599, 6.60394, 6.975410000000001, 7.400010000000001, 8.537, 6.07993, 7.36645, 6.67708, 6.99942, 6.61338, 7.64969, 6.68461, 6.57925, 7.09008, 7.1082399999999994, 6.83518, 7.09008, 6.58617, 5.8861, 6.90575, 6.43615, 6.84162, 7.313219999999999, 6.55962, 6.07993, 6.3952599999999995, 6.633319999999999, 6.42162, 7.09008, 7.313219999999999, 6.30992, 6.79122, 6.720219999999999, 6.66823, 7.2861899999999995, 6.802389999999999, 6.703189999999999, 5.98896, 7.620710000000001, 7.09008, 7.6009, 6.28972, 6.48768, 6.68461, 6.41182, 7.37776, 7.525639999999999, 6.74993, 6.72623, 7.09008, 7.25347, 7.585789999999999, 6.45362, 6.354369999999999, 6.984719999999999, 6.90575, 6.937310000000001, 7.0775, 7.346010000000001, 7.027310000000001, 6.907760000000001, 6.9489, 6.907760000000001, 7.495539999999999, 6.01127, 6.802389999999999, 6.745239999999999, 6.90575, 6.633319999999999, 6.80572, 6.2480400000000005, 6.2634, 6.31355, 7.35819, 6.49677, 6.68461, 6.633319999999999, 7.30317, 6.95655, 6.907760000000001, 5.742999999999999, 6.39693, 7.313219999999999, 7.09008, 6.47697, 7.196689999999999, 6.47697, 6.30262, 6.745239999999999, 7.07412, 6.354369999999999, 6.10925, 6.68461, 7.42357, 6.95655, 6.715380000000001, 6.9828600000000005, 7.02465, 6.49224, 6.49979, 6.27099, 5.8861, 7.393260000000001, 6.829789999999999, 6.32794, 6.28786, 5.9839400000000005, 6.68461, 5.84354, 6.62007, 7.12287, 6.2146099999999995, 6.84162, 7.00307, 6.2146099999999995, 6.983789999999999, 6.35611, 6.17379, 6.95655, 6.39693, 6.88755, 7.04316, 6.90575, 6.84162, 6.45362, 6.83518, 6.85646, 6.46925, 5.99146, 6.62007, 7.00307, 5.99146, 6.22654, 6.633319999999999, 6.77308, 7.1107, 6.95655, 6.967910000000001, 6.995769999999999, 6.66568, 6.594410000000001, 6.90575, 6.5439099999999994, 6.62007, 6.60665, 7.04752, 7.062189999999999, 7.313219999999999, 7.04752, 7.0884100000000005, 6.937310000000001, 6.90575, 6.23441, 6.25767, 6.551080000000001, 6.90575, 7.09008, 6.68461, 6.2146099999999995, 6.386880000000001, 6.44413, 6.58617, 6.10925, 6.90073, 6.745239999999999, 7.2233, 6.8773, 6.813439999999999, 7.037030000000001, 6.40523, 6.2146099999999995, 6.17379, 7.6009, 6.30992, 6.685860000000001, 5.99146, 6.38856, 6.47697, 7.46737, 6.551080000000001, 6.9226399999999995, 6.87213, 6.73102, 6.30992, 7.45298, 5.72359, 6.882439999999999, 5.940169999999999, 6.90675, 6.551080000000001, 6.9147300000000005, 6.85646, 6.563860000000001, 6.381819999999999, 5.78996, 6.769639999999999, 6.73102, 7.06133, 6.68461, 6.2146099999999995, 6.4708, 7.08171, 6.90575, 7.6009, 6.52062, 6.907760000000001, 6.60935, 6.51471, 6.9828600000000005, 6.85646, 6.30992, 7.338889999999999, 6.22654, 6.311730000000001, 7.01392, 6.49224, 6.2205900000000005, 7.44659, 7.388330000000001, 6.85118, 7.24423, 6.632000000000001, 6.90575, 7.10906, 6.944089999999999, 6.83518, 6.222580000000001, 6.84588, 7.17012, 6.52503, 6.2860000000000005, 6.80128, 6.07993 ], "xaxis": "x2", "y0": "yes", "yaxis": "y2" } ], "layout": { "annotations": [ { "font": { "size": 16 }, "showarrow": false, "text": "BeanPlot", "x": 0.225, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 16 }, "showarrow": false, "text": "PiratePlot", "x": 0.775, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" } ], "margin": { "t": 20 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "barpolar" } ], "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" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "colorscale": { "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" ] ], "sequential": [ [ 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, "#f0f921" ] ], "sequentialminus": [ [ 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, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "zerolinecolor": "white", "zerolinewidth": 2 } } }, "xaxis": { "anchor": "y", "domain": [ 0, 0.45 ], "title": { "text": "Wage (log)" } }, "xaxis2": { "anchor": "y2", "domain": [ 0.55, 1 ] }, "yaxis": { "anchor": "x", "domain": [ 0, 1 ], "showgrid": true, "title": { "text": "Married+Gender" } }, "yaxis2": { "anchor": "x2", "domain": [ 0, 1 ], "matches": "y", "showticklabels": false } } }, "text/html": [ "
\n", " \n", " \n", "
\n", " \n", "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "(bt1,layout)=cmplot(train, xcol=\"sex\", ycol=\"lwage\", orientation=\"h\",inf=\"none\",ycolorgroups=False,\n", " side=\"both\",colorshift=2,colorrange=4,pointsopacity=1,showpoints=True,showboxplot=False,pointshapes=[\"line-ns\"],\n", " markoutliers=False,pointsmaxdisplayed=200)\n", "(bt2,layout)=cmplot(train, xcol=\"married\", ycol=\"lwage\", orientation=\"h\",inf=\"none\",ycolorgroups=False,\n", " side=\"both\",colorshift=0,colorrange=4,pointsopacity=1,showpoints=True,showboxplot=False,pointshapes=[\"line-ns\"],\n", " markoutliers=False,pointsmaxdisplayed=200)\n", "\n", "(pt1,layout)=cmplot(train, xcol=\"sex\", ycol=\"lwage\", orientation=\"h\",inf=\"hdi\",ycolorgroups=False,\n", " side=\"both\",colorshift=2,colorrange=4,pointsopacity=0.3,showpoints=True,showboxplot=False,pointshapes=[\"circle\"],\n", " markoutliers=False,pointsmaxdisplayed=200)\n", "(pt2,layout)=cmplot(train, xcol=\"married\", ycol=\"lwage\", orientation=\"h\",inf=\"hdi\",ycolorgroups=False,\n", " side=\"both\",colorshift=0,colorrange=4,pointsopacity=0.3,showpoints=True,showboxplot=False,pointshapes=[\"circle\"],\n", " markoutliers=False,pointsmaxdisplayed=200)\n", "\n", "fig = make_subplots(rows=1, cols=2,subplot_titles=(\"BeanPlot\",\"PiratePlot\"),shared_yaxes=True)\n", "for i in range(0,4):\n", " fig.add_trace(bt1[i],row=1,col=1)\n", "for i in range(0,4):\n", " fig.add_trace(bt2[i],row=1,col=1)\n", "for i in range(0,6):\n", " fig.add_trace(pt1[i],row=1,col=2)\n", " fig.add_trace(pt2[i],row=1,col=2)\n", "\n", "fig.update_layout(xaxis_title=\"Wage (log)\",yaxis_title=\"Married+Gender\",\n", " yaxis_showgrid=True,\n", " margin_t=20\n", " )" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Until we arrive to the cloudy mountain plots:" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "fillcolor": "hsla(246, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(246, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "female", "line": { "color": "hsla(246, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(246, 70%, 70%,1)", "line": { "color": "hsla(246, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.2, "size": 9, "symbol": "triangle-up" }, "meanline": { "color": "hsla(246, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage female", "orientation": "h", "pointpos": 1, "points": false, "scalegroup": "female", "scalemode": "count", "showlegend": true, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.55536, 6.39693, 6.907760000000001, 6.50279, 6.614730000000001, 6.30992, 6.62007, 6.17379, 6.2146099999999995, 6.65286, 6.30992, 6.48158, 6.907760000000001, 5.8999, 6.05209, 5.73334, 6.3952599999999995, 6.43775, 6.907760000000001, 5.463830000000001, 5.43808, 6.77422, 6.47697, 5.68358, 6.2146099999999995, 6.10925, 6.6783399999999995, 7.1309, 6.39693, 6.77422, 5.96615, 5.90808, 6.39693, 5.0814, 7.09008, 4.605169999999999, 6.7901, 6.65286, 6.86485, 6.92461, 5.99146, 6.85646, 5.4161, 6.30079, 5.76832, 6.16542, 5.93489, 7.04752, 6.19644, 5.7525699999999995, 6.318969999999999, 5.9454199999999995, 6.4677, 6.768489999999999, 6.2480400000000005, 6.33328, 6.48311, 7.00307, 5.8999, 6.62007, 6.36475, 6.65286, 5.7525699999999995, 6.025869999999999, 6.20456, 6.31536, 5.95324, 6.1070199999999994, 6.05209, 5.9269300000000005, 5.51745, 6.715380000000001, 6.85646, 6.85646, 6.32972, 6.802389999999999, 6.16331, 6.95655, 6.2634, 6.3716099999999996, 6.10925, 6.93537, 6.56244, 6.23245, 7.1309, 6.57925, 6.30992, 6.34388, 5.34711, 7.279319999999999, 6.58064, 6.33683, 6.5582, 6.354369999999999, 5.95324, 5.9454199999999995, 5.64545, 5.7525699999999995, 6.28972, 6.2952699999999995, 6.05209, 6.551080000000001, 6.621410000000001, 5.82305, 6.12905, 6.02345, 5.883319999999999, 6.907760000000001, 5.59842, 6.58617, 6.901739999999999, 6.10925, 5.8579300000000005, 6.17379, 5.81711, 6.44254, 6.30079, 6.745239999999999, 6.7901, 6.51471, 6.17379, 6.07993, 6.11589, 5.74939, 6.33328, 6.386880000000001, 7.0255399999999995, 5.8141300000000005, 5.86647, 6.01616, 6.278519999999999, 6.30992, 6.10925, 6.785589999999999, 6.47697, 7.04752, 6.04025, 6.39693, 6.36819, 6.43775, 5.940169999999999, 6.35957, 6.2146099999999995, 6.253830000000001, 6.1025599999999995, 6.1025599999999995, 6.15698, 6.96885, 6.885510000000001, 6.1717, 5.958419999999999, 5.98645, 5.8579300000000005, 6.715380000000001, 5.8861, 6.10925, 6.65286, 6.39693, 5.65948, 5.940169999999999, 6.26149, 6.551080000000001, 6.29157, 5.50126, 6.77422, 5.82008, 6.4708, 6.15698, 5.8999, 5.99146, 6.33328, 6.9707300000000005, 6.6567300000000005, 6.745239999999999, 6.93049, 6.849069999999999, 6.1070199999999994, 6.712960000000001, 5.97635, 6.29157, 6.86901, 6.0282800000000005, 6.39859, 5.42935, 6.6592899999999995, 6.907760000000001, 6.47697, 6.551080000000001, 6.68461, 6.45834, 5.8141300000000005, 6.88755, 6.23441, 6.463030000000001, 6.65286, 6.39693, 5.8141300000000005, 6.3952599999999995, 6.06379, 5.42053, 5.8861, 6.52209, 5.8861, 7.20786, 6.05209, 5.52146, 5.52146, 6.06379, 6.2205900000000005, 6.0822199999999995, 7.04752, 6.3952599999999995, 6.70073, 6.07993, 6.46925, 6.22654, 6.39693, 6.58755, 6.8254600000000005, 5.99146, 6.62007, 6.62007, 6.29895, 5.8579300000000005, 6.745239999999999, 5.93225, 6.49072, 5.78383, 6.35957, 5.82008, 6.04025, 6.39693, 6.59715, 5.01064, 6.77422, 6.30992, 5.5606800000000005, 6.8426800000000005, 6.30992, 6.602589999999999, 6.424869999999999, 6.259580000000001, 6.2634, 5.97635, 6.04025, 6.07993, 6.551080000000001, 6.17587, 5.8693, 6.43775, 6.73459, 5.70378, 6.49224, 6.29157, 6.2146099999999995, 6.63068, 6.682110000000001, 6.19236, 5.68698, 6.12249, 6.14847, 5.88053, 6.10925, 6.38856, 5.86079, 5.99894, 5.39363, 5.96615, 6.52209, 5.96615, 5.9135, 6.6896, 6.14419, 6.692080000000001, 6.013719999999999, 6.224559999999999, 6.07304, 6.2146099999999995, 6.802389999999999, 5.95324, 6.43615, 5.8579300000000005, 6.33683, 5.97889, 6.2146099999999995, 6.34388, 7.18917, 6.1070199999999994, 6.30992, 6.36819, 6.23637, 5.52146, 6.47697, 6.36303, 6.748760000000001, 6.633319999999999, 6.04025, 5.7525699999999995, 6.47697, 6.0330900000000005, 5.8861, 5.82305, 7.0422899999999995, 5.39363, 5.43808, 5.95324, 5.8999, 6.2146099999999995, 6.2804, 6.39693, 5.89715, 6.06611, 6.2146099999999995, 6.0845, 5.48064, 6.3952599999999995, 6.27099, 6.58617, 6.2146099999999995, 6.73102, 6.035480000000001, 6.206580000000001, 6.39859, 6.551080000000001, 6.43775, 6.02345, 5.9269300000000005, 6.72743, 6.2634, 6.646389999999999, 5.5797300000000005, 6.07993, 5.4161, 6.47697, 5.50126, 6.583410000000001, 6.44731, 5.82895, 6.2146099999999995, 6.73815, 6.802389999999999, 6.77422, 6.1944099999999995, 6.70073, 6.0282800000000005, 6.593039999999999, 6.85646, 5.01064, 6.745239999999999, 6.85646, 6.79347, 5.65249, 6.39693, 6.317159999999999, 6.35611, 5.8579300000000005, 6.18415, 6.05209, 5.84354, 6.46925, 5.99894, 6.745239999999999, 6.77765, 6.30992, 5.8999, 5.8861, 7.216710000000001, 6.65286, 6.2146099999999995, 6.88857, 5.76205, 5.68698, 6.1203, 5.7365699999999995, 5.7365699999999995, 6.2146099999999995, 5.47227, 6.2146099999999995, 7.04752, 6.30992, 7.17012, 6.551080000000001, 5.7365699999999995, 5.64191, 6.21261, 6.47697, 6.95655, 5.61313, 6.62672, 6.23441, 5.7462, 6.056780000000001, 5.8944, 5.84932, 6.06843, 5.53339, 6.49375, 5.7365699999999995, 5.76832, 5.5797300000000005, 6.23832, 5.79606, 6.19644, 6.19236, 6.6253899999999994, 5.7525699999999995, 5.8579300000000005, 6.14633, 6.712960000000001, 6.16331, 6.3716099999999996, 6.62007, 6.30992, 6.47697, 6.62007, 6.551080000000001, 6.18002, 6.745239999999999, 5.96358, 6.39693, 6.14204, 5.5797300000000005, 6.11147, 5.66988, 5.73334, 5.90808, 5.9269300000000005, 6.2186, 5.8861, 6.68461, 6.643789999999999, 5.66988, 6.39693, 6.06611, 6.57786, 5.43808, 5.8141300000000005, 6.3315, 6.86485, 6.04025, 6.7901, 6.56244, 6.253830000000001, 6.57228, 6.05209, 5.93225, 5.273, 6.2186, 6.1717, 6.47697, 6.05209, 5.8579300000000005, 6.86693, 6.36303, 5.99146, 5.19296, 6.39693, 5.95584, 6.7093, 6.62007, 6.41017, 6.556780000000001, 5.8141300000000005, 6.30992, 6.39693, 6.26149, 5.94803, 6.65544, 6.3081 ], "y0": "female" }, { "box": { "visible": false }, "fillcolor": "rgba(0, 0, 0, 0)", "hoverinfo": "x", "hoveron": "points", "jitter": 0.3, "legendgroup": "female", "line": { "color": "rgba(0, 0, 0, 0)", "width": 0 }, "marker": { "color": "hsla(246, 70%, 70%,1)", "line": { "color": "hsla(246, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.2, "size": 9, "symbol": "triangle-up" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 1, "points": "all", "scalegroup": "female", "showlegend": false, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.55536, 6.39693, 6.907760000000001, 6.50279, 6.614730000000001, 6.30992, 6.62007, 6.17379, 6.2146099999999995, 6.65286, 6.30992, 6.48158, 6.907760000000001, 5.8999, 6.05209, 5.73334, 6.3952599999999995, 6.43775, 6.907760000000001, 5.463830000000001, 5.43808, 6.77422, 6.47697, 5.68358, 6.2146099999999995, 6.10925, 6.6783399999999995, 7.1309, 6.39693, 6.77422, 5.96615, 5.90808, 6.39693, 5.0814, 7.09008, 4.605169999999999, 6.7901, 6.65286, 6.86485, 6.92461, 5.99146, 6.85646, 5.4161, 6.30079, 5.76832, 6.16542, 5.93489, 7.04752, 6.19644, 5.7525699999999995, 6.318969999999999, 5.9454199999999995, 6.4677, 6.768489999999999, 6.2480400000000005, 6.33328, 6.48311, 7.00307, 5.8999, 6.62007, 6.36475, 6.65286, 5.7525699999999995, 6.025869999999999, 6.20456, 6.31536, 5.95324, 6.1070199999999994, 6.05209, 5.9269300000000005, 5.51745, 6.715380000000001, 6.85646, 6.85646, 6.32972, 6.802389999999999, 6.16331, 6.95655, 6.2634, 6.3716099999999996, 6.10925, 6.93537, 6.56244, 6.23245, 7.1309, 6.57925, 6.30992, 6.34388, 5.34711, 7.279319999999999, 6.58064, 6.33683, 6.5582, 6.354369999999999, 5.95324, 5.9454199999999995, 5.64545, 5.7525699999999995, 6.28972, 6.2952699999999995, 6.05209, 6.551080000000001, 6.621410000000001, 5.82305, 6.12905, 6.02345, 5.883319999999999, 6.907760000000001, 5.59842, 6.58617, 6.901739999999999, 6.10925, 5.8579300000000005, 6.17379, 5.81711, 6.44254, 6.30079, 6.745239999999999, 6.7901, 6.51471, 6.17379, 6.07993, 6.11589, 5.74939, 6.33328, 6.386880000000001, 7.0255399999999995, 5.8141300000000005, 5.86647, 6.01616, 6.278519999999999, 6.30992, 6.10925, 6.785589999999999, 6.47697, 7.04752, 6.04025, 6.39693, 6.36819, 6.43775, 5.940169999999999, 6.35957, 6.2146099999999995, 6.253830000000001, 6.1025599999999995, 6.1025599999999995, 6.15698, 6.96885, 6.885510000000001, 6.1717, 5.958419999999999, 5.98645, 5.8579300000000005, 6.715380000000001, 5.8861, 6.10925, 6.65286, 6.39693, 5.65948, 5.940169999999999, 6.26149, 6.551080000000001, 6.29157, 5.50126, 6.77422, 5.82008, 6.4708, 6.15698, 5.8999, 5.99146, 6.33328, 6.9707300000000005, 6.6567300000000005, 6.745239999999999, 6.93049, 6.849069999999999, 6.1070199999999994, 6.712960000000001, 5.97635, 6.29157, 6.86901, 6.0282800000000005, 6.39859, 5.42935, 6.6592899999999995, 6.907760000000001, 6.47697, 6.551080000000001, 6.68461, 6.45834, 5.8141300000000005, 6.88755, 6.23441, 6.463030000000001, 6.65286, 6.39693, 5.8141300000000005, 6.3952599999999995, 6.06379, 5.42053, 5.8861, 6.52209, 5.8861, 7.20786, 6.05209, 5.52146, 5.52146, 6.06379, 6.2205900000000005, 6.0822199999999995, 7.04752, 6.3952599999999995, 6.70073, 6.07993, 6.46925, 6.22654, 6.39693, 6.58755, 6.8254600000000005, 5.99146, 6.62007, 6.62007, 6.29895, 5.8579300000000005, 6.745239999999999, 5.93225, 6.49072, 5.78383, 6.35957, 5.82008, 6.04025, 6.39693, 6.59715, 5.01064, 6.77422, 6.30992, 5.5606800000000005, 6.8426800000000005, 6.30992, 6.602589999999999, 6.424869999999999, 6.259580000000001, 6.2634, 5.97635, 6.04025, 6.07993, 6.551080000000001, 6.17587, 5.8693, 6.43775, 6.73459, 5.70378, 6.49224, 6.29157, 6.2146099999999995, 6.63068, 6.682110000000001, 6.19236, 5.68698, 6.12249, 6.14847, 5.88053, 6.10925, 6.38856, 5.86079, 5.99894, 5.39363, 5.96615, 6.52209, 5.96615, 5.9135, 6.6896, 6.14419, 6.692080000000001, 6.013719999999999, 6.224559999999999, 6.07304, 6.2146099999999995, 6.802389999999999, 5.95324, 6.43615, 5.8579300000000005, 6.33683, 5.97889, 6.2146099999999995, 6.34388, 7.18917, 6.1070199999999994, 6.30992, 6.36819, 6.23637, 5.52146, 6.47697, 6.36303, 6.748760000000001, 6.633319999999999, 6.04025, 5.7525699999999995, 6.47697, 6.0330900000000005, 5.8861, 5.82305, 7.0422899999999995, 5.39363, 5.43808, 5.95324, 5.8999, 6.2146099999999995, 6.2804, 6.39693, 5.89715, 6.06611, 6.2146099999999995, 6.0845, 5.48064, 6.3952599999999995, 6.27099, 6.58617, 6.2146099999999995, 6.73102, 6.035480000000001, 6.206580000000001, 6.39859, 6.551080000000001, 6.43775, 6.02345, 5.9269300000000005, 6.72743, 6.2634, 6.646389999999999, 5.5797300000000005, 6.07993, 5.4161, 6.47697, 5.50126, 6.583410000000001, 6.44731, 5.82895, 6.2146099999999995, 6.73815, 6.802389999999999, 6.77422, 6.1944099999999995, 6.70073, 6.0282800000000005, 6.593039999999999, 6.85646, 5.01064, 6.745239999999999, 6.85646, 6.79347, 5.65249, 6.39693, 6.317159999999999, 6.35611, 5.8579300000000005, 6.18415, 6.05209, 5.84354, 6.46925, 5.99894, 6.745239999999999, 6.77765, 6.30992, 5.8999, 5.8861, 7.216710000000001, 6.65286, 6.2146099999999995, 6.88857, 5.76205, 5.68698, 6.1203, 5.7365699999999995, 5.7365699999999995, 6.2146099999999995, 5.47227, 6.2146099999999995, 7.04752, 6.30992, 7.17012, 6.551080000000001, 5.7365699999999995, 5.64191, 6.21261, 6.47697, 6.95655, 5.61313, 6.62672, 6.23441, 5.7462, 6.056780000000001, 5.8944, 5.84932, 6.06843, 5.53339, 6.49375, 5.7365699999999995, 5.76832, 5.5797300000000005 ], "y0": "female" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(246, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(246, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "female", "line": { "width": 0 }, "marker": { "color": "hsla(246, 50%, 50%,0.9)", "line": { "color": "hsla(246, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "triangle-up" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "female", "showlegend": false, "side": "positive", "span": [ 6.215519641696276, 6.291877166129352 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 6.55536, 6.39693, 6.907760000000001, 6.50279, 6.614730000000001, 6.30992, 6.62007, 6.17379, 6.2146099999999995, 6.65286, 6.30992, 6.48158, 6.907760000000001, 5.8999, 6.05209, 5.73334, 6.3952599999999995, 6.43775, 6.907760000000001, 5.463830000000001, 5.43808, 6.77422, 6.47697, 5.68358, 6.2146099999999995, 6.10925, 6.6783399999999995, 7.1309, 6.39693, 6.77422, 5.96615, 5.90808, 6.39693, 5.0814, 7.09008, 4.605169999999999, 6.7901, 6.65286, 6.86485, 6.92461, 5.99146, 6.85646, 5.4161, 6.30079, 5.76832, 6.16542, 5.93489, 7.04752, 6.19644, 5.7525699999999995, 6.318969999999999, 5.9454199999999995, 6.4677, 6.768489999999999, 6.2480400000000005, 6.33328, 6.48311, 7.00307, 5.8999, 6.62007, 6.36475, 6.65286, 5.7525699999999995, 6.025869999999999, 6.20456, 6.31536, 5.95324, 6.1070199999999994, 6.05209, 5.9269300000000005, 5.51745, 6.715380000000001, 6.85646, 6.85646, 6.32972, 6.802389999999999, 6.16331, 6.95655, 6.2634, 6.3716099999999996, 6.10925, 6.93537, 6.56244, 6.23245, 7.1309, 6.57925, 6.30992, 6.34388, 5.34711, 7.279319999999999, 6.58064, 6.33683, 6.5582, 6.354369999999999, 5.95324, 5.9454199999999995, 5.64545, 5.7525699999999995, 6.28972, 6.2952699999999995, 6.05209, 6.551080000000001, 6.621410000000001, 5.82305, 6.12905, 6.02345, 5.883319999999999, 6.907760000000001, 5.59842, 6.58617, 6.901739999999999, 6.10925, 5.8579300000000005, 6.17379, 5.81711, 6.44254, 6.30079, 6.745239999999999, 6.7901, 6.51471, 6.17379, 6.07993, 6.11589, 5.74939, 6.33328, 6.386880000000001, 7.0255399999999995, 5.8141300000000005, 5.86647, 6.01616, 6.278519999999999, 6.30992, 6.10925, 6.785589999999999, 6.47697, 7.04752, 6.04025, 6.39693, 6.36819, 6.43775, 5.940169999999999, 6.35957, 6.2146099999999995, 6.253830000000001, 6.1025599999999995, 6.1025599999999995, 6.15698, 6.96885, 6.885510000000001, 6.1717, 5.958419999999999, 5.98645, 5.8579300000000005, 6.715380000000001, 5.8861, 6.10925, 6.65286, 6.39693, 5.65948, 5.940169999999999, 6.26149, 6.551080000000001, 6.29157, 5.50126, 6.77422, 5.82008, 6.4708, 6.15698, 5.8999, 5.99146, 6.33328, 6.9707300000000005, 6.6567300000000005, 6.745239999999999, 6.93049, 6.849069999999999, 6.1070199999999994, 6.712960000000001, 5.97635, 6.29157, 6.86901, 6.0282800000000005, 6.39859, 5.42935, 6.6592899999999995, 6.907760000000001, 6.47697, 6.551080000000001, 6.68461, 6.45834, 5.8141300000000005, 6.88755, 6.23441, 6.463030000000001, 6.65286, 6.39693, 5.8141300000000005, 6.3952599999999995, 6.06379, 5.42053, 5.8861, 6.52209, 5.8861, 7.20786, 6.05209, 5.52146, 5.52146, 6.06379, 6.2205900000000005, 6.0822199999999995, 7.04752, 6.3952599999999995, 6.70073, 6.07993, 6.46925, 6.22654, 6.39693, 6.58755, 6.8254600000000005, 5.99146, 6.62007, 6.62007, 6.29895, 5.8579300000000005, 6.745239999999999, 5.93225, 6.49072, 5.78383, 6.35957, 5.82008, 6.04025, 6.39693, 6.59715, 5.01064, 6.77422, 6.30992, 5.5606800000000005, 6.8426800000000005, 6.30992, 6.602589999999999, 6.424869999999999, 6.259580000000001, 6.2634, 5.97635, 6.04025, 6.07993, 6.551080000000001, 6.17587, 5.8693, 6.43775, 6.73459, 5.70378, 6.49224, 6.29157, 6.2146099999999995, 6.63068, 6.682110000000001, 6.19236, 5.68698, 6.12249, 6.14847, 5.88053, 6.10925, 6.38856, 5.86079, 5.99894, 5.39363, 5.96615, 6.52209, 5.96615, 5.9135, 6.6896, 6.14419, 6.692080000000001, 6.013719999999999, 6.224559999999999, 6.07304, 6.2146099999999995, 6.802389999999999, 5.95324, 6.43615, 5.8579300000000005, 6.33683, 5.97889, 6.2146099999999995, 6.34388, 7.18917, 6.1070199999999994, 6.30992, 6.36819, 6.23637, 5.52146, 6.47697, 6.36303, 6.748760000000001, 6.633319999999999, 6.04025, 5.7525699999999995, 6.47697, 6.0330900000000005, 5.8861, 5.82305, 7.0422899999999995, 5.39363, 5.43808, 5.95324, 5.8999, 6.2146099999999995, 6.2804, 6.39693, 5.89715, 6.06611, 6.2146099999999995, 6.0845, 5.48064, 6.3952599999999995, 6.27099, 6.58617, 6.2146099999999995, 6.73102, 6.035480000000001, 6.206580000000001, 6.39859, 6.551080000000001, 6.43775, 6.02345, 5.9269300000000005, 6.72743, 6.2634, 6.646389999999999, 5.5797300000000005, 6.07993, 5.4161, 6.47697, 5.50126, 6.583410000000001, 6.44731, 5.82895, 6.2146099999999995, 6.73815, 6.802389999999999, 6.77422, 6.1944099999999995, 6.70073, 6.0282800000000005, 6.593039999999999, 6.85646, 5.01064, 6.745239999999999, 6.85646, 6.79347, 5.65249, 6.39693, 6.317159999999999, 6.35611, 5.8579300000000005, 6.18415, 6.05209, 5.84354, 6.46925, 5.99894, 6.745239999999999, 6.77765, 6.30992, 5.8999, 5.8861, 7.216710000000001, 6.65286, 6.2146099999999995, 6.88857, 5.76205, 5.68698, 6.1203, 5.7365699999999995, 5.7365699999999995, 6.2146099999999995, 5.47227, 6.2146099999999995, 7.04752, 6.30992, 7.17012, 6.551080000000001, 5.7365699999999995, 5.64191, 6.21261, 6.47697, 6.95655, 5.61313, 6.62672, 6.23441, 5.7462, 6.056780000000001, 5.8944, 5.84932, 6.06843, 5.53339, 6.49375, 5.7365699999999995, 5.76832, 5.5797300000000005, 6.23832, 5.79606, 6.19644, 6.19236, 6.6253899999999994, 5.7525699999999995, 5.8579300000000005, 6.14633, 6.712960000000001, 6.16331, 6.3716099999999996, 6.62007, 6.30992, 6.47697, 6.62007, 6.551080000000001, 6.18002, 6.745239999999999, 5.96358, 6.39693, 6.14204, 5.5797300000000005, 6.11147, 5.66988, 5.73334, 5.90808, 5.9269300000000005, 6.2186, 5.8861, 6.68461, 6.643789999999999, 5.66988, 6.39693, 6.06611, 6.57786, 5.43808, 5.8141300000000005, 6.3315, 6.86485, 6.04025, 6.7901, 6.56244, 6.253830000000001, 6.57228, 6.05209, 5.93225, 5.273, 6.2186, 6.1717, 6.47697, 6.05209, 5.8579300000000005, 6.86693, 6.36303, 5.99146, 5.19296, 6.39693, 5.95584, 6.7093, 6.62007, 6.41017, 6.556780000000001, 5.8141300000000005, 6.30992, 6.39693, 6.26149, 5.94803, 6.65544, 6.3081 ], "y0": "female" }, { "fillcolor": "hsla(328, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(328, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "male", "line": { "color": "hsla(328, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(328, 70%, 70%,1)", "line": { "color": "hsla(328, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.2, "size": 9, "symbol": "triangle-down" }, "meanline": { "color": "hsla(328, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage male", "orientation": "h", "pointpos": 1, "points": false, "scalegroup": "male", "scalemode": "count", "showlegend": true, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.99942, 5.99146, 7.67322, 7.09008, 5.61677, 6.646389999999999, 7.02643, 6.4552, 7.32975, 6.95845, 7.06902, 6.04025, 6.907760000000001, 7.91936, 6.745239999999999, 6.30079, 7.068169999999999, 6.07535, 6.7417, 7.71869, 6.882439999999999, 6.47697, 6.77878, 6.907760000000001, 6.93342, 7.06902, 6.57368, 6.829789999999999, 7.557989999999999, 6.892639999999999, 7.0255399999999995, 6.57925, 7.313219999999999, 6.47697, 7.1309, 6.551080000000001, 6.882439999999999, 6.907760000000001, 6.682110000000001, 6.39693, 6.48004, 6.60665, 7.00307, 6.10925, 5.78383, 6.94505, 6.9546399999999995, 7.17012, 7.11477, 6.993930000000001, 6.593039999999999, 6.49979, 6.5439099999999994, 6.39192, 6.51471, 6.30992, 6.30992, 7.116389999999999, 6.46925, 7.554860000000001, 6.90675, 6.85646, 5.94803, 6.90575, 6.90575, 7.408530000000001, 7.0076, 6.88857, 7.35947, 6.39693, 7.041410000000001, 6.66696, 6.30992, 7.313219999999999, 6.787839999999999, 6.90575, 6.802389999999999, 7.00307, 7.074960000000001, 7.5606, 5.99146, 6.16331, 5.94803, 6.43775, 7.282760000000001, 6.39693, 6.813439999999999, 6.694560000000001, 6.29157, 6.23048, 6.67203, 6.16331, 6.88755, 6.95655, 7.56008, 6.28227, 6.30992, 6.05912, 6.602589999999999, 7.47307, 6.2146099999999995, 6.95655, 6.90575, 6.461469999999999, 7.09008, 7.46737, 6.829789999999999, 6.60665, 6.74052, 6.745239999999999, 7.6009, 6.62007, 6.551080000000001, 6.663130000000001, 7.60589, 6.53669, 6.5582, 6.16121, 6.19236, 6.2146099999999995, 7.37776, 6.6995, 6.58617, 6.23832, 6.27476, 6.48311, 6.69084, 6.54965, 6.745239999999999, 6.882439999999999, 6.663130000000001, 5.70378, 6.7226300000000005, 7.20786, 6.802389999999999, 6.79122, 6.62007, 6.42162, 6.12249, 6.90575, 6.28227, 6.745239999999999, 6.206580000000001, 5.99146, 6.682110000000001, 6.49677, 7.408530000000001, 6.10925, 6.317159999999999, 6.2146099999999995, 6.551080000000001, 6.25575, 7.0884100000000005, 6.16331, 6.68461, 5.8999, 7.01392, 7.1107, 6.9363399999999995, 6.90575, 6.1070199999999994, 6.85646, 6.44572, 6.551080000000001, 6.84588, 8.10168, 7.31255, 5.99645, 6.90575, 6.802389999999999, 7.111510000000001, 6.2146099999999995, 6.66696, 6.907760000000001, 6.90575, 6.6592899999999995, 8.047189999999999, 6.62407, 7.0076, 6.30992, 6.17379, 6.55393, 6.24611, 7.78322, 6.563860000000001, 6.60665, 7.12448, 6.507280000000001, 6.461469999999999, 6.8977, 7.82405, 7.75148, 6.62407, 7.346010000000001, 6.2146099999999995, 7.1309, 6.51471, 5.96615, 6.84055, 7.041410000000001, 6.51471, 6.551080000000001, 7.346010000000001, 6.966019999999999, 6.90575, 7.17012, 6.5820300000000005, 7.04752, 6.354369999999999, 6.59578, 7.82405, 6.5467900000000006, 6.551080000000001, 6.39693, 6.88755, 6.39693, 6.39693, 6.65286, 6.36647, 6.622739999999999, 6.90575, 5.7525699999999995, 6.15273, 7.04752, 5.52146, 6.770789999999999, 6.907760000000001, 7.00125, 7.064760000000001, 7.00307, 6.05209, 6.745239999999999, 7.045780000000001, 6.54535, 6.37673, 6.62007, 6.907760000000001, 6.10925, 6.39693, 8.16052, 6.745239999999999, 7.03527, 6.765039999999999, 7.1309, 6.77422, 6.87213, 6.551080000000001, 6.907760000000001, 6.6567300000000005, 6.80017, 7.226210000000001, 6.10925, 6.90575, 6.70073, 7.495539999999999, 8.05516, 6.9256, 7.06987, 6.694560000000001, 6.90575, 6.43775, 6.97261, 7.29709, 7.179310000000001, 7.313219999999999, 6.7226300000000005, 6.82437, 6.715380000000001, 7.173189999999999, 6.62007, 6.77878, 6.7226300000000005, 6.85118, 6.49224, 7.313219999999999, 6.62007, 7.158510000000001, 6.818919999999999, 6.68461, 6.57647, 6.43455, 5.89715, 6.34564, 6.556780000000001, 6.7093, 6.93925, 7.00307, 6.551080000000001, 6.90575, 6.53669, 6.69084, 7.313219999999999, 6.05209, 6.90575, 6.62007, 6.4552, 6.77422, 6.87005, 6.65544, 6.42162, 5.9269300000000005, 6.317159999999999, 6.42972, 6.62007, 6.96508, 6.19236, 6.61607, 5.5606800000000005, 6.57368, 6.2634, 6.715380000000001, 7.408530000000001, 6.17379, 7.333019999999999, 6.37502, 6.16331, 6.317159999999999, 7.04752, 6.68461, 6.98008, 6.912739999999999, 6.86693, 7.3670800000000005, 6.68461, 6.90575, 6.90575, 6.62007, 6.45362, 6.49072, 6.47697, 6.9431199999999995, 6.90575, 6.10925, 6.67203, 6.7334, 7.34278, 6.802389999999999, 6.90575, 6.658010000000001, 6.9256, 6.90575, 6.91075, 6.6592899999999995, 5.8579300000000005, 6.6592899999999995, 6.16331, 7.441319999999999, 6.47851, 7.07834, 6.745239999999999, 7.20786, 6.36475, 6.63857, 7.475910000000001, 6.62007, 6.4892, 7.00307, 6.56948, 7.43838, 7.15383, 7.064760000000001, 6.88755, 7.26193, 6.23245, 6.30445, 6.715380000000001, 7.313219999999999, 7.37776, 5.8579300000000005, 6.85646, 6.2441699999999996, 7.26193, 6.90575, 6.907760000000001, 6.272880000000001, 6.66568, 7.481560000000001, 7.04752, 6.61338, 6.40688, 6.73815, 5.8579300000000005, 7.57558, 6.83518, 6.38856, 6.768489999999999, 6.90575, 6.86693, 6.39693, 6.34739, 7.1507, 6.58617, 7.282760000000001, 7.00307, 6.66058, 6.58064, 6.90575, 6.10925, 6.64249, 6.715380000000001, 6.62007, 7.1309, 6.51471, 5.99146, 6.95655, 6.65286, 6.16331, 6.24611, 7.1309, 7.1333, 7.24423, 6.04025, 6.86901, 6.802389999999999, 6.70073, 6.1203, 6.90575, 7.313219999999999, 6.54822, 6.95655, 7.50108, 6.39693, 6.551080000000001, 7.07918, 5.8579300000000005, 5.70378, 6.7369699999999995, 7.745, 6.87213, 5.89715, 6.39693, 6.30628, 6.8773, 6.708080000000001, 6.52942, 6.818919999999999, 7.041410000000001, 6.06611, 6.882439999999999, 6.94986, 6.703189999999999, 6.37502, 5.70378, 7.03615, 7.37776, 5.66988, 6.907760000000001, 6.882439999999999, 6.752269999999999, 6.48158, 6.47697, 7.04752, 6.802389999999999, 6.984719999999999, 5.9269300000000005, 6.49224, 6.385190000000001, 7.1309, 7.663880000000001, 7.07242, 6.907760000000001, 6.43775, 8.05516, 6.807930000000001, 6.785589999999999, 6.907760000000001, 6.403569999999999, 6.035480000000001, 7.24423, 6.05209, 7.338889999999999, 7.0255399999999995, 7.00307, 5.99146, 6.33683, 6.07993, 7.488289999999999, 6.51175, 5.7365699999999995, 5.7365699999999995, 6.90575, 6.697030000000001, 6.354369999999999, 6.802389999999999, 6.62007, 6.68461, 6.68835, 5.8260000000000005, 6.85646, 6.44572, 6.95655, 7.20786, 6.3716099999999996, 6.8977, 6.47697, 6.802389999999999, 6.90575, 6.84055, 7.676010000000001, 6.85646, 6.43775, 7.20786, 6.89163, 7.0121199999999995, 6.85646, 6.77422, 6.54965, 6.05209, 6.697030000000001, 6.90575, 6.68461, 6.62007, 7.24423, 6.36819, 6.8844899999999996, 6.62007, 6.745239999999999, 6.19236, 6.39693, 6.85646, 6.7334, 5.9269300000000005, 5.98896, 6.48004, 6.55393, 6.5903, 7.02643, 7.15305, 6.19236, 6.43615, 6.6871100000000006, 6.42162, 6.06379, 6.93537, 7.09008, 6.802389999999999, 6.47697, 6.2634, 7.79028, 6.10032, 6.0282800000000005, 7.408530000000001, 6.6174, 6.907760000000001, 6.90575, 5.99146, 6.2441699999999996, 6.00141, 6.39693, 6.79122, 6.9196800000000005, 6.9147300000000005, 6.90575, 6.408530000000001, 6.646389999999999, 6.746410000000001, 6.30992, 6.42972, 6.18826, 6.5467900000000006, 7.522939999999999, 6.7334, 6.07993, 6.907760000000001, 6.90575, 7.04752, 6.66185, 6.47697, 7.23418, 6.54247, 6.753439999999999, 6.51471, 7.034389999999999, 6.65286, 7.262630000000001, 6.47697, 7.20786, 6.90575, 6.30992, 6.984719999999999, 6.30445, 6.05209, 6.34564, 6.95655, 6.49224, 6.62007, 5.82895, 6.39693, 6.06146, 6.43775, 6.03787, 6.3952599999999995, 6.22654, 7.144410000000001, 6.90575, 6.91374, 5.70378, 7.6009, 6.5903, 7.1592899999999995, 6.57786, 6.6783399999999995, 6.72383, 6.41182, 6.53233, 6.907760000000001, 6.7334, 7.236339999999999, 6.20456, 6.10925, 6.715380000000001, 6.72743, 6.551080000000001, 7.084230000000001, 6.97635, 7.20786, 6.685860000000001, 6.8977, 7.00307, 6.35089, 5.70378, 6.59167, 6.461469999999999, 6.984719999999999, 6.53233, 6.646389999999999, 6.39693, 7.459910000000001, 6.19848, 7.0255399999999995, 7.1309, 6.745239999999999, 6.22654, 6.10925, 7.08171, 6.64249, 7.49332, 7.495539999999999, 7.1546199999999995, 7.1309, 6.745239999999999, 6.18415, 5.82895, 6.10925, 6.58617, 6.48158, 6.20456, 7.313219999999999, 6.94022, 6.90575, 6.41836, 6.10925, 7.48717, 7.0193, 6.983789999999999, 6.633319999999999, 6.29157, 7.49109, 6.91672, 6.90575, 6.51323, 6.715380000000001, 5.8141300000000005, 6.47697, 7.37212, 6.646389999999999, 7.0184, 6.84055, 7.24423, 6.834110000000001, 7.09008, 6.52942, 7.4553, 7.00307, 6.37502, 7.24423, 6.48158, 6.68461, 6.10925, 6.90575, 6.90575, 7.24423, 7.75577, 6.82437, 6.43775, 6.18415, 6.43775, 6.90575, 7.1107, 6.44572, 6.42162, 6.769639999999999, 6.93245, 6.818919999999999, 6.551080000000001, 6.58617, 6.96508, 6.44572, 6.7093, 6.83195, 6.28972, 7.1082399999999994, 7.135689999999999, 6.49072, 7.251339999999999, 8.51719, 6.807930000000001, 7.14756, 7.33368, 6.77422, 6.60394, 6.68461, 7.1309, 5.99146, 7.201169999999999, 5.99146, 6.10925, 6.68461, 6.39693, 6.927560000000001, 6.85751, 6.95655, 6.08677, 7.24423, 7.1309, 6.17587, 6.802389999999999, 6.30992, 6.36303, 5.8999, 6.77422, 6.2860000000000005, 6.828710000000001, 6.47697, 6.72743, 6.55251, 6.29157, 5.59842, 6.62407, 5.9814099999999994, 6.76273, 7.06902, 5.9269300000000005, 6.80128, 7.313219999999999, 6.966019999999999, 6.6592899999999995, 6.39693, 6.57786, 6.62007, 6.65286, 6.293419999999999, 5.4161, 5.87493, 6.79122, 6.987489999999999, 6.30992, 6.55536, 7.09008, 6.2146099999999995, 7.04752, 6.90575, 6.10925, 6.6783399999999995, 6.39693, 7.259119999999999, 7.43838, 6.47697, 7.1309, 6.77422, 6.2634, 6.739339999999999, 7.46737, 6.47697, 6.90575, 7.279319999999999, 6.815639999999999, 7.1309, 6.65028, 6.27099, 7.17012, 6.354369999999999, 6.29157, 6.802389999999999, 6.602589999999999, 6.47697, 6.63857, 6.58755, 6.77422, 6.907760000000001, 7.09589, 6.882439999999999, 5.45959, 6.05209, 7.67322, 6.85646, 5.8579300000000005, 5.78074, 6.2146099999999995, 7.2957399999999994, 5.84354, 6.802389999999999, 6.58064, 6.2634, 7.00307, 6.90575, 7.21891, 7.503839999999999, 6.45677, 6.950810000000001, 5.97126, 6.23048, 6.15273, 7.57558, 6.96035, 6.3716099999999996, 6.2146099999999995, 6.7334, 6.86066, 6.378430000000001, 6.48004, 7.00307, 6.8200199999999995, 6.47697, 6.90575, 7.39388, 7.4787300000000005, 6.2146099999999995, 6.802389999999999, 6.43775, 7.24065, 5.70378, 6.13773, 6.3952599999999995, 7.1025, 7.04752, 7.09008, 6.77992, 6.9256, 6.035480000000001, 7.22766, 7.475339999999999, 6.62007, 5.72031, 6.272880000000001, 6.01616, 6.27099, 7.91936, 6.2146099999999995, 6.85646, 6.354369999999999, 6.2634, 6.51471, 6.92166, 6.253830000000001, 5.9269300000000005, 6.745239999999999, 6.30992, 7.3651800000000005, 6.24998, 6.893660000000001, 6.53669, 6.43615, 7.04752, 6.30992, 6.39693, 6.1334, 6.765039999999999, 6.85646, 6.892639999999999, 6.95655, 5.99146, 6.43775, 6.90575, 6.81124, 6.966019999999999, 6.8865300000000005, 6.62007, 7.334980000000001, 6.72743, 6.93245, 7.27031, 7.03878, 7.0255399999999995, 6.83518, 6.77992, 6.68461, 7.696210000000001, 6.53669, 6.52942, 6.126869999999999, 6.54965, 6.715380000000001, 7.31122, 5.8693, 6.90575, 6.0282800000000005, 6.30992, 6.23245, 6.31536, 7.486610000000001, 6.52942, 6.8426800000000005, 6.14204, 6.88755, 6.62007, 6.34564, 6.44413, 6.62007, 5.99146, 6.93245, 7.37776, 6.907760000000001, 5.99146, 7.18917, 6.7093, 6.75926, 6.3315, 6.5439099999999994, 6.1717, 7.9459100000000005, 6.77422, 7.424760000000001, 6.45362, 5.70378, 6.43775, 6.90575, 7.6009, 6.90575, 7.46737, 6.694560000000001, 6.907760000000001, 8.16052, 6.98008, 6.984719999999999, 6.802389999999999, 5.99146, 6.802389999999999, 7.32647, 7.1309, 5.96101, 6.62007, 6.84055, 6.58617, 7.1309, 7.00307, 7.78322, 6.62007, 5.7525699999999995, 6.62407, 6.795710000000001, 7.212289999999999, 6.05209, 6.38856, 6.93925, 6.47697, 6.8773, 6.354369999999999, 7.9724699999999995, 7.64969, 6.703189999999999, 6.658010000000001, 6.47697, 6.50429, 6.58617, 6.893660000000001, 6.51471, 6.06611, 6.68461, 6.65544, 7.331060000000001, 6.64118, 6.47697, 7.475910000000001, 6.72743, 7.20786, 6.81124, 7.0201899999999995, 7.279319999999999, 8.02027, 6.80461, 5.99645, 7.10906, 6.40523, 6.77422, 7.01571, 6.54822, 6.14204, 6.57786, 6.47697, 7.24423, 5.93225, 5.9269300000000005, 7.46737, 6.69084, 6.47697, 6.85646, 6.88755, 7.24423, 6.2634, 6.95655, 6.67077, 6.85646, 7.313219999999999, 6.98008, 6.75577, 6.566669999999999, 7.09008, 6.697030000000001, 5.78383, 6.79794, 6.2634, 6.61874, 6.64118, 7.1309, 6.98101, 6.90575, 5.90263, 6.17794, 6.77422, 6.96035, 6.6515699999999995, 6.35957, 6.829789999999999, 6.66568, 7.09008, 6.10925, 6.85646, 6.90575, 6.95655, 6.126869999999999, 7.1309, 6.4552, 6.58617, 7.23778, 6.66568, 6.21261, 6.57925, 6.907760000000001, 6.802389999999999, 6.88755, 7.08171, 6.6567300000000005, 7.696210000000001, 6.68461, 6.43775, 6.802389999999999, 6.6592899999999995, 5.4161, 6.48311, 6.408530000000001, 6.84055, 7.17778, 6.2634, 6.4892, 6.62007, 6.95177, 6.785589999999999, 7.033510000000001, 7.1107, 6.57647, 6.85646, 6.23637, 6.530880000000001, 6.43775, 6.90575, 6.30992, 6.85646, 6.62007, 6.04025, 6.79122, 6.30992, 6.62007, 5.76832, 6.81014, 6.551080000000001, 6.56526, 6.551080000000001, 7.09008, 6.86693, 6.9613, 6.7901, 6.95655, 6.65286, 5.9814099999999994, 6.28227, 7.46737, 7.18007, 7.46737, 6.90575, 6.52209, 7.37776, 6.90575, 5.99146, 7.46737, 5.99146, 6.18826, 6.4552, 6.59987, 7.346010000000001, 6.68461, 7.6009, 7.14913, 7.27031, 6.317159999999999, 6.72503, 5.8861, 5.99146, 6.62007, 6.6871100000000006, 7.17012, 6.802389999999999, 5.93754, 6.995769999999999, 6.802389999999999, 6.52356, 6.55251, 6.56526, 6.72383, 7.09008, 6.68461, 6.52209, 7.313219999999999, 6.94698, 6.561030000000001, 6.907760000000001, 7.71869, 5.96615, 7.143619999999999, 6.41673, 6.907760000000001, 6.29157, 6.354369999999999, 7.00307, 6.802389999999999, 6.90375, 6.1944099999999995, 7.09008, 6.90575, 6.47697, 7.26193, 6.60665, 6.424869999999999, 6.745239999999999, 7.37776, 6.13773, 6.882439999999999, 6.907760000000001, 6.858569999999999, 6.745239999999999, 7.495539999999999, 7.1546199999999995, 6.68461, 6.2804, 6.6592899999999995, 6.77422, 6.893660000000001, 6.86693, 7.408530000000001, 6.72743, 6.42972, 6.633319999999999, 7.0579, 6.68461, 7.185389999999999, 7.26543, 7.05099, 6.10925, 6.60123, 7.233460000000001, 6.90575, 6.77194, 6.6567300000000005, 6.3243599999999995, 6.55393, 6.90575, 6.10925, 6.9613, 6.90575, 6.907760000000001, 6.90975, 7.64969, 7.1309, 6.745239999999999, 5.99146, 6.354369999999999, 5.4161, 6.55536, 6.02102, 6.7334, 6.47697, 6.47697, 6.53669, 6.95655, 6.551080000000001, 6.16331, 7.6009, 6.90575, 7.17242, 6.3421199999999995, 6.9196800000000005, 6.51471, 7.24423, 6.85646, 6.551080000000001, 6.86693, 6.35611, 6.90575, 6.34914, 7.696210000000001, 7.17012, 6.802389999999999, 6.253830000000001, 6.90575, 6.48464, 6.49224, 6.82763, 6.90575, 7.014810000000001, 6.2634, 7.04752, 6.90575, 7.20786, 7.02997, 7.803839999999999, 6.31355, 6.89467, 6.829789999999999, 7.17012, 7.54961, 7.28207, 6.69084, 7.1929300000000005, 6.33328, 5.84354, 6.85646, 6.912739999999999, 6.80017, 6.97635, 6.2653, 6.07535, 7.1309, 7.17012, 6.59715, 7.0884100000000005, 6.77992, 7.16627, 6.19644, 6.39693, 5.9814099999999994, 6.90575, 6.90575, 6.6958, 5.01728, 7.279319999999999, 7.136480000000001, 6.608, 6.68461, 7.9831, 6.9828600000000005, 6.30992, 6.2146099999999995, 7.09506, 6.44572, 6.2634, 6.90575, 6.90575, 7.08339, 5.96615, 6.9622399999999995, 7.11233, 6.912739999999999, 6.68461, 6.85646, 6.8254600000000005, 7.346010000000001, 6.68085, 7.24423, 6.8426800000000005, 6.62007, 6.1070199999999994, 6.33328, 6.15698, 6.893660000000001, 6.43775, 6.30262, 6.253830000000001, 7.30317, 6.829789999999999, 6.56808, 6.36303, 7.20786, 6.752269999999999, 6.95655, 6.02102, 6.633319999999999, 6.2634, 7.183110000000001, 6.907760000000001, 6.6174, 7.43838, 6.45047, 6.9707300000000005, 6.3952599999999995, 7.09008, 6.49979, 6.94986, 7.06902, 6.68461, 7.22766, 6.68461, 7.1309, 6.975410000000001, 6.2672, 6.50279, 6.551080000000001, 6.59987, 6.7334, 6.16331, 6.2146099999999995, 6.95655, 6.694560000000001, 6.44572, 6.6783399999999995, 7.408530000000001, 7.09008, 6.614730000000001, 6.72743, 6.17379, 7.03615, 6.05209, 6.6280399999999995, 6.83518, 7.09008, 6.63857, 6.17794, 6.551080000000001, 6.30992, 7.07834, 6.39693, 6.57228, 7.346010000000001, 6.938280000000001, 6.715380000000001, 6.7511, 6.715380000000001, 6.58617, 5.59842, 6.3935900000000006, 7.26193, 6.49072, 6.829789999999999, 6.745239999999999, 6.721430000000001, 6.59715, 6.00389, 6.9828600000000005, 6.62007, 6.85646, 7.04752, 6.23441, 6.551080000000001, 6.63726, 6.14633, 6.563860000000001, 6.73102, 6.2634, 6.3243599999999995, 6.721430000000001, 6.6796, 7.062189999999999, 6.10925, 7.313219999999999, 6.34564, 6.561030000000001, 6.17379, 7.06987, 6.87626, 6.505780000000001, 6.745239999999999, 6.966019999999999, 6.4488900000000005, 7.1309, 6.68461, 6.575080000000001, 6.40192, 6.70073, 6.56808, 6.7334, 6.30992, 7.0775, 6.6796, 6.8384100000000005, 7.03615, 6.85751, 6.745239999999999, 7.313219999999999, 6.86693, 7.08171, 6.85646, 6.47697, 6.47697, 6.28972, 7.46737, 7.2724, 6.61874, 6.30079, 7.0255399999999995, 6.27099, 6.90575, 6.34564, 6.9828600000000005, 7.450080000000001, 6.224559999999999, 6.551080000000001, 6.551080000000001, 6.23441, 6.77422, 7.1309, 6.52209, 7.49332, 6.39192, 6.739339999999999, 7.4832399999999994, 6.16331, 6.68461, 6.90575, 6.715380000000001, 6.90575, 7.1309, 6.86171, 6.715380000000001, 5.70378, 6.551080000000001, 6.802389999999999, 6.33683, 6.9187, 7.0579, 6.35611, 7.02376, 5.4161, 5.5797300000000005, 6.90575, 6.82655, 6.90575, 5.9269300000000005, 7.42833, 5.87212, 6.463030000000001, 7.52833, 6.86797, 6.95655, 6.60665, 6.90575, 6.4677, 7.3651800000000005, 6.748760000000001, 6.77992, 6.975410000000001, 7.43838, 7.82405, 6.5439099999999994, 6.42162, 6.8844899999999996, 7.16085, 6.52209, 6.04025, 5.52146, 6.90575, 7.00307, 6.907760000000001, 6.817830000000001, 7.279319999999999, 6.907760000000001, 7.54961, 7.323169999999999, 6.90575, 6.41017, 6.90575, 6.787839999999999, 6.62007, 7.0967199999999995, 5.9269300000000005, 6.55393, 7.0255399999999995, 6.17379, 7.00307, 7.31122, 7.31122, 6.31355, 6.44572, 6.59578, 6.47697, 7.226210000000001, 6.62007, 6.69332, 6.7511, 6.77422, 7.09008, 5.8579300000000005, 7.183110000000001, 7.728860000000001, 6.54965, 7.04752, 7.25488, 6.9256, 6.907760000000001, 5.65249, 7.041410000000001, 6.4599, 6.96035, 7.1333, 6.99942, 6.38012, 7.200419999999999, 7.18007, 7.1309, 6.461469999999999, 6.85646, 7.17012, 7.03527, 6.19848, 6.62007, 7.313219999999999, 6.907760000000001, 6.90575, 6.05209, 7.1452, 6.02102, 5.82895, 6.33683, 6.04025, 6.2146099999999995, 7.8935699999999995, 6.34564, 6.64249, 6.8977, 6.3699, 6.6567300000000005, 6.813439999999999, 6.53669, 6.90575, 6.47697, 6.05209, 7.21524, 6.551080000000001, 6.66568, 6.57925, 6.2146099999999995, 6.8426800000000005, 6.907760000000001, 6.90575, 7.106610000000001, 6.424869999999999, 6.65415, 6.86693, 6.745239999999999, 6.88346, 6.53669, 6.3207699999999996, 7.696210000000001, 7.64779, 7.313219999999999, 6.95655, 5.95584, 6.715380000000001, 6.44254, 6.8966899999999995, 6.61338, 6.8426800000000005, 6.23245, 6.95655, 6.768489999999999, 7.3981699999999995, 6.68461, 7.12287, 6.813439999999999, 6.752269999999999, 6.551080000000001, 6.86066, 6.7334, 6.318969999999999, 6.79122, 5.95324, 6.745239999999999, 7.1309, 6.54103, 7.06048, 6.24222, 6.68461, 6.9177100000000005, 6.05209, 6.78672, 7.09008, 7.1309, 6.47697, 7.1025, 5.9814099999999994, 7.24423, 6.44254, 7.451239999999999, 7.198180000000001, 7.27101, 7.245660000000001, 6.51471, 7.279319999999999, 6.85646, 7.279319999999999, 7.67322, 6.76273, 6.82437, 6.47697, 6.885510000000001, 7.07918, 7.279319999999999, 7.1309, 6.966019999999999, 6.73102, 6.633319999999999, 7.00307, 5.940169999999999, 7.6009, 6.907760000000001, 6.32615, 6.508769999999999, 6.551080000000001, 7.0884100000000005, 6.829789999999999, 7.31986, 6.21661, 7.11802, 6.77422, 7.26193, 6.90575, 7.17012, 7.00307, 5.99146, 7.46737, 6.57786, 6.3081, 6.90575, 6.311730000000001, 6.39693, 6.95655, 6.62007, 6.3952599999999995, 7.04752, 6.48311, 6.50429, 6.39693, 6.90575, 6.60665, 6.90575, 6.318969999999999, 6.802389999999999, 6.70441, 6.51471, 6.77992, 6.68461, 6.29157, 6.40523, 6.18826, 7.24423, 6.83518, 7.09008, 7.84502, 7.1624, 6.813439999999999, 6.907760000000001, 6.68461, 6.14633, 7.17012, 6.53814, 6.2146099999999995, 6.882439999999999, 6.36647, 6.47697, 7.54697, 6.60665, 6.68461, 7.408530000000001, 7.2724, 6.46614, 6.90575, 6.95655, 5.7462, 6.36303, 7.20786, 7.04752, 7.04316, 6.551080000000001, 6.58064, 6.17379, 6.83195, 6.8533, 5.70378, 7.20786, 6.62007, 6.95655, 6.90575, 6.34564, 7.09008, 7.014810000000001, 6.73815, 6.65028, 7.03878, 6.10032, 7.266830000000001, 6.95655, 6.58617, 7.20786, 6.68461, 6.602589999999999, 6.551080000000001, 6.87626, 5.16479, 7.54961, 6.551080000000001, 6.84055, 6.49224, 6.58893, 5.2983199999999995, 6.60665, 6.907760000000001, 7.64969, 6.9177100000000005, 6.18415, 6.68461, 7.43838, 6.66441, 6.551080000000001, 5.99146, 6.41182, 6.43775, 6.10925, 6.43775, 6.4599, 7.00307, 5.99146, 6.852239999999999, 6.51175, 6.5439099999999994, 6.6515699999999995, 7.522939999999999, 6.16331, 6.551080000000001, 6.907760000000001, 7.04752, 6.44572, 6.3243599999999995, 6.41346, 6.551080000000001, 6.802389999999999, 6.62007, 6.5439099999999994, 6.57925, 6.38012, 6.4151, 6.52209, 6.29157, 6.2146099999999995, 6.97167, 6.75926, 6.73102, 6.66823, 7.37776, 7.1309, 6.90575, 6.10925, 7.408530000000001, 6.39693, 6.04025, 7.0396600000000005, 7.09589, 7.10003, 6.73102, 6.87523, 6.90575, 7.20786, 7.173960000000001, 6.90575, 6.47389, 6.99026, 7.0884100000000005, 6.206580000000001, 6.56526, 6.44572, 6.802389999999999, 6.551080000000001, 6.53379, 6.90575, 6.46614, 6.61338, 6.90575, 6.85646, 6.47389, 6.10925, 6.99118, 6.2441699999999996, 7.1592899999999995, 6.697030000000001, 6.90575, 6.59987, 7.01571, 6.42162, 6.716589999999999, 6.85646, 7.46737, 6.58617, 6.95655, 6.29157, 6.907760000000001, 6.46459, 6.62007, 6.95177, 6.58617, 6.50129, 6.2952699999999995, 6.85646, 6.15698, 6.90575, 7.6009, 7.00307, 6.17379, 6.15273, 7.01392, 6.62007, 7.346010000000001, 6.90575, 6.68461, 6.50429, 7.24423, 7.0942300000000005, 5.78383, 6.54535, 6.3716099999999996, 7.86327, 6.62007, 7.09008, 6.703189999999999, 6.354369999999999, 6.53233, 6.58617, 7.46737, 6.9622399999999995, 6.39693, 6.38012, 6.802389999999999, 6.43935, 7.044910000000001, 6.42162, 6.90575, 6.802389999999999, 6.44413, 7.127689999999999, 6.45677, 6.40192, 6.55393, 6.593039999999999, 7.06902, 6.59987, 6.802389999999999, 6.715380000000001, 6.715380000000001, 6.39693, 6.57786, 6.68461, 7.00307, 6.42972, 6.85435, 6.58893, 6.937310000000001, 6.2106, 6.708080000000001, 6.0845, 6.907760000000001, 6.16331, 6.43775, 6.2146099999999995, 6.2441699999999996, 6.74406, 6.85646, 6.73221, 5.72031, 6.13123, 7.54961, 6.37673, 6.90575, 6.62007, 6.768489999999999, 6.63595, 5.82895, 6.90575, 6.75577, 6.77194, 6.77422, 6.99485, 6.58617, 5.8999, 6.2146099999999995, 6.2146099999999995, 6.6567300000000005, 6.62007, 6.9489, 7.354360000000001, 7.279319999999999, 5.8861, 6.6592899999999995, 7.06305, 6.61338, 7.00307, 6.49224, 6.84588, 6.35611, 6.35611, 6.8977, 7.20786, 6.90575, 7.59287, 7.1309, 7.393260000000001, 6.95655, 6.834110000000001, 6.07993, 7.10988, 6.802389999999999, 6.224559999999999, 6.57925, 6.927560000000001, 6.90575, 7.09008, 7.1309, 6.90575, 6.907760000000001, 6.16542, 6.62007, 7.6009, 6.963189999999999, 6.95655, 6.90575, 6.90575, 6.796819999999999, 6.66568, 6.907760000000001, 6.8533, 6.813439999999999, 7.196689999999999, 6.43615, 6.9147300000000005, 6.551080000000001, 6.77194, 6.90575, 6.90575, 6.66823, 6.47697, 7.0255399999999995, 7.522939999999999, 6.62007, 6.354369999999999, 7.1546199999999995, 6.90575, 6.551080000000001, 5.78383, 6.753439999999999, 6.77422, 7.313219999999999, 6.967910000000001, 6.816739999999999, 7.6009, 6.745239999999999, 6.51471, 7.37588, 6.86485, 6.41346, 6.7093, 6.551080000000001, 6.22654, 7.24423, 6.06146, 6.16331, 7.05359, 6.86171, 6.58617, 7.1309, 6.77422, 7.93737, 6.39693, 6.58617, 7.67322, 6.551080000000001, 6.2146099999999995, 6.77422, 6.2634, 6.99485, 6.45047, 6.66185, 6.94119, 6.90575, 7.21891, 7.57558, 7.495539999999999, 6.10925, 6.59715, 7.09008, 6.03787, 6.556780000000001, 6.354369999999999, 7.6009, 6.83303, 6.551080000000001, 7.279319999999999, 6.354369999999999, 7.925160000000001, 6.77422, 7.183110000000001, 6.1136800000000004, 6.77992, 6.62007, 7.00307, 7.86327, 6.70073, 6.795710000000001, 7.1309, 6.32794, 6.16121, 5.6801699999999995, 6.65286, 6.802389999999999, 6.715380000000001, 6.95655, 6.78333, 6.90575, 6.67582, 6.47697, 6.907760000000001, 6.90575, 6.53233, 6.882439999999999, 7.0255399999999995, 6.23048, 6.715380000000001, 7.872839999999999, 6.49072, 6.90575, 6.4892, 6.63726, 6.12249, 6.3613, 6.79122, 6.53233, 6.05209, 6.907760000000001, 6.697030000000001, 6.8742, 6.08677, 6.6280399999999995, 6.907760000000001, 6.05209, 5.70378, 7.02997, 6.715380000000001, 6.2146099999999995, 6.90575, 7.313219999999999, 6.3699, 6.07074, 6.77992, 6.54822, 6.62007, 6.59987, 6.62007, 6.8966899999999995, 6.802389999999999, 6.7226300000000005, 6.07993, 6.51026, 6.907760000000001, 6.50429, 6.47697, 6.58617, 6.77422, 6.8977, 5.9135, 6.17379, 8.047189999999999, 6.93537, 6.2146099999999995, 6.507280000000001, 7.46737, 5.82895, 7.034389999999999, 6.7569300000000005, 7.2998, 6.95655, 6.17794, 6.68461, 7.495539999999999, 6.62007, 6.88755, 6.45205, 6.802389999999999, 6.32794, 6.68461, 8.03916, 6.829789999999999, 6.6745600000000005, 6.714169999999999, 6.43775, 5.4161, 7.00307, 6.43455, 6.90575, 7.346660000000001, 6.9256, 7.6009, 7.10988, 7.24423, 6.7569300000000005, 6.48004, 6.889589999999999, 7.313219999999999, 6.9256, 6.59167, 6.57786, 6.53669, 6.39693, 6.33328, 6.33328, 7.313219999999999, 6.551080000000001, 7.408530000000001, 6.802389999999999, 7.3908, 6.90575, 6.9256, 6.95655, 6.13123, 6.551080000000001, 7.06561, 6.57925, 6.90575, 6.73102, 7.09008, 6.566669999999999, 6.9966800000000005, 6.43775, 6.62007, 6.68461, 6.424869999999999, 6.646389999999999, 6.2146099999999995, 6.802389999999999, 6.90575, 6.9613, 5.70378, 6.78672, 6.65286, 7.24423, 7.09008, 6.602589999999999, 6.42162, 7.0422899999999995, 7.034389999999999, 6.59987, 6.44572, 6.20456, 6.57925, 6.38012, 6.16331, 7.43838, 6.818919999999999, 6.551080000000001, 6.53669, 6.95655, 5.76832, 7.2100800000000005, 6.48311, 6.507280000000001, 6.45362, 6.765039999999999, 6.2634, 6.2691, 7.18917, 6.2146099999999995, 6.802389999999999, 6.50129, 6.2634, 7.38647, 6.96885, 6.10925, 7.196689999999999, 6.3403599999999996, 6.818919999999999, 6.72623, 6.90575, 7.04752, 6.7569300000000005, 6.62936, 7.09008, 6.62007, 5.9839400000000005, 6.95655, 7.49332, 6.62007, 6.31355, 6.62007, 6.753439999999999, 6.77422, 6.2653, 7.495539999999999, 6.7334, 6.95655, 6.56526, 6.88755, 7.47307, 6.47697, 6.90575, 6.90575, 7.909860000000001, 6.69084, 6.3716099999999996, 6.52209, 7.106610000000001, 6.40523, 6.69084, 5.627619999999999, 6.6567300000000005, 6.68461, 6.697030000000001, 6.22654, 7.740660000000001, 6.907760000000001, 6.43775, 6.43775, 6.813439999999999, 5.76832, 6.9256, 7.64969, 6.47697, 6.10925, 7.1309, 5.89715, 6.907760000000001, 6.745239999999999, 6.43775, 6.85646, 6.77422, 6.768489999999999, 7.029089999999999, 6.62007, 7.06133, 7.24423, 6.95177, 7.54961, 6.354369999999999, 6.87626, 6.318969999999999, 6.570880000000001, 6.62007, 7.61332, 7.09008, 6.7511, 6.8977, 6.551080000000001, 7.40914, 7.034389999999999, 6.49072, 6.30992, 5.70378, 6.55393, 6.72743, 6.05209, 7.0967199999999995, 6.90575, 6.551080000000001, 6.907760000000001, 6.785589999999999, 6.39693, 6.05209, 6.90575, 6.697030000000001, 6.814539999999999, 6.639880000000001, 6.62007, 7.24423, 6.77194, 6.551080000000001, 6.802389999999999, 5.8999, 6.57228, 7.062189999999999, 6.47697, 6.2441699999999996, 6.829789999999999, 6.95655, 6.907760000000001, 6.38012, 7.293019999999999, 6.91175, 6.68461, 6.45834, 6.556780000000001, 6.5582, 6.91175, 6.45362, 7.1309, 6.8773, 6.955589999999999, 7.80588, 6.9613, 5.4161, 6.907760000000001, 6.90575, 7.18992, 7.507689999999999, 6.90575, 6.385190000000001, 7.31122, 6.6107, 6.807930000000001, 6.79794, 6.1717, 6.16331, 6.6592899999999995, 7.0483899999999995, 6.598510000000001, 5.5797300000000005, 7.6009, 6.09131, 7.106610000000001, 6.90575, 7.66153, 7.22548, 6.48768, 6.87213, 7.17012, 6.23245, 6.39693, 6.4677, 7.35244, 7.183110000000001, 6.56948, 8.00637, 7.05272, 6.33328, 6.90575, 6.802389999999999, 6.30992, 6.551080000000001, 6.10925, 6.77422, 6.30992, 7.522939999999999, 6.49979, 6.802389999999999, 7.05704, 7.16858, 6.802389999999999, 6.58617, 6.551080000000001, 7.20564, 6.551080000000001, 7.1507, 6.852239999999999, 7.6009, 6.70564, 5.7525699999999995, 6.90575, 6.802389999999999, 6.11147, 6.95655, 6.84375, 6.95655, 6.8977, 7.34923, 6.93245, 6.34564, 6.79122, 7.03878, 7.400010000000001, 5.8579300000000005, 7.37588, 6.83195, 7.00307, 6.84162, 6.354369999999999, 6.93342, 6.608, 6.85646, 6.61607, 6.056780000000001, 6.90575, 6.697030000000001, 6.5395900000000005, 6.6120399999999995, 6.63726, 7.1309, 6.739339999999999, 7.86327, 6.55393, 6.47697, 6.7511, 6.907760000000001, 6.05912, 6.54535, 6.551080000000001, 7.00307, 6.51471, 6.57925, 6.66823, 7.71869, 5.52146, 7.1309, 6.551080000000001, 6.44572, 7.00307, 6.253830000000001, 7.401839999999999, 5.99146, 7.2724, 6.907760000000001, 6.90575, 6.3315, 6.3699, 6.39693, 7.82405, 6.95655, 6.09582, 6.07535, 6.90575, 6.8426800000000005, 7.0518600000000005, 6.993930000000001, 6.907760000000001, 6.79122, 6.7511, 6.2146099999999995, 6.78897, 6.67203, 7.259119999999999, 7.6811, 6.745239999999999, 7.27031, 6.721430000000001, 6.90575, 6.563860000000001, 6.99485, 7.37776, 7.06048, 7.6009, 6.30992, 6.84375, 7.0282, 6.66696, 6.90575, 6.47235, 6.56244, 8.0229, 6.90575, 6.6592899999999995, 6.80351, 6.92658, 6.4892, 6.28227, 7.06902, 6.08677, 5.958419999999999, 7.1309, 5.68698, 6.62007, 6.33683, 6.984719999999999, 6.753439999999999, 6.354369999999999, 6.52209, 6.52209, 7.362010000000001, 6.8200199999999995, 6.73102, 6.39693, 6.8773, 6.507280000000001, 7.313219999999999, 6.81014, 6.802389999999999, 6.49072, 7.46737, 6.82437, 6.745239999999999, 6.11147, 6.2634, 7.181589999999999, 6.551080000000001, 7.05618, 6.29157, 7.2998, 5.86079, 6.51619, 6.56948, 6.937310000000001, 5.83188, 6.9256, 6.90575, 6.10925, 6.39693, 7.09008, 6.82437, 6.753439999999999, 6.966019999999999, 6.802389999999999, 7.239210000000001, 6.5582, 6.907760000000001, 6.98008, 6.62407, 5.70378, 6.551080000000001, 6.41673, 7.313219999999999, 6.62007, 6.84588, 6.95655, 6.42162, 6.68461, 6.715380000000001, 6.85646, 6.57786, 5.8579300000000005, 6.2146099999999995, 7.313219999999999, 7.37776, 6.07993, 6.30992, 7.1309, 6.69084, 6.70564, 5.7462, 6.16752, 7.279319999999999, 6.73102, 6.53669, 6.24222, 7.03527, 7.04752, 6.507280000000001, 6.93049, 6.59715, 7.09008, 6.45047, 6.33328, 6.68461, 6.62007, 6.6592899999999995, 6.90575, 7.04752, 6.30992, 7.43838, 6.6346300000000005, 6.59167, 6.1181, 6.41836, 7.2724, 6.56526, 6.90575, 7.91936, 6.54103, 6.90575, 7.57558, 6.20456, 6.802389999999999, 6.899719999999999, 7.484369999999999, 6.90575, 6.51471, 5.7462, 6.39693, 6.94698, 7.084230000000001, 6.96885, 6.907760000000001, 7.00307, 7.293019999999999, 7.173189999999999, 6.77422, 6.815639999999999, 6.43294, 6.813439999999999, 6.90575, 6.88857, 6.90575, 7.09008, 6.90575, 7.226210000000001, 5.76832, 5.70378, 7.279319999999999, 6.05912, 6.68461, 6.6592899999999995, 7.91936, 6.507280000000001, 7.00307, 6.47697, 6.551080000000001, 6.90575, 6.2146099999999995, 6.907760000000001, 6.715380000000001, 6.96885, 6.68461, 6.57368, 6.745239999999999, 6.53669, 5.76832, 6.2146099999999995, 6.8426800000000005, 7.520230000000001, 5.5797300000000005, 6.51323, 7.1082399999999994, 6.5582, 7.17012, 6.768489999999999, 6.39693, 7.393260000000001, 6.6958, 6.39693, 6.95177, 6.2146099999999995, 7.09008, 6.5582, 7.09008, 6.9613, 6.4892, 7.676010000000001, 6.715380000000001, 5.70378, 6.907760000000001, 6.3935900000000006, 7.54961, 6.86171, 5.79606, 6.83087, 6.6783399999999995, 6.54535, 6.593039999999999, 6.77422, 6.44572, 7.04752, 6.3716099999999996, 7.37776, 7.17012, 6.8426800000000005, 7.00307, 6.126869999999999, 6.50129, 6.8773, 6.56526, 6.354369999999999, 6.96885, 6.575080000000001, 6.62007, 6.42811, 6.752269999999999, 6.90575, 6.78672, 7.1309, 8.12089, 6.829789999999999, 7.00307, 6.2146099999999995, 6.1944099999999995, 7.740660000000001, 6.551080000000001, 6.907760000000001, 6.2146099999999995, 6.96979, 6.68461, 7.14283, 6.139880000000001, 7.1293, 6.89467, 5.43808, 6.621410000000001, 7.183110000000001, 6.5467900000000006, 6.34388, 6.39024, 7.0255399999999995, 6.424869999999999, 6.68461, 6.49979, 7.37776, 6.7901, 6.17379, 6.4488900000000005, 6.614730000000001, 6.802389999999999, 6.60665, 7.09008, 6.51323, 6.93245, 6.6592899999999995, 6.30992, 6.30992, 6.7226300000000005, 7.37776, 6.09807, 6.8977, 6.35784, 6.37502, 6.57925, 7.7021, 7.46737, 7.6009, 7.36455, 6.59715, 6.639880000000001, 6.36303, 5.82895, 6.59715, 6.62007, 6.551080000000001, 7.09008, 6.78333, 6.563860000000001, 7.0076, 6.880380000000001, 6.745239999999999, 6.82437, 6.4677, 7.127689999999999, 7.1309, 6.62007, 7.82084, 7.288930000000001, 6.72743, 6.39693, 6.68461, 7.10988, 6.563860000000001, 6.354369999999999, 6.7546, 7.196689999999999, 5.99146, 6.74052, 7.24423, 6.67203, 6.86485, 7.1309, 7.6009, 6.6107, 7.24423, 6.9256, 7.11314, 6.86693, 6.85118, 6.58617, 6.85646, 5.70378, 6.2146099999999995, 6.92363, 5.67675, 6.84588, 6.86171, 6.813439999999999, 6.62936, 6.50279, 5.7589, 6.7417, 7.18917, 6.2146099999999995, 6.93245, 6.78897, 6.74759, 7.00307, 6.3935900000000006, 7.09008, 7.84385, 6.802389999999999, 6.57647, 6.78672, 6.39693, 6.9707300000000005, 8.3082, 7.1309, 7.17012, 6.593039999999999, 6.90575, 6.62007, 6.86693, 6.259580000000001, 6.41999, 6.90575, 5.52146, 6.907760000000001, 7.43838, 6.64509, 7.09008, 6.39693, 7.0255399999999995, 7.903969999999999, 6.745239999999999, 6.80461, 7.037030000000001, 7.04752, 6.08904, 6.47697, 6.65286, 6.76388, 6.90575, 6.802389999999999, 6.87626, 6.90575, 7.1507, 7.07834, 7.21082, 6.52942, 6.701960000000001, 6.8426800000000005, 6.3207699999999996, 6.69827, 6.24611, 6.57786, 6.18826, 6.975410000000001, 7.16085, 6.30992, 6.83303, 7.61874, 6.48158, 5.99146, 6.44095, 6.99485, 6.907760000000001, 6.8384100000000005, 6.79122, 6.551080000000001, 6.6695, 7.279319999999999, 6.57925, 6.813439999999999, 6.30992, 6.68461, 6.47389, 6.802389999999999, 6.785589999999999, 6.45362, 7.313219999999999, 6.551080000000001, 7.29097, 5.8861, 6.98008, 6.802389999999999, 7.20786, 6.802389999999999, 6.983789999999999, 6.75926, 6.68461, 6.55962, 6.8977, 6.05912, 6.90575, 7.4570300000000005, 7.1309, 6.566669999999999, 6.829789999999999, 6.85646, 6.643789999999999, 6.77422, 7.90101, 6.32794, 6.25767, 7.81883, 6.966019999999999, 6.33328, 6.2146099999999995, 6.77422, 6.8384100000000005, 6.62007, 6.813439999999999, 6.551080000000001, 6.920669999999999, 7.195189999999999, 6.62007, 6.745239999999999, 6.3315, 6.69332, 6.745239999999999, 6.90575, 7.0396600000000005, 6.90575, 5.8260000000000005, 6.07535, 6.30992, 6.96885, 6.47697, 6.39693, 7.24423, 7.12367, 7.17012, 6.60394, 6.18415, 6.68461, 6.44413, 6.4677, 6.72623, 6.2146099999999995, 6.47697, 6.907760000000001, 6.4552, 7.1546199999999995, 7.37776, 7.18917, 6.10925, 6.5903, 7.136480000000001, 5.95584, 7.03878, 6.461469999999999, 6.697030000000001, 5.9839400000000005, 6.66568, 6.2146099999999995, 6.56526, 6.51471, 5.61677, 6.49375, 7.06048, 6.715380000000001, 6.10925, 6.95655, 7.1309, 6.95655, 6.90575, 6.76273, 6.311730000000001, 7.1507, 7.00307, 6.29157, 6.86693, 6.68461, 6.90575, 6.95655, 7.17012, 7.0255399999999995, 6.86171, 7.495539999999999, 6.49224, 6.90575, 6.8865300000000005, 7.57353, 6.602589999999999, 6.85646, 6.30992, 6.23048, 6.5467900000000006, 6.530880000000001, 6.802389999999999, 7.6009, 6.55962, 6.46459, 6.834110000000001, 7.313219999999999, 6.802389999999999, 6.7334, 6.66441, 7.251339999999999, 5.87774, 6.802389999999999, 7.43838, 6.35957, 6.43775, 6.5820300000000005, 6.768489999999999, 7.17012, 6.68461, 5.6733199999999995, 6.90575, 7.281389999999999, 7.17702, 6.90575, 6.95845, 6.44572, 6.583410000000001, 6.91672, 6.90575, 8.229510000000001, 7.027310000000001, 6.551080000000001, 6.84055, 7.136480000000001, 6.71174, 6.787839999999999, 6.74288, 7.0934, 7.200419999999999, 6.83087, 7.37776, 6.79122, 6.67203, 6.55393, 6.39693, 7.46737, 6.802389999999999, 7.165489999999999, 6.62007, 6.90575, 7.0255399999999995, 7.70661, 6.47389, 6.35957, 6.07535, 6.907760000000001, 7.1107, 6.593039999999999, 6.30992, 7.20786, 6.43775, 6.556780000000001, 6.83518, 6.77878, 6.966019999999999, 6.95273, 6.3716099999999996, 6.43133, 6.907760000000001, 6.68461, 6.64898, 6.28972, 7.00307, 6.2146099999999995, 6.66058, 6.967910000000001, 7.016610000000001, 6.68461, 7.09008, 6.85646, 6.90575, 5.66988, 7.09008, 6.53379, 6.84801, 6.90575, 5.99146, 7.21891, 6.90575, 6.745239999999999, 7.07242, 7.6009, 6.817830000000001, 6.23637, 7.346010000000001, 6.6592899999999995, 7.46737, 6.975410000000001, 6.79122, 6.719010000000001, 6.720219999999999, 6.90575, 6.90575, 6.68336, 6.892639999999999, 6.86485, 6.947939999999999, 6.955589999999999, 6.90575, 5.78383, 6.551080000000001, 5.66988, 7.0255399999999995, 7.04752, 6.3935900000000006, 6.807930000000001, 6.74288, 6.802389999999999, 6.4599, 6.354369999999999, 6.18208, 7.398789999999999, 7.37776, 7.35883, 6.47697, 7.18463, 6.745239999999999, 7.05876, 6.694560000000001, 6.84588, 6.68461, 7.64969, 6.59578, 7.027310000000001, 6.715380000000001, 6.04025, 5.84644, 6.2146099999999995, 6.507280000000001, 6.23441, 7.098380000000001, 6.2804, 7.6256, 6.633319999999999, 6.6346300000000005, 7.195189999999999, 6.43455, 6.52649, 6.49527, 6.51915, 7.54961, 7.09008, 7.00307, 6.36475, 5.7462, 6.77422, 6.10925, 6.73459, 7.1293, 6.49224, 6.28413, 7.17012, 6.90575, 6.6515699999999995, 6.56948, 6.80461, 6.03787, 7.313219999999999, 6.11589, 6.68461, 6.72743, 7.09008, 5.96615, 8.26873, 6.17794, 6.3935900000000006, 7.12287, 6.43775, 5.95324, 6.6796, 6.758089999999999, 6.68461, 5.70378, 6.90575, 7.495539999999999, 6.84588, 6.745239999999999, 6.21261, 7.251339999999999, 6.10032, 8.048789999999999, 7.313219999999999, 6.802389999999999, 6.745239999999999, 6.907760000000001, 6.90575, 5.82305, 6.90575, 7.17012, 6.2441699999999996, 8.08641, 5.59842, 7.08171, 6.9594, 6.97354, 7.30653, 6.55962, 6.58617, 6.74406, 7.56008, 6.1944099999999995, 7.408530000000001, 6.61338, 6.01616, 6.32794, 7.18007, 6.74052, 6.95655, 6.58617, 6.66568, 6.85646, 6.44572, 7.313219999999999, 7.1309, 5.99146, 6.18826, 5.59842, 6.49224, 6.821110000000001, 6.56526, 6.47697, 6.813439999999999, 7.43838, 7.2717, 6.30262, 6.38351, 6.551080000000001, 5.45959, 6.43775, 6.90575, 6.53233, 6.61874, 6.06843, 6.1203, 7.88231, 6.90575, 6.7569300000000005, 5.7651900000000005, 6.938280000000001, 7.08255, 6.41346, 6.882439999999999, 7.37776, 6.44413, 6.90575, 6.51471, 7.2998, 6.5439099999999994, 6.551080000000001, 6.90575, 7.35372, 7.135689999999999, 7.46737, 6.63595, 6.802389999999999, 7.346010000000001, 6.90575, 6.86693, 7.1309, 5.78383, 6.829789999999999, 6.65286, 6.7334, 7.2998, 6.65415, 6.9256, 6.90575, 6.39693, 6.52209, 6.3699, 6.770789999999999, 6.39693, 6.49072, 6.02345, 7.32251, 6.13123, 6.29711, 7.04752, 6.799060000000001, 6.272880000000001, 6.354369999999999, 6.49527, 6.57925, 6.697030000000001, 5.52146, 6.703189999999999, 7.04752, 6.65286, 6.752269999999999, 6.2146099999999995, 6.42162, 6.90575, 7.014810000000001, 6.62007, 6.85646, 6.745239999999999, 6.9256, 6.58617, 6.51471, 5.96615, 6.90575, 6.52942, 6.16331, 6.56526, 6.813439999999999, 7.09008, 5.8141300000000005, 6.49979, 6.769639999999999, 6.08677, 6.7369699999999995, 7.064760000000001, 6.01616, 7.11883, 6.48158, 6.51175, 7.46737, 6.57228, 6.551080000000001, 7.67322, 6.35957, 6.907760000000001, 6.58617, 7.1309, 6.57925, 6.43294, 6.39693, 7.46737, 6.95655, 6.54247, 6.3716099999999996, 7.293019999999999, 6.08677, 7.64969, 6.95655, 8.13153, 6.3613, 6.10925, 6.551080000000001, 6.907760000000001, 6.97261, 6.907760000000001, 6.43775, 6.3243599999999995, 6.83518, 6.993930000000001, 6.6567300000000005, 6.984719999999999, 7.062189999999999, 6.907760000000001, 6.77992, 7.195189999999999, 7.185389999999999, 6.07993, 6.01616, 6.72743, 6.33683, 6.70073, 7.20786, 7.0103100000000005, 6.551080000000001, 7.1309, 6.7334, 7.495539999999999, 6.24028, 6.354369999999999, 6.90575, 6.551080000000001, 7.00307, 6.85013, 7.0255399999999995, 6.39693, 7.495539999999999, 6.768489999999999, 6.23441, 6.461469999999999, 6.5395900000000005, 6.907760000000001, 6.05209, 6.28413, 6.126869999999999, 7.12287, 6.745239999999999, 7.21744, 6.39693, 6.49072, 6.47697, 6.05209, 7.24423, 6.802389999999999, 7.09008, 6.44572, 7.00307, 6.966019999999999, 6.721430000000001, 6.62936, 6.813439999999999, 6.28227, 7.64969, 6.9575, 7.3696, 6.461469999999999, 6.90575, 7.20786, 6.78333, 6.57647, 6.5903, 7.00307, 6.74993, 6.57925, 6.907760000000001, 7.18917, 6.16331, 6.59578, 6.802389999999999, 6.272880000000001, 7.014810000000001, 6.2146099999999995, 6.43615, 6.64509, 6.608, 6.68461, 6.58617, 6.62007, 6.19032, 7.00307, 6.95655, 6.12249, 6.62007, 7.313219999999999, 7.09008, 6.83303, 6.98101, 6.6871100000000006, 7.09008, 6.81014, 7.37776, 6.51767, 6.85435, 7.64969, 7.91936, 6.907760000000001, 6.9256, 6.6733, 7.5574699999999995, 6.13773, 6.67203, 6.30992, 6.47697, 6.8956800000000005, 6.56948, 6.33328, 6.802389999999999, 6.9707300000000005, 8.00637, 6.65286, 6.57368, 5.70711, 6.57786, 6.92363, 6.57368, 7.37776, 6.2146099999999995, 7.408530000000001, 7.1155800000000005, 7.91936, 7.09008, 7.37776, 7.1309, 6.58617, 6.14633, 6.6592899999999995, 6.90575, 7.092569999999999, 6.86485, 7.57558, 7.200419999999999, 6.95655, 6.2146099999999995, 6.05209, 6.44254, 6.35957, 5.72031, 6.4599, 6.60394, 6.51471, 6.975410000000001, 6.39693, 7.400010000000001, 8.537, 6.07993, 7.36645, 6.67708, 6.99942, 6.61338, 7.64969, 6.68461, 6.57925, 7.09008, 7.1082399999999994, 6.83518, 7.09008, 6.58617, 6.90575, 6.43615, 6.84162, 7.313219999999999, 6.55962, 6.07993, 6.3952599999999995, 6.633319999999999, 6.42162, 7.09008, 6.13123, 7.313219999999999, 6.30992, 6.79122, 6.720219999999999, 6.66823, 7.2861899999999995, 6.802389999999999, 6.703189999999999, 5.98896, 7.620710000000001, 6.0822199999999995, 6.77878, 7.09008, 7.6009, 6.28972, 6.48768, 6.68461, 6.41182, 7.37776, 7.525639999999999, 6.74993, 6.72623, 7.09008, 7.25347, 7.585789999999999, 6.45362, 6.354369999999999, 6.984719999999999, 6.90575, 6.937310000000001, 6.907760000000001, 7.0775, 7.346010000000001, 7.027310000000001, 6.907760000000001, 6.9489, 6.907760000000001, 7.495539999999999, 6.01127, 6.802389999999999, 6.745239999999999, 6.58617, 6.90575, 6.633319999999999, 6.80572, 6.2480400000000005, 6.2634, 6.31355, 7.35819, 6.49677, 6.68461, 6.633319999999999, 7.30317, 6.95655, 6.907760000000001, 5.742999999999999, 6.39693, 7.313219999999999, 6.90575, 7.09008, 6.47697, 7.196689999999999, 6.47697, 6.30262, 6.745239999999999, 7.07412, 6.354369999999999, 6.10925, 6.68461, 7.42357, 6.768489999999999, 6.95655, 6.715380000000001, 6.9828600000000005, 7.02465, 6.49224, 6.49979, 6.27099, 5.8861, 7.393260000000001, 6.829789999999999, 6.32794, 6.28786, 5.9839400000000005, 6.68461, 5.84354, 6.62007, 7.12287, 6.2146099999999995, 6.84162, 7.00307, 6.2146099999999995, 6.983789999999999, 6.35611, 6.17379, 6.95655, 6.39693, 6.88755, 7.04316, 6.90575, 6.84162, 6.45362, 6.83518, 6.85646, 6.46925, 5.99146, 6.62007, 7.00307, 5.99146, 6.22654, 6.633319999999999, 6.77308, 7.1107, 6.95655, 6.967910000000001, 6.995769999999999, 6.66568, 6.594410000000001, 6.90575, 6.5439099999999994, 6.62007, 6.60665, 7.04752, 7.062189999999999, 7.313219999999999, 7.04752, 7.0884100000000005, 6.937310000000001, 6.90575, 6.23441, 6.25767, 6.2146099999999995, 6.551080000000001, 6.90575, 7.09008, 6.68461, 6.2146099999999995, 6.386880000000001, 6.44413, 6.58617, 6.10925, 6.90073, 6.745239999999999, 7.2233, 6.8773, 6.813439999999999, 7.037030000000001, 6.40523, 6.2146099999999995, 6.17379, 7.6009, 6.30992, 6.685860000000001, 6.38856, 6.47697, 7.46737, 6.551080000000001, 6.9226399999999995, 6.87213, 6.73102, 6.30992, 7.45298, 5.72359, 7.1309, 6.882439999999999, 5.940169999999999, 6.90675, 6.551080000000001, 6.9147300000000005, 6.85646, 6.563860000000001, 6.381819999999999, 5.78996, 6.769639999999999, 6.73102, 7.06133, 6.68461, 6.2146099999999995, 6.912739999999999, 6.4708, 6.2634, 7.08171, 6.90575, 7.6009, 6.52062, 6.907760000000001, 6.60935, 6.51471, 6.9828600000000005, 6.85646, 6.30992, 7.338889999999999, 6.22654, 6.84055, 6.311730000000001, 7.01392, 6.49224, 6.2205900000000005, 7.44659, 7.388330000000001, 6.85118, 7.24423, 6.632000000000001, 6.90575, 7.10906, 6.944089999999999, 6.83518, 6.222580000000001, 6.84588, 7.17012, 6.52503, 6.2860000000000005, 6.80128, 6.07993 ], "y0": "male" }, { "box": { "visible": false }, "fillcolor": "rgba(0, 0, 0, 0)", "hoverinfo": "x", "hoveron": "points", "jitter": 0.3, "legendgroup": "male", "line": { "color": "rgba(0, 0, 0, 0)", "width": 0 }, "marker": { "color": "hsla(328, 70%, 70%,1)", "line": { "color": "hsla(328, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.2, "size": 9, "symbol": "triangle-down" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 1, "points": "all", "scalegroup": "male", "showlegend": false, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.99942, 5.99146, 7.67322, 7.09008, 5.61677, 6.646389999999999, 7.02643, 6.4552, 7.32975, 6.95845, 7.06902, 6.04025, 6.907760000000001, 7.91936, 6.745239999999999, 6.30079, 7.068169999999999, 6.07535, 6.7417, 7.71869, 6.882439999999999, 6.47697, 6.77878, 6.907760000000001, 6.93342, 7.06902, 6.57368, 6.829789999999999, 7.557989999999999, 6.892639999999999, 7.0255399999999995, 6.57925, 7.313219999999999, 6.47697, 7.1309, 6.551080000000001, 6.882439999999999, 6.907760000000001, 6.682110000000001, 6.39693, 6.48004, 6.60665, 7.00307, 6.10925, 5.78383, 6.94505, 6.9546399999999995, 7.17012, 7.11477, 6.993930000000001, 6.593039999999999, 6.49979, 6.5439099999999994, 6.39192, 6.51471, 6.30992, 6.30992, 7.116389999999999, 6.46925, 7.554860000000001, 6.90675, 6.85646, 5.94803, 6.90575, 6.90575, 7.408530000000001, 7.0076, 6.88857, 7.35947, 6.39693, 7.041410000000001, 6.66696, 6.30992, 7.313219999999999, 6.787839999999999, 6.90575, 6.802389999999999, 7.00307, 7.074960000000001, 7.5606, 5.99146, 6.16331, 5.94803, 6.43775, 7.282760000000001, 6.39693, 6.813439999999999, 6.694560000000001, 6.29157, 6.23048, 6.67203, 6.16331, 6.88755, 6.95655, 7.56008, 6.28227, 6.30992, 6.05912, 6.602589999999999, 7.47307, 6.2146099999999995, 6.95655, 6.90575, 6.461469999999999, 7.09008, 7.46737, 6.829789999999999, 6.60665, 6.74052, 6.745239999999999, 7.6009, 6.62007, 6.551080000000001, 6.663130000000001, 7.60589, 6.53669, 6.5582, 6.16121, 6.19236, 6.2146099999999995, 7.37776, 6.6995, 6.58617, 6.23832, 6.27476, 6.48311, 6.69084, 6.54965, 6.745239999999999, 6.882439999999999, 6.663130000000001, 5.70378, 6.7226300000000005, 7.20786, 6.802389999999999, 6.79122, 6.62007, 6.42162, 6.12249, 6.90575, 6.28227, 6.745239999999999, 6.206580000000001, 5.99146, 6.682110000000001, 6.49677, 7.408530000000001, 6.10925, 6.317159999999999, 6.2146099999999995, 6.551080000000001, 6.25575, 7.0884100000000005, 6.16331, 6.68461, 5.8999, 7.01392, 7.1107, 6.9363399999999995, 6.90575, 6.1070199999999994, 6.85646, 6.44572, 6.551080000000001, 6.84588, 8.10168, 7.31255, 5.99645, 6.90575, 6.802389999999999, 7.111510000000001, 6.2146099999999995, 6.66696, 6.907760000000001, 6.90575, 6.6592899999999995, 8.047189999999999, 6.62407, 7.0076, 6.30992, 6.17379, 6.55393, 6.24611, 7.78322, 6.563860000000001, 6.60665, 7.12448, 6.507280000000001, 6.461469999999999, 6.8977, 7.82405, 7.75148, 6.62407, 7.346010000000001, 6.2146099999999995, 7.1309, 6.51471, 5.96615, 6.84055, 7.041410000000001, 6.51471, 6.551080000000001, 7.346010000000001, 6.966019999999999, 6.90575, 7.17012, 6.5820300000000005, 7.04752, 6.354369999999999, 6.59578, 7.82405, 6.5467900000000006, 6.551080000000001, 6.39693, 6.88755, 6.39693, 6.39693, 6.65286, 6.36647, 6.622739999999999, 6.90575, 5.7525699999999995, 6.15273, 7.04752, 5.52146, 6.770789999999999, 6.907760000000001, 7.00125, 7.064760000000001, 7.00307, 6.05209, 6.745239999999999, 7.045780000000001, 6.54535, 6.37673, 6.62007, 6.907760000000001, 6.10925, 6.39693, 8.16052, 6.745239999999999, 7.03527, 6.765039999999999, 7.1309, 6.77422, 6.87213, 6.551080000000001, 6.907760000000001, 6.6567300000000005, 6.80017, 7.226210000000001, 6.10925, 6.90575, 6.70073, 7.495539999999999, 8.05516, 6.9256, 7.06987, 6.694560000000001, 6.90575, 6.43775, 6.97261, 7.29709, 7.179310000000001, 7.313219999999999, 6.7226300000000005, 6.82437, 6.715380000000001, 7.173189999999999, 6.62007, 6.77878, 6.7226300000000005, 6.85118, 6.49224, 7.313219999999999, 6.62007, 7.158510000000001, 6.818919999999999, 6.68461, 6.57647, 6.43455, 5.89715, 6.34564, 6.556780000000001, 6.7093, 6.93925, 7.00307, 6.551080000000001, 6.90575, 6.53669, 6.69084, 7.313219999999999, 6.05209, 6.90575, 6.62007, 6.4552, 6.77422, 6.87005, 6.65544, 6.42162, 5.9269300000000005, 6.317159999999999, 6.42972, 6.62007, 6.96508, 6.19236, 6.61607, 5.5606800000000005, 6.57368, 6.2634, 6.715380000000001, 7.408530000000001, 6.17379, 7.333019999999999, 6.37502, 6.16331, 6.317159999999999, 7.04752, 6.68461, 6.98008, 6.912739999999999, 6.86693, 7.3670800000000005, 6.68461, 6.90575, 6.90575, 6.62007, 6.45362, 6.49072, 6.47697, 6.9431199999999995, 6.90575, 6.10925, 6.67203, 6.7334, 7.34278, 6.802389999999999, 6.90575, 6.658010000000001, 6.9256, 6.90575, 6.91075, 6.6592899999999995, 5.8579300000000005, 6.6592899999999995, 6.16331, 7.441319999999999, 6.47851, 7.07834, 6.745239999999999, 7.20786, 6.36475, 6.63857, 7.475910000000001, 6.62007, 6.4892, 7.00307, 6.56948, 7.43838, 7.15383, 7.064760000000001, 6.88755, 7.26193, 6.23245, 6.30445, 6.715380000000001, 7.313219999999999, 7.37776, 5.8579300000000005, 6.85646, 6.2441699999999996, 7.26193, 6.90575, 6.907760000000001, 6.272880000000001, 6.66568, 7.481560000000001, 7.04752, 6.61338, 6.40688, 6.73815, 5.8579300000000005, 7.57558, 6.83518, 6.38856, 6.768489999999999, 6.90575, 6.86693, 6.39693, 6.34739, 7.1507, 6.58617, 7.282760000000001, 7.00307, 6.66058, 6.58064, 6.90575, 6.10925, 6.64249, 6.715380000000001 ], "y0": "male" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(328, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(328, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "male", "line": { "width": 0 }, "marker": { "color": "hsla(328, 50%, 50%,0.9)", "line": { "color": "hsla(328, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "triangle-down" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "male", "showlegend": false, "side": "positive", "span": [ 6.715726713524443, 6.743898982314161 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 6.99942, 5.99146, 7.67322, 7.09008, 5.61677, 6.646389999999999, 7.02643, 6.4552, 7.32975, 6.95845, 7.06902, 6.04025, 6.907760000000001, 7.91936, 6.745239999999999, 6.30079, 7.068169999999999, 6.07535, 6.7417, 7.71869, 6.882439999999999, 6.47697, 6.77878, 6.907760000000001, 6.93342, 7.06902, 6.57368, 6.829789999999999, 7.557989999999999, 6.892639999999999, 7.0255399999999995, 6.57925, 7.313219999999999, 6.47697, 7.1309, 6.551080000000001, 6.882439999999999, 6.907760000000001, 6.682110000000001, 6.39693, 6.48004, 6.60665, 7.00307, 6.10925, 5.78383, 6.94505, 6.9546399999999995, 7.17012, 7.11477, 6.993930000000001, 6.593039999999999, 6.49979, 6.5439099999999994, 6.39192, 6.51471, 6.30992, 6.30992, 7.116389999999999, 6.46925, 7.554860000000001, 6.90675, 6.85646, 5.94803, 6.90575, 6.90575, 7.408530000000001, 7.0076, 6.88857, 7.35947, 6.39693, 7.041410000000001, 6.66696, 6.30992, 7.313219999999999, 6.787839999999999, 6.90575, 6.802389999999999, 7.00307, 7.074960000000001, 7.5606, 5.99146, 6.16331, 5.94803, 6.43775, 7.282760000000001, 6.39693, 6.813439999999999, 6.694560000000001, 6.29157, 6.23048, 6.67203, 6.16331, 6.88755, 6.95655, 7.56008, 6.28227, 6.30992, 6.05912, 6.602589999999999, 7.47307, 6.2146099999999995, 6.95655, 6.90575, 6.461469999999999, 7.09008, 7.46737, 6.829789999999999, 6.60665, 6.74052, 6.745239999999999, 7.6009, 6.62007, 6.551080000000001, 6.663130000000001, 7.60589, 6.53669, 6.5582, 6.16121, 6.19236, 6.2146099999999995, 7.37776, 6.6995, 6.58617, 6.23832, 6.27476, 6.48311, 6.69084, 6.54965, 6.745239999999999, 6.882439999999999, 6.663130000000001, 5.70378, 6.7226300000000005, 7.20786, 6.802389999999999, 6.79122, 6.62007, 6.42162, 6.12249, 6.90575, 6.28227, 6.745239999999999, 6.206580000000001, 5.99146, 6.682110000000001, 6.49677, 7.408530000000001, 6.10925, 6.317159999999999, 6.2146099999999995, 6.551080000000001, 6.25575, 7.0884100000000005, 6.16331, 6.68461, 5.8999, 7.01392, 7.1107, 6.9363399999999995, 6.90575, 6.1070199999999994, 6.85646, 6.44572, 6.551080000000001, 6.84588, 8.10168, 7.31255, 5.99645, 6.90575, 6.802389999999999, 7.111510000000001, 6.2146099999999995, 6.66696, 6.907760000000001, 6.90575, 6.6592899999999995, 8.047189999999999, 6.62407, 7.0076, 6.30992, 6.17379, 6.55393, 6.24611, 7.78322, 6.563860000000001, 6.60665, 7.12448, 6.507280000000001, 6.461469999999999, 6.8977, 7.82405, 7.75148, 6.62407, 7.346010000000001, 6.2146099999999995, 7.1309, 6.51471, 5.96615, 6.84055, 7.041410000000001, 6.51471, 6.551080000000001, 7.346010000000001, 6.966019999999999, 6.90575, 7.17012, 6.5820300000000005, 7.04752, 6.354369999999999, 6.59578, 7.82405, 6.5467900000000006, 6.551080000000001, 6.39693, 6.88755, 6.39693, 6.39693, 6.65286, 6.36647, 6.622739999999999, 6.90575, 5.7525699999999995, 6.15273, 7.04752, 5.52146, 6.770789999999999, 6.907760000000001, 7.00125, 7.064760000000001, 7.00307, 6.05209, 6.745239999999999, 7.045780000000001, 6.54535, 6.37673, 6.62007, 6.907760000000001, 6.10925, 6.39693, 8.16052, 6.745239999999999, 7.03527, 6.765039999999999, 7.1309, 6.77422, 6.87213, 6.551080000000001, 6.907760000000001, 6.6567300000000005, 6.80017, 7.226210000000001, 6.10925, 6.90575, 6.70073, 7.495539999999999, 8.05516, 6.9256, 7.06987, 6.694560000000001, 6.90575, 6.43775, 6.97261, 7.29709, 7.179310000000001, 7.313219999999999, 6.7226300000000005, 6.82437, 6.715380000000001, 7.173189999999999, 6.62007, 6.77878, 6.7226300000000005, 6.85118, 6.49224, 7.313219999999999, 6.62007, 7.158510000000001, 6.818919999999999, 6.68461, 6.57647, 6.43455, 5.89715, 6.34564, 6.556780000000001, 6.7093, 6.93925, 7.00307, 6.551080000000001, 6.90575, 6.53669, 6.69084, 7.313219999999999, 6.05209, 6.90575, 6.62007, 6.4552, 6.77422, 6.87005, 6.65544, 6.42162, 5.9269300000000005, 6.317159999999999, 6.42972, 6.62007, 6.96508, 6.19236, 6.61607, 5.5606800000000005, 6.57368, 6.2634, 6.715380000000001, 7.408530000000001, 6.17379, 7.333019999999999, 6.37502, 6.16331, 6.317159999999999, 7.04752, 6.68461, 6.98008, 6.912739999999999, 6.86693, 7.3670800000000005, 6.68461, 6.90575, 6.90575, 6.62007, 6.45362, 6.49072, 6.47697, 6.9431199999999995, 6.90575, 6.10925, 6.67203, 6.7334, 7.34278, 6.802389999999999, 6.90575, 6.658010000000001, 6.9256, 6.90575, 6.91075, 6.6592899999999995, 5.8579300000000005, 6.6592899999999995, 6.16331, 7.441319999999999, 6.47851, 7.07834, 6.745239999999999, 7.20786, 6.36475, 6.63857, 7.475910000000001, 6.62007, 6.4892, 7.00307, 6.56948, 7.43838, 7.15383, 7.064760000000001, 6.88755, 7.26193, 6.23245, 6.30445, 6.715380000000001, 7.313219999999999, 7.37776, 5.8579300000000005, 6.85646, 6.2441699999999996, 7.26193, 6.90575, 6.907760000000001, 6.272880000000001, 6.66568, 7.481560000000001, 7.04752, 6.61338, 6.40688, 6.73815, 5.8579300000000005, 7.57558, 6.83518, 6.38856, 6.768489999999999, 6.90575, 6.86693, 6.39693, 6.34739, 7.1507, 6.58617, 7.282760000000001, 7.00307, 6.66058, 6.58064, 6.90575, 6.10925, 6.64249, 6.715380000000001, 6.62007, 7.1309, 6.51471, 5.99146, 6.95655, 6.65286, 6.16331, 6.24611, 7.1309, 7.1333, 7.24423, 6.04025, 6.86901, 6.802389999999999, 6.70073, 6.1203, 6.90575, 7.313219999999999, 6.54822, 6.95655, 7.50108, 6.39693, 6.551080000000001, 7.07918, 5.8579300000000005, 5.70378, 6.7369699999999995, 7.745, 6.87213, 5.89715, 6.39693, 6.30628, 6.8773, 6.708080000000001, 6.52942, 6.818919999999999, 7.041410000000001, 6.06611, 6.882439999999999, 6.94986, 6.703189999999999, 6.37502, 5.70378, 7.03615, 7.37776, 5.66988, 6.907760000000001, 6.882439999999999, 6.752269999999999, 6.48158, 6.47697, 7.04752, 6.802389999999999, 6.984719999999999, 5.9269300000000005, 6.49224, 6.385190000000001, 7.1309, 7.663880000000001, 7.07242, 6.907760000000001, 6.43775, 8.05516, 6.807930000000001, 6.785589999999999, 6.907760000000001, 6.403569999999999, 6.035480000000001, 7.24423, 6.05209, 7.338889999999999, 7.0255399999999995, 7.00307, 5.99146, 6.33683, 6.07993, 7.488289999999999, 6.51175, 5.7365699999999995, 5.7365699999999995, 6.90575, 6.697030000000001, 6.354369999999999, 6.802389999999999, 6.62007, 6.68461, 6.68835, 5.8260000000000005, 6.85646, 6.44572, 6.95655, 7.20786, 6.3716099999999996, 6.8977, 6.47697, 6.802389999999999, 6.90575, 6.84055, 7.676010000000001, 6.85646, 6.43775, 7.20786, 6.89163, 7.0121199999999995, 6.85646, 6.77422, 6.54965, 6.05209, 6.697030000000001, 6.90575, 6.68461, 6.62007, 7.24423, 6.36819, 6.8844899999999996, 6.62007, 6.745239999999999, 6.19236, 6.39693, 6.85646, 6.7334, 5.9269300000000005, 5.98896, 6.48004, 6.55393, 6.5903, 7.02643, 7.15305, 6.19236, 6.43615, 6.6871100000000006, 6.42162, 6.06379, 6.93537, 7.09008, 6.802389999999999, 6.47697, 6.2634, 7.79028, 6.10032, 6.0282800000000005, 7.408530000000001, 6.6174, 6.907760000000001, 6.90575, 5.99146, 6.2441699999999996, 6.00141, 6.39693, 6.79122, 6.9196800000000005, 6.9147300000000005, 6.90575, 6.408530000000001, 6.646389999999999, 6.746410000000001, 6.30992, 6.42972, 6.18826, 6.5467900000000006, 7.522939999999999, 6.7334, 6.07993, 6.907760000000001, 6.90575, 7.04752, 6.66185, 6.47697, 7.23418, 6.54247, 6.753439999999999, 6.51471, 7.034389999999999, 6.65286, 7.262630000000001, 6.47697, 7.20786, 6.90575, 6.30992, 6.984719999999999, 6.30445, 6.05209, 6.34564, 6.95655, 6.49224, 6.62007, 5.82895, 6.39693, 6.06146, 6.43775, 6.03787, 6.3952599999999995, 6.22654, 7.144410000000001, 6.90575, 6.91374, 5.70378, 7.6009, 6.5903, 7.1592899999999995, 6.57786, 6.6783399999999995, 6.72383, 6.41182, 6.53233, 6.907760000000001, 6.7334, 7.236339999999999, 6.20456, 6.10925, 6.715380000000001, 6.72743, 6.551080000000001, 7.084230000000001, 6.97635, 7.20786, 6.685860000000001, 6.8977, 7.00307, 6.35089, 5.70378, 6.59167, 6.461469999999999, 6.984719999999999, 6.53233, 6.646389999999999, 6.39693, 7.459910000000001, 6.19848, 7.0255399999999995, 7.1309, 6.745239999999999, 6.22654, 6.10925, 7.08171, 6.64249, 7.49332, 7.495539999999999, 7.1546199999999995, 7.1309, 6.745239999999999, 6.18415, 5.82895, 6.10925, 6.58617, 6.48158, 6.20456, 7.313219999999999, 6.94022, 6.90575, 6.41836, 6.10925, 7.48717, 7.0193, 6.983789999999999, 6.633319999999999, 6.29157, 7.49109, 6.91672, 6.90575, 6.51323, 6.715380000000001, 5.8141300000000005, 6.47697, 7.37212, 6.646389999999999, 7.0184, 6.84055, 7.24423, 6.834110000000001, 7.09008, 6.52942, 7.4553, 7.00307, 6.37502, 7.24423, 6.48158, 6.68461, 6.10925, 6.90575, 6.90575, 7.24423, 7.75577, 6.82437, 6.43775, 6.18415, 6.43775, 6.90575, 7.1107, 6.44572, 6.42162, 6.769639999999999, 6.93245, 6.818919999999999, 6.551080000000001, 6.58617, 6.96508, 6.44572, 6.7093, 6.83195, 6.28972, 7.1082399999999994, 7.135689999999999, 6.49072, 7.251339999999999, 8.51719, 6.807930000000001, 7.14756, 7.33368, 6.77422, 6.60394, 6.68461, 7.1309, 5.99146, 7.201169999999999, 5.99146, 6.10925, 6.68461, 6.39693, 6.927560000000001, 6.85751, 6.95655, 6.08677, 7.24423, 7.1309, 6.17587, 6.802389999999999, 6.30992, 6.36303, 5.8999, 6.77422, 6.2860000000000005, 6.828710000000001, 6.47697, 6.72743, 6.55251, 6.29157, 5.59842, 6.62407, 5.9814099999999994, 6.76273, 7.06902, 5.9269300000000005, 6.80128, 7.313219999999999, 6.966019999999999, 6.6592899999999995, 6.39693, 6.57786, 6.62007, 6.65286, 6.293419999999999, 5.4161, 5.87493, 6.79122, 6.987489999999999, 6.30992, 6.55536, 7.09008, 6.2146099999999995, 7.04752, 6.90575, 6.10925, 6.6783399999999995, 6.39693, 7.259119999999999, 7.43838, 6.47697, 7.1309, 6.77422, 6.2634, 6.739339999999999, 7.46737, 6.47697, 6.90575, 7.279319999999999, 6.815639999999999, 7.1309, 6.65028, 6.27099, 7.17012, 6.354369999999999, 6.29157, 6.802389999999999, 6.602589999999999, 6.47697, 6.63857, 6.58755, 6.77422, 6.907760000000001, 7.09589, 6.882439999999999, 5.45959, 6.05209, 7.67322, 6.85646, 5.8579300000000005, 5.78074, 6.2146099999999995, 7.2957399999999994, 5.84354, 6.802389999999999, 6.58064, 6.2634, 7.00307, 6.90575, 7.21891, 7.503839999999999, 6.45677, 6.950810000000001, 5.97126, 6.23048, 6.15273, 7.57558, 6.96035, 6.3716099999999996, 6.2146099999999995, 6.7334, 6.86066, 6.378430000000001, 6.48004, 7.00307, 6.8200199999999995, 6.47697, 6.90575, 7.39388, 7.4787300000000005, 6.2146099999999995, 6.802389999999999, 6.43775, 7.24065, 5.70378, 6.13773, 6.3952599999999995, 7.1025, 7.04752, 7.09008, 6.77992, 6.9256, 6.035480000000001, 7.22766, 7.475339999999999, 6.62007, 5.72031, 6.272880000000001, 6.01616, 6.27099, 7.91936, 6.2146099999999995, 6.85646, 6.354369999999999, 6.2634, 6.51471, 6.92166, 6.253830000000001, 5.9269300000000005, 6.745239999999999, 6.30992, 7.3651800000000005, 6.24998, 6.893660000000001, 6.53669, 6.43615, 7.04752, 6.30992, 6.39693, 6.1334, 6.765039999999999, 6.85646, 6.892639999999999, 6.95655, 5.99146, 6.43775, 6.90575, 6.81124, 6.966019999999999, 6.8865300000000005, 6.62007, 7.334980000000001, 6.72743, 6.93245, 7.27031, 7.03878, 7.0255399999999995, 6.83518, 6.77992, 6.68461, 7.696210000000001, 6.53669, 6.52942, 6.126869999999999, 6.54965, 6.715380000000001, 7.31122, 5.8693, 6.90575, 6.0282800000000005, 6.30992, 6.23245, 6.31536, 7.486610000000001, 6.52942, 6.8426800000000005, 6.14204, 6.88755, 6.62007, 6.34564, 6.44413, 6.62007, 5.99146, 6.93245, 7.37776, 6.907760000000001, 5.99146, 7.18917, 6.7093, 6.75926, 6.3315, 6.5439099999999994, 6.1717, 7.9459100000000005, 6.77422, 7.424760000000001, 6.45362, 5.70378, 6.43775, 6.90575, 7.6009, 6.90575, 7.46737, 6.694560000000001, 6.907760000000001, 8.16052, 6.98008, 6.984719999999999, 6.802389999999999, 5.99146, 6.802389999999999, 7.32647, 7.1309, 5.96101, 6.62007, 6.84055, 6.58617, 7.1309, 7.00307, 7.78322, 6.62007, 5.7525699999999995, 6.62407, 6.795710000000001, 7.212289999999999, 6.05209, 6.38856, 6.93925, 6.47697, 6.8773, 6.354369999999999, 7.9724699999999995, 7.64969, 6.703189999999999, 6.658010000000001, 6.47697, 6.50429, 6.58617, 6.893660000000001, 6.51471, 6.06611, 6.68461, 6.65544, 7.331060000000001, 6.64118, 6.47697, 7.475910000000001, 6.72743, 7.20786, 6.81124, 7.0201899999999995, 7.279319999999999, 8.02027, 6.80461, 5.99645, 7.10906, 6.40523, 6.77422, 7.01571, 6.54822, 6.14204, 6.57786, 6.47697, 7.24423, 5.93225, 5.9269300000000005, 7.46737, 6.69084, 6.47697, 6.85646, 6.88755, 7.24423, 6.2634, 6.95655, 6.67077, 6.85646, 7.313219999999999, 6.98008, 6.75577, 6.566669999999999, 7.09008, 6.697030000000001, 5.78383, 6.79794, 6.2634, 6.61874, 6.64118, 7.1309, 6.98101, 6.90575, 5.90263, 6.17794, 6.77422, 6.96035, 6.6515699999999995, 6.35957, 6.829789999999999, 6.66568, 7.09008, 6.10925, 6.85646, 6.90575, 6.95655, 6.126869999999999, 7.1309, 6.4552, 6.58617, 7.23778, 6.66568, 6.21261, 6.57925, 6.907760000000001, 6.802389999999999, 6.88755, 7.08171, 6.6567300000000005, 7.696210000000001, 6.68461, 6.43775, 6.802389999999999, 6.6592899999999995, 5.4161, 6.48311, 6.408530000000001, 6.84055, 7.17778, 6.2634, 6.4892, 6.62007, 6.95177, 6.785589999999999, 7.033510000000001, 7.1107, 6.57647, 6.85646, 6.23637, 6.530880000000001, 6.43775, 6.90575, 6.30992, 6.85646, 6.62007, 6.04025, 6.79122, 6.30992, 6.62007, 5.76832, 6.81014, 6.551080000000001, 6.56526, 6.551080000000001, 7.09008, 6.86693, 6.9613, 6.7901, 6.95655, 6.65286, 5.9814099999999994, 6.28227, 7.46737, 7.18007, 7.46737, 6.90575, 6.52209, 7.37776, 6.90575, 5.99146, 7.46737, 5.99146, 6.18826, 6.4552, 6.59987, 7.346010000000001, 6.68461, 7.6009, 7.14913, 7.27031, 6.317159999999999, 6.72503, 5.8861, 5.99146, 6.62007, 6.6871100000000006, 7.17012, 6.802389999999999, 5.93754, 6.995769999999999, 6.802389999999999, 6.52356, 6.55251, 6.56526, 6.72383, 7.09008, 6.68461, 6.52209, 7.313219999999999, 6.94698, 6.561030000000001, 6.907760000000001, 7.71869, 5.96615, 7.143619999999999, 6.41673, 6.907760000000001, 6.29157, 6.354369999999999, 7.00307, 6.802389999999999, 6.90375, 6.1944099999999995, 7.09008, 6.90575, 6.47697, 7.26193, 6.60665, 6.424869999999999, 6.745239999999999, 7.37776, 6.13773, 6.882439999999999, 6.907760000000001, 6.858569999999999, 6.745239999999999, 7.495539999999999, 7.1546199999999995, 6.68461, 6.2804, 6.6592899999999995, 6.77422, 6.893660000000001, 6.86693, 7.408530000000001, 6.72743, 6.42972, 6.633319999999999, 7.0579, 6.68461, 7.185389999999999, 7.26543, 7.05099, 6.10925, 6.60123, 7.233460000000001, 6.90575, 6.77194, 6.6567300000000005, 6.3243599999999995, 6.55393, 6.90575, 6.10925, 6.9613, 6.90575, 6.907760000000001, 6.90975, 7.64969, 7.1309, 6.745239999999999, 5.99146, 6.354369999999999, 5.4161, 6.55536, 6.02102, 6.7334, 6.47697, 6.47697, 6.53669, 6.95655, 6.551080000000001, 6.16331, 7.6009, 6.90575, 7.17242, 6.3421199999999995, 6.9196800000000005, 6.51471, 7.24423, 6.85646, 6.551080000000001, 6.86693, 6.35611, 6.90575, 6.34914, 7.696210000000001, 7.17012, 6.802389999999999, 6.253830000000001, 6.90575, 6.48464, 6.49224, 6.82763, 6.90575, 7.014810000000001, 6.2634, 7.04752, 6.90575, 7.20786, 7.02997, 7.803839999999999, 6.31355, 6.89467, 6.829789999999999, 7.17012, 7.54961, 7.28207, 6.69084, 7.1929300000000005, 6.33328, 5.84354, 6.85646, 6.912739999999999, 6.80017, 6.97635, 6.2653, 6.07535, 7.1309, 7.17012, 6.59715, 7.0884100000000005, 6.77992, 7.16627, 6.19644, 6.39693, 5.9814099999999994, 6.90575, 6.90575, 6.6958, 5.01728, 7.279319999999999, 7.136480000000001, 6.608, 6.68461, 7.9831, 6.9828600000000005, 6.30992, 6.2146099999999995, 7.09506, 6.44572, 6.2634, 6.90575, 6.90575, 7.08339, 5.96615, 6.9622399999999995, 7.11233, 6.912739999999999, 6.68461, 6.85646, 6.8254600000000005, 7.346010000000001, 6.68085, 7.24423, 6.8426800000000005, 6.62007, 6.1070199999999994, 6.33328, 6.15698, 6.893660000000001, 6.43775, 6.30262, 6.253830000000001, 7.30317, 6.829789999999999, 6.56808, 6.36303, 7.20786, 6.752269999999999, 6.95655, 6.02102, 6.633319999999999, 6.2634, 7.183110000000001, 6.907760000000001, 6.6174, 7.43838, 6.45047, 6.9707300000000005, 6.3952599999999995, 7.09008, 6.49979, 6.94986, 7.06902, 6.68461, 7.22766, 6.68461, 7.1309, 6.975410000000001, 6.2672, 6.50279, 6.551080000000001, 6.59987, 6.7334, 6.16331, 6.2146099999999995, 6.95655, 6.694560000000001, 6.44572, 6.6783399999999995, 7.408530000000001, 7.09008, 6.614730000000001, 6.72743, 6.17379, 7.03615, 6.05209, 6.6280399999999995, 6.83518, 7.09008, 6.63857, 6.17794, 6.551080000000001, 6.30992, 7.07834, 6.39693, 6.57228, 7.346010000000001, 6.938280000000001, 6.715380000000001, 6.7511, 6.715380000000001, 6.58617, 5.59842, 6.3935900000000006, 7.26193, 6.49072, 6.829789999999999, 6.745239999999999, 6.721430000000001, 6.59715, 6.00389, 6.9828600000000005, 6.62007, 6.85646, 7.04752, 6.23441, 6.551080000000001, 6.63726, 6.14633, 6.563860000000001, 6.73102, 6.2634, 6.3243599999999995, 6.721430000000001, 6.6796, 7.062189999999999, 6.10925, 7.313219999999999, 6.34564, 6.561030000000001, 6.17379, 7.06987, 6.87626, 6.505780000000001, 6.745239999999999, 6.966019999999999, 6.4488900000000005, 7.1309, 6.68461, 6.575080000000001, 6.40192, 6.70073, 6.56808, 6.7334, 6.30992, 7.0775, 6.6796, 6.8384100000000005, 7.03615, 6.85751, 6.745239999999999, 7.313219999999999, 6.86693, 7.08171, 6.85646, 6.47697, 6.47697, 6.28972, 7.46737, 7.2724, 6.61874, 6.30079, 7.0255399999999995, 6.27099, 6.90575, 6.34564, 6.9828600000000005, 7.450080000000001, 6.224559999999999, 6.551080000000001, 6.551080000000001, 6.23441, 6.77422, 7.1309, 6.52209, 7.49332, 6.39192, 6.739339999999999, 7.4832399999999994, 6.16331, 6.68461, 6.90575, 6.715380000000001, 6.90575, 7.1309, 6.86171, 6.715380000000001, 5.70378, 6.551080000000001, 6.802389999999999, 6.33683, 6.9187, 7.0579, 6.35611, 7.02376, 5.4161, 5.5797300000000005, 6.90575, 6.82655, 6.90575, 5.9269300000000005, 7.42833, 5.87212, 6.463030000000001, 7.52833, 6.86797, 6.95655, 6.60665, 6.90575, 6.4677, 7.3651800000000005, 6.748760000000001, 6.77992, 6.975410000000001, 7.43838, 7.82405, 6.5439099999999994, 6.42162, 6.8844899999999996, 7.16085, 6.52209, 6.04025, 5.52146, 6.90575, 7.00307, 6.907760000000001, 6.817830000000001, 7.279319999999999, 6.907760000000001, 7.54961, 7.323169999999999, 6.90575, 6.41017, 6.90575, 6.787839999999999, 6.62007, 7.0967199999999995, 5.9269300000000005, 6.55393, 7.0255399999999995, 6.17379, 7.00307, 7.31122, 7.31122, 6.31355, 6.44572, 6.59578, 6.47697, 7.226210000000001, 6.62007, 6.69332, 6.7511, 6.77422, 7.09008, 5.8579300000000005, 7.183110000000001, 7.728860000000001, 6.54965, 7.04752, 7.25488, 6.9256, 6.907760000000001, 5.65249, 7.041410000000001, 6.4599, 6.96035, 7.1333, 6.99942, 6.38012, 7.200419999999999, 7.18007, 7.1309, 6.461469999999999, 6.85646, 7.17012, 7.03527, 6.19848, 6.62007, 7.313219999999999, 6.907760000000001, 6.90575, 6.05209, 7.1452, 6.02102, 5.82895, 6.33683, 6.04025, 6.2146099999999995, 7.8935699999999995, 6.34564, 6.64249, 6.8977, 6.3699, 6.6567300000000005, 6.813439999999999, 6.53669, 6.90575, 6.47697, 6.05209, 7.21524, 6.551080000000001, 6.66568, 6.57925, 6.2146099999999995, 6.8426800000000005, 6.907760000000001, 6.90575, 7.106610000000001, 6.424869999999999, 6.65415, 6.86693, 6.745239999999999, 6.88346, 6.53669, 6.3207699999999996, 7.696210000000001, 7.64779, 7.313219999999999, 6.95655, 5.95584, 6.715380000000001, 6.44254, 6.8966899999999995, 6.61338, 6.8426800000000005, 6.23245, 6.95655, 6.768489999999999, 7.3981699999999995, 6.68461, 7.12287, 6.813439999999999, 6.752269999999999, 6.551080000000001, 6.86066, 6.7334, 6.318969999999999, 6.79122, 5.95324, 6.745239999999999, 7.1309, 6.54103, 7.06048, 6.24222, 6.68461, 6.9177100000000005, 6.05209, 6.78672, 7.09008, 7.1309, 6.47697, 7.1025, 5.9814099999999994, 7.24423, 6.44254, 7.451239999999999, 7.198180000000001, 7.27101, 7.245660000000001, 6.51471, 7.279319999999999, 6.85646, 7.279319999999999, 7.67322, 6.76273, 6.82437, 6.47697, 6.885510000000001, 7.07918, 7.279319999999999, 7.1309, 6.966019999999999, 6.73102, 6.633319999999999, 7.00307, 5.940169999999999, 7.6009, 6.907760000000001, 6.32615, 6.508769999999999, 6.551080000000001, 7.0884100000000005, 6.829789999999999, 7.31986, 6.21661, 7.11802, 6.77422, 7.26193, 6.90575, 7.17012, 7.00307, 5.99146, 7.46737, 6.57786, 6.3081, 6.90575, 6.311730000000001, 6.39693, 6.95655, 6.62007, 6.3952599999999995, 7.04752, 6.48311, 6.50429, 6.39693, 6.90575, 6.60665, 6.90575, 6.318969999999999, 6.802389999999999, 6.70441, 6.51471, 6.77992, 6.68461, 6.29157, 6.40523, 6.18826, 7.24423, 6.83518, 7.09008, 7.84502, 7.1624, 6.813439999999999, 6.907760000000001, 6.68461, 6.14633, 7.17012, 6.53814, 6.2146099999999995, 6.882439999999999, 6.36647, 6.47697, 7.54697, 6.60665, 6.68461, 7.408530000000001, 7.2724, 6.46614, 6.90575, 6.95655, 5.7462, 6.36303, 7.20786, 7.04752, 7.04316, 6.551080000000001, 6.58064, 6.17379, 6.83195, 6.8533, 5.70378, 7.20786, 6.62007, 6.95655, 6.90575, 6.34564, 7.09008, 7.014810000000001, 6.73815, 6.65028, 7.03878, 6.10032, 7.266830000000001, 6.95655, 6.58617, 7.20786, 6.68461, 6.602589999999999, 6.551080000000001, 6.87626, 5.16479, 7.54961, 6.551080000000001, 6.84055, 6.49224, 6.58893, 5.2983199999999995, 6.60665, 6.907760000000001, 7.64969, 6.9177100000000005, 6.18415, 6.68461, 7.43838, 6.66441, 6.551080000000001, 5.99146, 6.41182, 6.43775, 6.10925, 6.43775, 6.4599, 7.00307, 5.99146, 6.852239999999999, 6.51175, 6.5439099999999994, 6.6515699999999995, 7.522939999999999, 6.16331, 6.551080000000001, 6.907760000000001, 7.04752, 6.44572, 6.3243599999999995, 6.41346, 6.551080000000001, 6.802389999999999, 6.62007, 6.5439099999999994, 6.57925, 6.38012, 6.4151, 6.52209, 6.29157, 6.2146099999999995, 6.97167, 6.75926, 6.73102, 6.66823, 7.37776, 7.1309, 6.90575, 6.10925, 7.408530000000001, 6.39693, 6.04025, 7.0396600000000005, 7.09589, 7.10003, 6.73102, 6.87523, 6.90575, 7.20786, 7.173960000000001, 6.90575, 6.47389, 6.99026, 7.0884100000000005, 6.206580000000001, 6.56526, 6.44572, 6.802389999999999, 6.551080000000001, 6.53379, 6.90575, 6.46614, 6.61338, 6.90575, 6.85646, 6.47389, 6.10925, 6.99118, 6.2441699999999996, 7.1592899999999995, 6.697030000000001, 6.90575, 6.59987, 7.01571, 6.42162, 6.716589999999999, 6.85646, 7.46737, 6.58617, 6.95655, 6.29157, 6.907760000000001, 6.46459, 6.62007, 6.95177, 6.58617, 6.50129, 6.2952699999999995, 6.85646, 6.15698, 6.90575, 7.6009, 7.00307, 6.17379, 6.15273, 7.01392, 6.62007, 7.346010000000001, 6.90575, 6.68461, 6.50429, 7.24423, 7.0942300000000005, 5.78383, 6.54535, 6.3716099999999996, 7.86327, 6.62007, 7.09008, 6.703189999999999, 6.354369999999999, 6.53233, 6.58617, 7.46737, 6.9622399999999995, 6.39693, 6.38012, 6.802389999999999, 6.43935, 7.044910000000001, 6.42162, 6.90575, 6.802389999999999, 6.44413, 7.127689999999999, 6.45677, 6.40192, 6.55393, 6.593039999999999, 7.06902, 6.59987, 6.802389999999999, 6.715380000000001, 6.715380000000001, 6.39693, 6.57786, 6.68461, 7.00307, 6.42972, 6.85435, 6.58893, 6.937310000000001, 6.2106, 6.708080000000001, 6.0845, 6.907760000000001, 6.16331, 6.43775, 6.2146099999999995, 6.2441699999999996, 6.74406, 6.85646, 6.73221, 5.72031, 6.13123, 7.54961, 6.37673, 6.90575, 6.62007, 6.768489999999999, 6.63595, 5.82895, 6.90575, 6.75577, 6.77194, 6.77422, 6.99485, 6.58617, 5.8999, 6.2146099999999995, 6.2146099999999995, 6.6567300000000005, 6.62007, 6.9489, 7.354360000000001, 7.279319999999999, 5.8861, 6.6592899999999995, 7.06305, 6.61338, 7.00307, 6.49224, 6.84588, 6.35611, 6.35611, 6.8977, 7.20786, 6.90575, 7.59287, 7.1309, 7.393260000000001, 6.95655, 6.834110000000001, 6.07993, 7.10988, 6.802389999999999, 6.224559999999999, 6.57925, 6.927560000000001, 6.90575, 7.09008, 7.1309, 6.90575, 6.907760000000001, 6.16542, 6.62007, 7.6009, 6.963189999999999, 6.95655, 6.90575, 6.90575, 6.796819999999999, 6.66568, 6.907760000000001, 6.8533, 6.813439999999999, 7.196689999999999, 6.43615, 6.9147300000000005, 6.551080000000001, 6.77194, 6.90575, 6.90575, 6.66823, 6.47697, 7.0255399999999995, 7.522939999999999, 6.62007, 6.354369999999999, 7.1546199999999995, 6.90575, 6.551080000000001, 5.78383, 6.753439999999999, 6.77422, 7.313219999999999, 6.967910000000001, 6.816739999999999, 7.6009, 6.745239999999999, 6.51471, 7.37588, 6.86485, 6.41346, 6.7093, 6.551080000000001, 6.22654, 7.24423, 6.06146, 6.16331, 7.05359, 6.86171, 6.58617, 7.1309, 6.77422, 7.93737, 6.39693, 6.58617, 7.67322, 6.551080000000001, 6.2146099999999995, 6.77422, 6.2634, 6.99485, 6.45047, 6.66185, 6.94119, 6.90575, 7.21891, 7.57558, 7.495539999999999, 6.10925, 6.59715, 7.09008, 6.03787, 6.556780000000001, 6.354369999999999, 7.6009, 6.83303, 6.551080000000001, 7.279319999999999, 6.354369999999999, 7.925160000000001, 6.77422, 7.183110000000001, 6.1136800000000004, 6.77992, 6.62007, 7.00307, 7.86327, 6.70073, 6.795710000000001, 7.1309, 6.32794, 6.16121, 5.6801699999999995, 6.65286, 6.802389999999999, 6.715380000000001, 6.95655, 6.78333, 6.90575, 6.67582, 6.47697, 6.907760000000001, 6.90575, 6.53233, 6.882439999999999, 7.0255399999999995, 6.23048, 6.715380000000001, 7.872839999999999, 6.49072, 6.90575, 6.4892, 6.63726, 6.12249, 6.3613, 6.79122, 6.53233, 6.05209, 6.907760000000001, 6.697030000000001, 6.8742, 6.08677, 6.6280399999999995, 6.907760000000001, 6.05209, 5.70378, 7.02997, 6.715380000000001, 6.2146099999999995, 6.90575, 7.313219999999999, 6.3699, 6.07074, 6.77992, 6.54822, 6.62007, 6.59987, 6.62007, 6.8966899999999995, 6.802389999999999, 6.7226300000000005, 6.07993, 6.51026, 6.907760000000001, 6.50429, 6.47697, 6.58617, 6.77422, 6.8977, 5.9135, 6.17379, 8.047189999999999, 6.93537, 6.2146099999999995, 6.507280000000001, 7.46737, 5.82895, 7.034389999999999, 6.7569300000000005, 7.2998, 6.95655, 6.17794, 6.68461, 7.495539999999999, 6.62007, 6.88755, 6.45205, 6.802389999999999, 6.32794, 6.68461, 8.03916, 6.829789999999999, 6.6745600000000005, 6.714169999999999, 6.43775, 5.4161, 7.00307, 6.43455, 6.90575, 7.346660000000001, 6.9256, 7.6009, 7.10988, 7.24423, 6.7569300000000005, 6.48004, 6.889589999999999, 7.313219999999999, 6.9256, 6.59167, 6.57786, 6.53669, 6.39693, 6.33328, 6.33328, 7.313219999999999, 6.551080000000001, 7.408530000000001, 6.802389999999999, 7.3908, 6.90575, 6.9256, 6.95655, 6.13123, 6.551080000000001, 7.06561, 6.57925, 6.90575, 6.73102, 7.09008, 6.566669999999999, 6.9966800000000005, 6.43775, 6.62007, 6.68461, 6.424869999999999, 6.646389999999999, 6.2146099999999995, 6.802389999999999, 6.90575, 6.9613, 5.70378, 6.78672, 6.65286, 7.24423, 7.09008, 6.602589999999999, 6.42162, 7.0422899999999995, 7.034389999999999, 6.59987, 6.44572, 6.20456, 6.57925, 6.38012, 6.16331, 7.43838, 6.818919999999999, 6.551080000000001, 6.53669, 6.95655, 5.76832, 7.2100800000000005, 6.48311, 6.507280000000001, 6.45362, 6.765039999999999, 6.2634, 6.2691, 7.18917, 6.2146099999999995, 6.802389999999999, 6.50129, 6.2634, 7.38647, 6.96885, 6.10925, 7.196689999999999, 6.3403599999999996, 6.818919999999999, 6.72623, 6.90575, 7.04752, 6.7569300000000005, 6.62936, 7.09008, 6.62007, 5.9839400000000005, 6.95655, 7.49332, 6.62007, 6.31355, 6.62007, 6.753439999999999, 6.77422, 6.2653, 7.495539999999999, 6.7334, 6.95655, 6.56526, 6.88755, 7.47307, 6.47697, 6.90575, 6.90575, 7.909860000000001, 6.69084, 6.3716099999999996, 6.52209, 7.106610000000001, 6.40523, 6.69084, 5.627619999999999, 6.6567300000000005, 6.68461, 6.697030000000001, 6.22654, 7.740660000000001, 6.907760000000001, 6.43775, 6.43775, 6.813439999999999, 5.76832, 6.9256, 7.64969, 6.47697, 6.10925, 7.1309, 5.89715, 6.907760000000001, 6.745239999999999, 6.43775, 6.85646, 6.77422, 6.768489999999999, 7.029089999999999, 6.62007, 7.06133, 7.24423, 6.95177, 7.54961, 6.354369999999999, 6.87626, 6.318969999999999, 6.570880000000001, 6.62007, 7.61332, 7.09008, 6.7511, 6.8977, 6.551080000000001, 7.40914, 7.034389999999999, 6.49072, 6.30992, 5.70378, 6.55393, 6.72743, 6.05209, 7.0967199999999995, 6.90575, 6.551080000000001, 6.907760000000001, 6.785589999999999, 6.39693, 6.05209, 6.90575, 6.697030000000001, 6.814539999999999, 6.639880000000001, 6.62007, 7.24423, 6.77194, 6.551080000000001, 6.802389999999999, 5.8999, 6.57228, 7.062189999999999, 6.47697, 6.2441699999999996, 6.829789999999999, 6.95655, 6.907760000000001, 6.38012, 7.293019999999999, 6.91175, 6.68461, 6.45834, 6.556780000000001, 6.5582, 6.91175, 6.45362, 7.1309, 6.8773, 6.955589999999999, 7.80588, 6.9613, 5.4161, 6.907760000000001, 6.90575, 7.18992, 7.507689999999999, 6.90575, 6.385190000000001, 7.31122, 6.6107, 6.807930000000001, 6.79794, 6.1717, 6.16331, 6.6592899999999995, 7.0483899999999995, 6.598510000000001, 5.5797300000000005, 7.6009, 6.09131, 7.106610000000001, 6.90575, 7.66153, 7.22548, 6.48768, 6.87213, 7.17012, 6.23245, 6.39693, 6.4677, 7.35244, 7.183110000000001, 6.56948, 8.00637, 7.05272, 6.33328, 6.90575, 6.802389999999999, 6.30992, 6.551080000000001, 6.10925, 6.77422, 6.30992, 7.522939999999999, 6.49979, 6.802389999999999, 7.05704, 7.16858, 6.802389999999999, 6.58617, 6.551080000000001, 7.20564, 6.551080000000001, 7.1507, 6.852239999999999, 7.6009, 6.70564, 5.7525699999999995, 6.90575, 6.802389999999999, 6.11147, 6.95655, 6.84375, 6.95655, 6.8977, 7.34923, 6.93245, 6.34564, 6.79122, 7.03878, 7.400010000000001, 5.8579300000000005, 7.37588, 6.83195, 7.00307, 6.84162, 6.354369999999999, 6.93342, 6.608, 6.85646, 6.61607, 6.056780000000001, 6.90575, 6.697030000000001, 6.5395900000000005, 6.6120399999999995, 6.63726, 7.1309, 6.739339999999999, 7.86327, 6.55393, 6.47697, 6.7511, 6.907760000000001, 6.05912, 6.54535, 6.551080000000001, 7.00307, 6.51471, 6.57925, 6.66823, 7.71869, 5.52146, 7.1309, 6.551080000000001, 6.44572, 7.00307, 6.253830000000001, 7.401839999999999, 5.99146, 7.2724, 6.907760000000001, 6.90575, 6.3315, 6.3699, 6.39693, 7.82405, 6.95655, 6.09582, 6.07535, 6.90575, 6.8426800000000005, 7.0518600000000005, 6.993930000000001, 6.907760000000001, 6.79122, 6.7511, 6.2146099999999995, 6.78897, 6.67203, 7.259119999999999, 7.6811, 6.745239999999999, 7.27031, 6.721430000000001, 6.90575, 6.563860000000001, 6.99485, 7.37776, 7.06048, 7.6009, 6.30992, 6.84375, 7.0282, 6.66696, 6.90575, 6.47235, 6.56244, 8.0229, 6.90575, 6.6592899999999995, 6.80351, 6.92658, 6.4892, 6.28227, 7.06902, 6.08677, 5.958419999999999, 7.1309, 5.68698, 6.62007, 6.33683, 6.984719999999999, 6.753439999999999, 6.354369999999999, 6.52209, 6.52209, 7.362010000000001, 6.8200199999999995, 6.73102, 6.39693, 6.8773, 6.507280000000001, 7.313219999999999, 6.81014, 6.802389999999999, 6.49072, 7.46737, 6.82437, 6.745239999999999, 6.11147, 6.2634, 7.181589999999999, 6.551080000000001, 7.05618, 6.29157, 7.2998, 5.86079, 6.51619, 6.56948, 6.937310000000001, 5.83188, 6.9256, 6.90575, 6.10925, 6.39693, 7.09008, 6.82437, 6.753439999999999, 6.966019999999999, 6.802389999999999, 7.239210000000001, 6.5582, 6.907760000000001, 6.98008, 6.62407, 5.70378, 6.551080000000001, 6.41673, 7.313219999999999, 6.62007, 6.84588, 6.95655, 6.42162, 6.68461, 6.715380000000001, 6.85646, 6.57786, 5.8579300000000005, 6.2146099999999995, 7.313219999999999, 7.37776, 6.07993, 6.30992, 7.1309, 6.69084, 6.70564, 5.7462, 6.16752, 7.279319999999999, 6.73102, 6.53669, 6.24222, 7.03527, 7.04752, 6.507280000000001, 6.93049, 6.59715, 7.09008, 6.45047, 6.33328, 6.68461, 6.62007, 6.6592899999999995, 6.90575, 7.04752, 6.30992, 7.43838, 6.6346300000000005, 6.59167, 6.1181, 6.41836, 7.2724, 6.56526, 6.90575, 7.91936, 6.54103, 6.90575, 7.57558, 6.20456, 6.802389999999999, 6.899719999999999, 7.484369999999999, 6.90575, 6.51471, 5.7462, 6.39693, 6.94698, 7.084230000000001, 6.96885, 6.907760000000001, 7.00307, 7.293019999999999, 7.173189999999999, 6.77422, 6.815639999999999, 6.43294, 6.813439999999999, 6.90575, 6.88857, 6.90575, 7.09008, 6.90575, 7.226210000000001, 5.76832, 5.70378, 7.279319999999999, 6.05912, 6.68461, 6.6592899999999995, 7.91936, 6.507280000000001, 7.00307, 6.47697, 6.551080000000001, 6.90575, 6.2146099999999995, 6.907760000000001, 6.715380000000001, 6.96885, 6.68461, 6.57368, 6.745239999999999, 6.53669, 5.76832, 6.2146099999999995, 6.8426800000000005, 7.520230000000001, 5.5797300000000005, 6.51323, 7.1082399999999994, 6.5582, 7.17012, 6.768489999999999, 6.39693, 7.393260000000001, 6.6958, 6.39693, 6.95177, 6.2146099999999995, 7.09008, 6.5582, 7.09008, 6.9613, 6.4892, 7.676010000000001, 6.715380000000001, 5.70378, 6.907760000000001, 6.3935900000000006, 7.54961, 6.86171, 5.79606, 6.83087, 6.6783399999999995, 6.54535, 6.593039999999999, 6.77422, 6.44572, 7.04752, 6.3716099999999996, 7.37776, 7.17012, 6.8426800000000005, 7.00307, 6.126869999999999, 6.50129, 6.8773, 6.56526, 6.354369999999999, 6.96885, 6.575080000000001, 6.62007, 6.42811, 6.752269999999999, 6.90575, 6.78672, 7.1309, 8.12089, 6.829789999999999, 7.00307, 6.2146099999999995, 6.1944099999999995, 7.740660000000001, 6.551080000000001, 6.907760000000001, 6.2146099999999995, 6.96979, 6.68461, 7.14283, 6.139880000000001, 7.1293, 6.89467, 5.43808, 6.621410000000001, 7.183110000000001, 6.5467900000000006, 6.34388, 6.39024, 7.0255399999999995, 6.424869999999999, 6.68461, 6.49979, 7.37776, 6.7901, 6.17379, 6.4488900000000005, 6.614730000000001, 6.802389999999999, 6.60665, 7.09008, 6.51323, 6.93245, 6.6592899999999995, 6.30992, 6.30992, 6.7226300000000005, 7.37776, 6.09807, 6.8977, 6.35784, 6.37502, 6.57925, 7.7021, 7.46737, 7.6009, 7.36455, 6.59715, 6.639880000000001, 6.36303, 5.82895, 6.59715, 6.62007, 6.551080000000001, 7.09008, 6.78333, 6.563860000000001, 7.0076, 6.880380000000001, 6.745239999999999, 6.82437, 6.4677, 7.127689999999999, 7.1309, 6.62007, 7.82084, 7.288930000000001, 6.72743, 6.39693, 6.68461, 7.10988, 6.563860000000001, 6.354369999999999, 6.7546, 7.196689999999999, 5.99146, 6.74052, 7.24423, 6.67203, 6.86485, 7.1309, 7.6009, 6.6107, 7.24423, 6.9256, 7.11314, 6.86693, 6.85118, 6.58617, 6.85646, 5.70378, 6.2146099999999995, 6.92363, 5.67675, 6.84588, 6.86171, 6.813439999999999, 6.62936, 6.50279, 5.7589, 6.7417, 7.18917, 6.2146099999999995, 6.93245, 6.78897, 6.74759, 7.00307, 6.3935900000000006, 7.09008, 7.84385, 6.802389999999999, 6.57647, 6.78672, 6.39693, 6.9707300000000005, 8.3082, 7.1309, 7.17012, 6.593039999999999, 6.90575, 6.62007, 6.86693, 6.259580000000001, 6.41999, 6.90575, 5.52146, 6.907760000000001, 7.43838, 6.64509, 7.09008, 6.39693, 7.0255399999999995, 7.903969999999999, 6.745239999999999, 6.80461, 7.037030000000001, 7.04752, 6.08904, 6.47697, 6.65286, 6.76388, 6.90575, 6.802389999999999, 6.87626, 6.90575, 7.1507, 7.07834, 7.21082, 6.52942, 6.701960000000001, 6.8426800000000005, 6.3207699999999996, 6.69827, 6.24611, 6.57786, 6.18826, 6.975410000000001, 7.16085, 6.30992, 6.83303, 7.61874, 6.48158, 5.99146, 6.44095, 6.99485, 6.907760000000001, 6.8384100000000005, 6.79122, 6.551080000000001, 6.6695, 7.279319999999999, 6.57925, 6.813439999999999, 6.30992, 6.68461, 6.47389, 6.802389999999999, 6.785589999999999, 6.45362, 7.313219999999999, 6.551080000000001, 7.29097, 5.8861, 6.98008, 6.802389999999999, 7.20786, 6.802389999999999, 6.983789999999999, 6.75926, 6.68461, 6.55962, 6.8977, 6.05912, 6.90575, 7.4570300000000005, 7.1309, 6.566669999999999, 6.829789999999999, 6.85646, 6.643789999999999, 6.77422, 7.90101, 6.32794, 6.25767, 7.81883, 6.966019999999999, 6.33328, 6.2146099999999995, 6.77422, 6.8384100000000005, 6.62007, 6.813439999999999, 6.551080000000001, 6.920669999999999, 7.195189999999999, 6.62007, 6.745239999999999, 6.3315, 6.69332, 6.745239999999999, 6.90575, 7.0396600000000005, 6.90575, 5.8260000000000005, 6.07535, 6.30992, 6.96885, 6.47697, 6.39693, 7.24423, 7.12367, 7.17012, 6.60394, 6.18415, 6.68461, 6.44413, 6.4677, 6.72623, 6.2146099999999995, 6.47697, 6.907760000000001, 6.4552, 7.1546199999999995, 7.37776, 7.18917, 6.10925, 6.5903, 7.136480000000001, 5.95584, 7.03878, 6.461469999999999, 6.697030000000001, 5.9839400000000005, 6.66568, 6.2146099999999995, 6.56526, 6.51471, 5.61677, 6.49375, 7.06048, 6.715380000000001, 6.10925, 6.95655, 7.1309, 6.95655, 6.90575, 6.76273, 6.311730000000001, 7.1507, 7.00307, 6.29157, 6.86693, 6.68461, 6.90575, 6.95655, 7.17012, 7.0255399999999995, 6.86171, 7.495539999999999, 6.49224, 6.90575, 6.8865300000000005, 7.57353, 6.602589999999999, 6.85646, 6.30992, 6.23048, 6.5467900000000006, 6.530880000000001, 6.802389999999999, 7.6009, 6.55962, 6.46459, 6.834110000000001, 7.313219999999999, 6.802389999999999, 6.7334, 6.66441, 7.251339999999999, 5.87774, 6.802389999999999, 7.43838, 6.35957, 6.43775, 6.5820300000000005, 6.768489999999999, 7.17012, 6.68461, 5.6733199999999995, 6.90575, 7.281389999999999, 7.17702, 6.90575, 6.95845, 6.44572, 6.583410000000001, 6.91672, 6.90575, 8.229510000000001, 7.027310000000001, 6.551080000000001, 6.84055, 7.136480000000001, 6.71174, 6.787839999999999, 6.74288, 7.0934, 7.200419999999999, 6.83087, 7.37776, 6.79122, 6.67203, 6.55393, 6.39693, 7.46737, 6.802389999999999, 7.165489999999999, 6.62007, 6.90575, 7.0255399999999995, 7.70661, 6.47389, 6.35957, 6.07535, 6.907760000000001, 7.1107, 6.593039999999999, 6.30992, 7.20786, 6.43775, 6.556780000000001, 6.83518, 6.77878, 6.966019999999999, 6.95273, 6.3716099999999996, 6.43133, 6.907760000000001, 6.68461, 6.64898, 6.28972, 7.00307, 6.2146099999999995, 6.66058, 6.967910000000001, 7.016610000000001, 6.68461, 7.09008, 6.85646, 6.90575, 5.66988, 7.09008, 6.53379, 6.84801, 6.90575, 5.99146, 7.21891, 6.90575, 6.745239999999999, 7.07242, 7.6009, 6.817830000000001, 6.23637, 7.346010000000001, 6.6592899999999995, 7.46737, 6.975410000000001, 6.79122, 6.719010000000001, 6.720219999999999, 6.90575, 6.90575, 6.68336, 6.892639999999999, 6.86485, 6.947939999999999, 6.955589999999999, 6.90575, 5.78383, 6.551080000000001, 5.66988, 7.0255399999999995, 7.04752, 6.3935900000000006, 6.807930000000001, 6.74288, 6.802389999999999, 6.4599, 6.354369999999999, 6.18208, 7.398789999999999, 7.37776, 7.35883, 6.47697, 7.18463, 6.745239999999999, 7.05876, 6.694560000000001, 6.84588, 6.68461, 7.64969, 6.59578, 7.027310000000001, 6.715380000000001, 6.04025, 5.84644, 6.2146099999999995, 6.507280000000001, 6.23441, 7.098380000000001, 6.2804, 7.6256, 6.633319999999999, 6.6346300000000005, 7.195189999999999, 6.43455, 6.52649, 6.49527, 6.51915, 7.54961, 7.09008, 7.00307, 6.36475, 5.7462, 6.77422, 6.10925, 6.73459, 7.1293, 6.49224, 6.28413, 7.17012, 6.90575, 6.6515699999999995, 6.56948, 6.80461, 6.03787, 7.313219999999999, 6.11589, 6.68461, 6.72743, 7.09008, 5.96615, 8.26873, 6.17794, 6.3935900000000006, 7.12287, 6.43775, 5.95324, 6.6796, 6.758089999999999, 6.68461, 5.70378, 6.90575, 7.495539999999999, 6.84588, 6.745239999999999, 6.21261, 7.251339999999999, 6.10032, 8.048789999999999, 7.313219999999999, 6.802389999999999, 6.745239999999999, 6.907760000000001, 6.90575, 5.82305, 6.90575, 7.17012, 6.2441699999999996, 8.08641, 5.59842, 7.08171, 6.9594, 6.97354, 7.30653, 6.55962, 6.58617, 6.74406, 7.56008, 6.1944099999999995, 7.408530000000001, 6.61338, 6.01616, 6.32794, 7.18007, 6.74052, 6.95655, 6.58617, 6.66568, 6.85646, 6.44572, 7.313219999999999, 7.1309, 5.99146, 6.18826, 5.59842, 6.49224, 6.821110000000001, 6.56526, 6.47697, 6.813439999999999, 7.43838, 7.2717, 6.30262, 6.38351, 6.551080000000001, 5.45959, 6.43775, 6.90575, 6.53233, 6.61874, 6.06843, 6.1203, 7.88231, 6.90575, 6.7569300000000005, 5.7651900000000005, 6.938280000000001, 7.08255, 6.41346, 6.882439999999999, 7.37776, 6.44413, 6.90575, 6.51471, 7.2998, 6.5439099999999994, 6.551080000000001, 6.90575, 7.35372, 7.135689999999999, 7.46737, 6.63595, 6.802389999999999, 7.346010000000001, 6.90575, 6.86693, 7.1309, 5.78383, 6.829789999999999, 6.65286, 6.7334, 7.2998, 6.65415, 6.9256, 6.90575, 6.39693, 6.52209, 6.3699, 6.770789999999999, 6.39693, 6.49072, 6.02345, 7.32251, 6.13123, 6.29711, 7.04752, 6.799060000000001, 6.272880000000001, 6.354369999999999, 6.49527, 6.57925, 6.697030000000001, 5.52146, 6.703189999999999, 7.04752, 6.65286, 6.752269999999999, 6.2146099999999995, 6.42162, 6.90575, 7.014810000000001, 6.62007, 6.85646, 6.745239999999999, 6.9256, 6.58617, 6.51471, 5.96615, 6.90575, 6.52942, 6.16331, 6.56526, 6.813439999999999, 7.09008, 5.8141300000000005, 6.49979, 6.769639999999999, 6.08677, 6.7369699999999995, 7.064760000000001, 6.01616, 7.11883, 6.48158, 6.51175, 7.46737, 6.57228, 6.551080000000001, 7.67322, 6.35957, 6.907760000000001, 6.58617, 7.1309, 6.57925, 6.43294, 6.39693, 7.46737, 6.95655, 6.54247, 6.3716099999999996, 7.293019999999999, 6.08677, 7.64969, 6.95655, 8.13153, 6.3613, 6.10925, 6.551080000000001, 6.907760000000001, 6.97261, 6.907760000000001, 6.43775, 6.3243599999999995, 6.83518, 6.993930000000001, 6.6567300000000005, 6.984719999999999, 7.062189999999999, 6.907760000000001, 6.77992, 7.195189999999999, 7.185389999999999, 6.07993, 6.01616, 6.72743, 6.33683, 6.70073, 7.20786, 7.0103100000000005, 6.551080000000001, 7.1309, 6.7334, 7.495539999999999, 6.24028, 6.354369999999999, 6.90575, 6.551080000000001, 7.00307, 6.85013, 7.0255399999999995, 6.39693, 7.495539999999999, 6.768489999999999, 6.23441, 6.461469999999999, 6.5395900000000005, 6.907760000000001, 6.05209, 6.28413, 6.126869999999999, 7.12287, 6.745239999999999, 7.21744, 6.39693, 6.49072, 6.47697, 6.05209, 7.24423, 6.802389999999999, 7.09008, 6.44572, 7.00307, 6.966019999999999, 6.721430000000001, 6.62936, 6.813439999999999, 6.28227, 7.64969, 6.9575, 7.3696, 6.461469999999999, 6.90575, 7.20786, 6.78333, 6.57647, 6.5903, 7.00307, 6.74993, 6.57925, 6.907760000000001, 7.18917, 6.16331, 6.59578, 6.802389999999999, 6.272880000000001, 7.014810000000001, 6.2146099999999995, 6.43615, 6.64509, 6.608, 6.68461, 6.58617, 6.62007, 6.19032, 7.00307, 6.95655, 6.12249, 6.62007, 7.313219999999999, 7.09008, 6.83303, 6.98101, 6.6871100000000006, 7.09008, 6.81014, 7.37776, 6.51767, 6.85435, 7.64969, 7.91936, 6.907760000000001, 6.9256, 6.6733, 7.5574699999999995, 6.13773, 6.67203, 6.30992, 6.47697, 6.8956800000000005, 6.56948, 6.33328, 6.802389999999999, 6.9707300000000005, 8.00637, 6.65286, 6.57368, 5.70711, 6.57786, 6.92363, 6.57368, 7.37776, 6.2146099999999995, 7.408530000000001, 7.1155800000000005, 7.91936, 7.09008, 7.37776, 7.1309, 6.58617, 6.14633, 6.6592899999999995, 6.90575, 7.092569999999999, 6.86485, 7.57558, 7.200419999999999, 6.95655, 6.2146099999999995, 6.05209, 6.44254, 6.35957, 5.72031, 6.4599, 6.60394, 6.51471, 6.975410000000001, 6.39693, 7.400010000000001, 8.537, 6.07993, 7.36645, 6.67708, 6.99942, 6.61338, 7.64969, 6.68461, 6.57925, 7.09008, 7.1082399999999994, 6.83518, 7.09008, 6.58617, 6.90575, 6.43615, 6.84162, 7.313219999999999, 6.55962, 6.07993, 6.3952599999999995, 6.633319999999999, 6.42162, 7.09008, 6.13123, 7.313219999999999, 6.30992, 6.79122, 6.720219999999999, 6.66823, 7.2861899999999995, 6.802389999999999, 6.703189999999999, 5.98896, 7.620710000000001, 6.0822199999999995, 6.77878, 7.09008, 7.6009, 6.28972, 6.48768, 6.68461, 6.41182, 7.37776, 7.525639999999999, 6.74993, 6.72623, 7.09008, 7.25347, 7.585789999999999, 6.45362, 6.354369999999999, 6.984719999999999, 6.90575, 6.937310000000001, 6.907760000000001, 7.0775, 7.346010000000001, 7.027310000000001, 6.907760000000001, 6.9489, 6.907760000000001, 7.495539999999999, 6.01127, 6.802389999999999, 6.745239999999999, 6.58617, 6.90575, 6.633319999999999, 6.80572, 6.2480400000000005, 6.2634, 6.31355, 7.35819, 6.49677, 6.68461, 6.633319999999999, 7.30317, 6.95655, 6.907760000000001, 5.742999999999999, 6.39693, 7.313219999999999, 6.90575, 7.09008, 6.47697, 7.196689999999999, 6.47697, 6.30262, 6.745239999999999, 7.07412, 6.354369999999999, 6.10925, 6.68461, 7.42357, 6.768489999999999, 6.95655, 6.715380000000001, 6.9828600000000005, 7.02465, 6.49224, 6.49979, 6.27099, 5.8861, 7.393260000000001, 6.829789999999999, 6.32794, 6.28786, 5.9839400000000005, 6.68461, 5.84354, 6.62007, 7.12287, 6.2146099999999995, 6.84162, 7.00307, 6.2146099999999995, 6.983789999999999, 6.35611, 6.17379, 6.95655, 6.39693, 6.88755, 7.04316, 6.90575, 6.84162, 6.45362, 6.83518, 6.85646, 6.46925, 5.99146, 6.62007, 7.00307, 5.99146, 6.22654, 6.633319999999999, 6.77308, 7.1107, 6.95655, 6.967910000000001, 6.995769999999999, 6.66568, 6.594410000000001, 6.90575, 6.5439099999999994, 6.62007, 6.60665, 7.04752, 7.062189999999999, 7.313219999999999, 7.04752, 7.0884100000000005, 6.937310000000001, 6.90575, 6.23441, 6.25767, 6.2146099999999995, 6.551080000000001, 6.90575, 7.09008, 6.68461, 6.2146099999999995, 6.386880000000001, 6.44413, 6.58617, 6.10925, 6.90073, 6.745239999999999, 7.2233, 6.8773, 6.813439999999999, 7.037030000000001, 6.40523, 6.2146099999999995, 6.17379, 7.6009, 6.30992, 6.685860000000001, 6.38856, 6.47697, 7.46737, 6.551080000000001, 6.9226399999999995, 6.87213, 6.73102, 6.30992, 7.45298, 5.72359, 7.1309, 6.882439999999999, 5.940169999999999, 6.90675, 6.551080000000001, 6.9147300000000005, 6.85646, 6.563860000000001, 6.381819999999999, 5.78996, 6.769639999999999, 6.73102, 7.06133, 6.68461, 6.2146099999999995, 6.912739999999999, 6.4708, 6.2634, 7.08171, 6.90575, 7.6009, 6.52062, 6.907760000000001, 6.60935, 6.51471, 6.9828600000000005, 6.85646, 6.30992, 7.338889999999999, 6.22654, 6.84055, 6.311730000000001, 7.01392, 6.49224, 6.2205900000000005, 7.44659, 7.388330000000001, 6.85118, 7.24423, 6.632000000000001, 6.90575, 7.10906, 6.944089999999999, 6.83518, 6.222580000000001, 6.84588, 7.17012, 6.52503, 6.2860000000000005, 6.80128, 6.07993 ], "y0": "male" }, { "fillcolor": "hsla(82, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(82, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "no", "line": { "color": "hsla(82, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(82, 70%, 70%,1)", "line": { "color": "hsla(82, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.3, "size": 9, "symbol": "triangle-left" }, "meanline": { "color": "hsla(82, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage no", "orientation": "h", "pointpos": 1, "points": false, "scalegroup": "no", "scalemode": "count", "showlegend": true, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.55536, 6.39693, 6.907760000000001, 6.50279, 7.313219999999999, 6.10925, 6.993930000000001, 6.614730000000001, 6.30992, 6.62007, 6.17379, 5.99146, 6.2146099999999995, 6.65286, 6.67203, 6.30992, 6.48158, 6.907760000000001, 5.8999, 6.6995, 6.745239999999999, 6.05209, 6.745239999999999, 5.73334, 7.111510000000001, 6.563860000000001, 6.43775, 7.346010000000001, 6.907760000000001, 5.463830000000001, 5.43808, 6.77422, 6.77878, 6.47697, 6.818919999999999, 6.43455, 5.68358, 6.2146099999999995, 6.10925, 6.6783399999999995, 7.1309, 6.39693, 6.77422, 5.96615, 5.90808, 6.39693, 6.16331, 5.0814, 6.49072, 4.605169999999999, 6.802389999999999, 5.8579300000000005, 6.7901, 6.65286, 6.86485, 6.92461, 7.26193, 5.99146, 6.85646, 6.73815, 6.86693, 5.4161, 6.30079, 5.76832, 6.51471, 6.16542, 5.93489, 7.04752, 6.19644, 6.551080000000001, 5.7525699999999995, 6.318969999999999, 5.89715, 5.9454199999999995, 6.52942, 6.4677, 6.06611, 5.70378, 7.04752, 6.768489999999999, 6.2480400000000005, 6.33328, 6.48311, 6.785589999999999, 7.338889999999999, 7.0255399999999995, 7.00307, 5.8999, 5.7365699999999995, 6.62007, 6.36475, 6.90575, 6.65286, 5.7525699999999995, 6.025869999999999, 5.9269300000000005, 6.20456, 6.31536, 5.95324, 6.1070199999999994, 6.05209, 6.39693, 6.408530000000001, 5.9269300000000005, 5.51745, 6.715380000000001, 6.47697, 6.85646, 6.85646, 6.32972, 7.6009, 6.802389999999999, 6.551080000000001, 6.685860000000001, 6.8977, 5.70378, 6.16331, 6.95655, 7.1309, 6.2634, 6.3716099999999996, 6.10925, 6.93537, 6.51323, 5.8141300000000005, 6.56244, 6.834110000000001, 6.23245, 7.1309, 6.57925, 6.30992, 6.34388, 7.24423, 6.43775, 5.34711, 7.279319999999999, 6.83195, 6.58064, 5.99146, 6.33683, 6.802389999999999, 5.8999, 6.29157, 5.59842, 6.5582, 6.354369999999999, 5.95324, 6.62007, 5.9454199999999995, 5.4161, 5.64545, 5.7525699999999995, 6.28972, 6.2952699999999995, 7.46737, 7.1309, 6.05209, 6.551080000000001, 6.63857, 6.621410000000001, 5.82305, 6.85646, 5.78074, 6.12905, 6.02345, 5.70378, 5.883319999999999, 6.62007, 6.2146099999999995, 6.907760000000001, 5.9269300000000005, 5.59842, 6.58617, 6.901739999999999, 5.8579300000000005, 6.8426800000000005, 6.62007, 5.99146, 6.45362, 6.907760000000001, 6.17379, 6.98008, 5.81711, 6.44254, 6.30079, 6.745239999999999, 6.7901, 6.51471, 6.17379, 6.07993, 6.11589, 7.64969, 6.658010000000001, 5.74939, 6.893660000000001, 6.33328, 8.02027, 6.57786, 6.386880000000001, 7.0255399999999995, 5.9269300000000005, 5.8141300000000005, 6.2634, 6.85646, 5.86647, 6.01616, 5.78383, 6.278519999999999, 6.907760000000001, 6.30992, 6.10925, 6.785589999999999, 6.47697, 7.04752, 5.4161, 6.62007, 6.04025, 7.1107, 6.85646, 6.39693, 6.36819, 6.62007, 6.04025, 6.86693, 6.43775, 5.940169999999999, 6.35957, 6.2146099999999995, 6.253830000000001, 6.1025599999999995, 6.1025599999999995, 6.4552, 6.15698, 7.346010000000001, 6.96885, 5.8861, 6.885510000000001, 6.1717, 7.143619999999999, 6.907760000000001, 6.354369999999999, 5.958419999999999, 5.98645, 6.745239999999999, 5.8579300000000005, 6.882439999999999, 6.68461, 6.715380000000001, 5.8861, 6.90575, 6.10925, 6.16331, 6.10925, 6.65286, 7.24423, 6.39693, 6.86693, 5.65948, 5.940169999999999, 6.26149, 6.551080000000001, 6.29157, 6.07535, 6.59715, 6.77992, 5.50126, 6.77422, 6.2634, 5.82008, 6.85646, 6.4708, 6.8426800000000005, 6.15698, 6.893660000000001, 6.43775, 5.8999, 5.99146, 6.33328, 6.9707300000000005, 6.6567300000000005, 6.745239999999999, 6.93049, 6.16331, 6.95655, 6.694560000000001, 6.6783399999999995, 6.849069999999999, 6.72743, 6.6280399999999995, 6.1070199999999994, 6.712960000000001, 7.346010000000001, 5.97635, 6.29157, 6.86901, 6.63726, 6.0282800000000005, 6.39859, 5.42935, 6.6592899999999995, 6.907760000000001, 6.47697, 6.551080000000001, 6.551080000000001, 6.77422, 6.715380000000001, 6.68461, 5.70378, 6.802389999999999, 6.45834, 5.8141300000000005, 5.4161, 6.95655, 6.88755, 6.23441, 6.463030000000001, 6.65286, 7.0255399999999995, 6.39693, 5.8141300000000005, 7.226210000000001, 6.62007, 6.3952599999999995, 6.06379, 5.42053, 5.8861, 6.52209, 5.8861, 7.20786, 6.05209, 6.02102, 6.05209, 5.52146, 5.95584, 6.8966899999999995, 6.8426800000000005, 5.52146, 6.06379, 6.2205900000000005, 6.86066, 6.0822199999999995, 6.9177100000000005, 7.04752, 6.51471, 6.3952599999999995, 6.70073, 6.07993, 6.46925, 5.940169999999999, 6.22654, 6.39693, 7.17012, 6.58755, 6.8254600000000005, 7.04752, 6.50429, 5.99146, 6.62007, 6.62007, 6.2146099999999995, 6.29895, 6.95655, 5.8579300000000005, 6.745239999999999, 7.20786, 7.04316, 6.8533, 5.70378, 5.93225, 6.58617, 6.49072, 6.68461, 5.78383, 6.84055, 5.2983199999999995, 6.35957, 5.99146, 5.82008, 6.10925, 6.04025, 6.51175, 6.39693, 6.59715, 5.01064, 6.73102, 6.77422, 6.30992, 5.5606800000000005, 6.802389999999999, 6.697030000000001, 6.8426800000000005, 6.30992, 7.01392, 7.24423, 6.354369999999999, 6.602589999999999, 6.9622399999999995, 6.424869999999999, 6.259580000000001, 6.593039999999999, 6.802389999999999, 6.58893, 6.43775, 6.2146099999999995, 6.2634, 5.97635, 6.13123, 6.04025, 6.99485, 6.58617, 6.6567300000000005, 6.07993, 6.551080000000001, 7.59287, 6.17587, 5.8693, 6.963189999999999, 6.43775, 6.73459, 6.551080000000001, 6.66823, 5.78383, 6.51471, 5.70378, 6.2634, 6.90575, 6.29157, 7.09008, 6.2146099999999995, 6.63068, 6.795710000000001, 6.682110000000001, 6.19236, 6.12249, 6.907760000000001, 5.68698, 6.12249, 6.14847, 6.77992, 6.62007, 6.8966899999999995, 6.802389999999999, 6.07993, 5.88053, 7.2998, 6.10925, 5.4161, 6.9256, 6.38856, 6.802389999999999, 5.86079, 5.99894, 6.9966800000000005, 6.68461, 5.39363, 5.96615, 5.70378, 6.52209, 5.96615, 7.43838, 5.9135, 6.6896, 6.14419, 7.04752, 6.692080000000001, 6.013719999999999, 6.31355, 6.224559999999999, 6.07304, 6.2146099999999995, 6.802389999999999, 5.95324, 5.8579300000000005, 6.33683, 5.97889, 6.2146099999999995, 6.34388, 6.62007, 6.8977, 7.40914, 7.18917, 5.70378, 6.1070199999999994, 6.30992, 6.36819, 6.23637, 5.52146, 6.47697, 6.68461, 6.36303, 7.507689999999999, 6.748760000000001, 5.5797300000000005, 6.633319999999999, 7.6009, 6.04025, 6.4677, 7.522939999999999, 5.7525699999999995, 6.551080000000001, 6.47697, 6.0330900000000005, 6.802389999999999, 6.79122, 5.8861, 5.82305, 7.71869, 5.52146, 5.39363, 7.401839999999999, 5.43808, 5.95324, 5.8999, 6.2146099999999995, 6.2804, 7.6009, 6.39693, 5.958419999999999, 6.62007, 5.89715, 6.06611, 6.2146099999999995, 7.313219999999999, 6.0845, 6.82437, 5.48064, 6.29157, 7.2998, 5.83188, 6.3952599999999995, 6.95655, 6.07993, 6.27099, 6.6592899999999995, 6.30992, 6.58617, 7.43838, 6.1181, 6.90575, 6.2146099999999995, 6.899719999999999, 5.76832, 5.70378, 6.035480000000001, 6.206580000000001, 6.39859, 6.551080000000001, 6.39693, 7.09008, 7.09008, 5.70378, 6.43775, 6.02345, 5.9269300000000005, 6.3716099999999996, 6.72743, 7.1309, 6.551080000000001, 6.2634, 6.646389999999999, 6.621410000000001, 5.5797300000000005, 6.07993, 6.802389999999999, 6.30992, 6.7226300000000005, 5.4161, 6.47697, 5.50126, 6.72743, 6.583410000000001, 6.44731, 7.24423, 5.82895, 6.85118, 5.67675, 6.62936, 6.2146099999999995, 6.73815, 6.90575, 6.802389999999999, 6.77422, 6.1944099999999995, 6.08904, 6.70073, 6.802389999999999, 6.69827, 6.593039999999999, 5.99146, 6.85646, 5.01064, 6.45362, 6.745239999999999, 6.85646, 6.79347, 6.2146099999999995, 5.65249, 6.745239999999999, 5.8260000000000005, 6.60394, 6.72623, 6.2146099999999995, 6.39693, 7.1507, 6.317159999999999, 7.00307, 6.35611, 6.85646, 5.8579300000000005, 6.55962, 6.7334, 6.18415, 6.05209, 6.802389999999999, 6.68461, 5.84354, 6.46925, 6.84055, 6.787839999999999, 5.99894, 7.1107, 6.593039999999999, 6.30992, 6.83518, 6.77878, 6.967910000000001, 6.68461, 6.77765, 6.90575, 6.30992, 5.8999, 5.8861, 6.23637, 7.216710000000001, 6.65286, 5.78383, 6.2146099999999995, 6.694560000000001, 7.027310000000001, 5.84644, 6.2146099999999995, 6.88857, 7.195189999999999, 5.76205, 5.68698, 6.49527, 6.51915, 6.1203, 7.00307, 5.7365699999999995, 5.7365699999999995, 6.2146099999999995, 5.47227, 6.2146099999999995, 6.72743, 7.04752, 6.30992, 5.70378, 7.251339999999999, 7.17012, 6.551080000000001, 5.7365699999999995, 5.64191, 6.21261, 6.47697, 6.95655, 5.61313, 6.62672, 6.23441, 7.2717, 5.7462, 6.056780000000001, 5.8944, 5.84932, 6.06843, 5.53339, 7.2998, 6.49375, 5.7365699999999995, 5.76832, 5.5797300000000005, 6.23832, 5.79606, 6.354369999999999, 5.52146, 6.19644, 6.19236, 6.49979, 6.6253899999999994, 6.01616, 6.48158, 5.7525699999999995, 6.14633, 6.97261, 6.712960000000001, 6.16331, 6.3716099999999996, 6.62007, 6.30992, 6.47697, 6.62007, 6.551080000000001, 6.18002, 7.18917, 6.745239999999999, 6.19032, 5.96358, 7.313219999999999, 6.39693, 7.09008, 6.14204, 5.5797300000000005, 6.11147, 5.66988, 6.35957, 5.72031, 6.51471, 5.73334, 6.39693, 5.90808, 5.9269300000000005, 6.2186, 6.68461, 6.13123, 6.643789999999999, 5.66988, 6.39693, 6.06611, 6.0822199999999995, 6.77878, 6.57786, 5.43808, 5.8141300000000005, 6.907760000000001, 6.3315, 6.58617, 6.86485, 6.04025, 6.90575, 6.768489999999999, 6.7901, 6.56244, 6.253830000000001, 6.57228, 6.05209, 5.93225, 5.273, 6.2186, 6.1717, 6.47697, 6.05209, 6.2146099999999995, 5.8579300000000005, 6.86693, 6.36303, 5.19296, 6.39693, 7.1309, 5.95584, 6.7093, 6.62007, 6.912739999999999, 6.2634, 6.41017, 6.556780000000001, 5.8141300000000005, 6.30992, 6.39693, 6.26149, 6.84055, 5.94803, 6.65544, 6.3081 ], "y0": "no" }, { "box": { "visible": false }, "fillcolor": "rgba(0, 0, 0, 0)", "hoverinfo": "x", "hoveron": "points", "jitter": 0.3, "legendgroup": "no", "line": { "color": "rgba(0, 0, 0, 0)", "width": 0 }, "marker": { "color": "hsla(82, 70%, 70%,1)", "line": { "color": "hsla(82, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.3, "size": 9, "symbol": "triangle-left" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 1, "points": "all", "scalegroup": "no", "showlegend": false, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.55536, 6.39693, 6.907760000000001, 6.50279, 7.313219999999999, 6.10925, 6.993930000000001, 6.614730000000001, 6.30992, 6.62007, 6.17379, 5.99146, 6.2146099999999995, 6.65286, 6.67203, 6.30992, 6.48158, 6.907760000000001, 5.8999, 6.6995, 6.745239999999999, 6.05209, 6.745239999999999, 5.73334, 7.111510000000001, 6.563860000000001, 6.43775, 7.346010000000001, 6.907760000000001, 5.463830000000001, 5.43808, 6.77422, 6.77878, 6.47697, 6.818919999999999, 6.43455, 5.68358, 6.2146099999999995, 6.10925, 6.6783399999999995, 7.1309, 6.39693, 6.77422, 5.96615, 5.90808, 6.39693, 6.16331, 5.0814, 6.49072, 4.605169999999999, 6.802389999999999, 5.8579300000000005, 6.7901, 6.65286, 6.86485, 6.92461, 7.26193, 5.99146, 6.85646, 6.73815, 6.86693, 5.4161, 6.30079, 5.76832, 6.51471, 6.16542, 5.93489, 7.04752, 6.19644, 6.551080000000001, 5.7525699999999995, 6.318969999999999, 5.89715, 5.9454199999999995, 6.52942, 6.4677, 6.06611, 5.70378, 7.04752, 6.768489999999999, 6.2480400000000005, 6.33328, 6.48311, 6.785589999999999, 7.338889999999999, 7.0255399999999995, 7.00307, 5.8999, 5.7365699999999995, 6.62007, 6.36475, 6.90575, 6.65286, 5.7525699999999995, 6.025869999999999, 5.9269300000000005, 6.20456, 6.31536, 5.95324, 6.1070199999999994, 6.05209, 6.39693, 6.408530000000001, 5.9269300000000005, 5.51745, 6.715380000000001, 6.47697, 6.85646, 6.85646, 6.32972, 7.6009, 6.802389999999999, 6.551080000000001, 6.685860000000001, 6.8977, 5.70378, 6.16331, 6.95655, 7.1309, 6.2634, 6.3716099999999996, 6.10925, 6.93537, 6.51323, 5.8141300000000005, 6.56244, 6.834110000000001, 6.23245, 7.1309, 6.57925, 6.30992, 6.34388, 7.24423, 6.43775, 5.34711, 7.279319999999999, 6.83195, 6.58064, 5.99146, 6.33683, 6.802389999999999, 5.8999, 6.29157, 5.59842, 6.5582, 6.354369999999999, 5.95324, 6.62007, 5.9454199999999995, 5.4161, 5.64545, 5.7525699999999995, 6.28972, 6.2952699999999995, 7.46737, 7.1309, 6.05209, 6.551080000000001, 6.63857, 6.621410000000001, 5.82305, 6.85646, 5.78074, 6.12905, 6.02345, 5.70378, 5.883319999999999, 6.62007, 6.2146099999999995, 6.907760000000001, 5.9269300000000005, 5.59842, 6.58617, 6.901739999999999, 5.8579300000000005, 6.8426800000000005, 6.62007, 5.99146, 6.45362, 6.907760000000001, 6.17379, 6.98008, 5.81711, 6.44254, 6.30079, 6.745239999999999, 6.7901, 6.51471, 6.17379, 6.07993, 6.11589, 7.64969, 6.658010000000001, 5.74939, 6.893660000000001, 6.33328, 8.02027, 6.57786, 6.386880000000001, 7.0255399999999995, 5.9269300000000005, 5.8141300000000005, 6.2634, 6.85646, 5.86647, 6.01616, 5.78383, 6.278519999999999, 6.907760000000001, 6.30992, 6.10925, 6.785589999999999, 6.47697, 7.04752, 5.4161, 6.62007, 6.04025, 7.1107, 6.85646, 6.39693, 6.36819, 6.62007, 6.04025, 6.86693, 6.43775, 5.940169999999999, 6.35957, 6.2146099999999995, 6.253830000000001, 6.1025599999999995, 6.1025599999999995, 6.4552, 6.15698, 7.346010000000001, 6.96885, 5.8861, 6.885510000000001, 6.1717, 7.143619999999999, 6.907760000000001, 6.354369999999999, 5.958419999999999, 5.98645, 6.745239999999999, 5.8579300000000005, 6.882439999999999, 6.68461, 6.715380000000001, 5.8861, 6.90575, 6.10925, 6.16331, 6.10925, 6.65286, 7.24423, 6.39693, 6.86693, 5.65948, 5.940169999999999, 6.26149, 6.551080000000001, 6.29157, 6.07535, 6.59715, 6.77992, 5.50126, 6.77422, 6.2634, 5.82008, 6.85646, 6.4708, 6.8426800000000005, 6.15698, 6.893660000000001, 6.43775, 5.8999, 5.99146, 6.33328, 6.9707300000000005, 6.6567300000000005, 6.745239999999999, 6.93049, 6.16331, 6.95655, 6.694560000000001, 6.6783399999999995, 6.849069999999999, 6.72743, 6.6280399999999995, 6.1070199999999994, 6.712960000000001, 7.346010000000001, 5.97635, 6.29157, 6.86901, 6.63726, 6.0282800000000005, 6.39859, 5.42935, 6.6592899999999995, 6.907760000000001, 6.47697, 6.551080000000001, 6.551080000000001, 6.77422, 6.715380000000001, 6.68461, 5.70378, 6.802389999999999, 6.45834, 5.8141300000000005, 5.4161, 6.95655, 6.88755, 6.23441, 6.463030000000001, 6.65286, 7.0255399999999995, 6.39693, 5.8141300000000005, 7.226210000000001, 6.62007, 6.3952599999999995, 6.06379, 5.42053, 5.8861, 6.52209, 5.8861, 7.20786, 6.05209, 6.02102, 6.05209, 5.52146, 5.95584, 6.8966899999999995, 6.8426800000000005, 5.52146, 6.06379, 6.2205900000000005, 6.86066, 6.0822199999999995, 6.9177100000000005, 7.04752, 6.51471, 6.3952599999999995, 6.70073, 6.07993, 6.46925, 5.940169999999999, 6.22654, 6.39693, 7.17012, 6.58755, 6.8254600000000005, 7.04752, 6.50429, 5.99146, 6.62007, 6.62007, 6.2146099999999995, 6.29895, 6.95655, 5.8579300000000005, 6.745239999999999, 7.20786, 7.04316, 6.8533, 5.70378, 5.93225, 6.58617, 6.49072, 6.68461, 5.78383, 6.84055, 5.2983199999999995, 6.35957, 5.99146, 5.82008, 6.10925, 6.04025, 6.51175, 6.39693, 6.59715, 5.01064, 6.73102, 6.77422, 6.30992, 5.5606800000000005, 6.802389999999999, 6.697030000000001, 6.8426800000000005, 6.30992, 7.01392, 7.24423, 6.354369999999999, 6.602589999999999, 6.9622399999999995, 6.424869999999999, 6.259580000000001, 6.593039999999999 ], "y0": "no" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(82, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(82, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "no", "line": { "width": 0 }, "marker": { "color": "hsla(82, 50%, 50%,0.9)", "line": { "color": "hsla(82, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "triangle-left" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "no", "showlegend": false, "side": "positive", "span": [ 6.365239262217435, 6.433275867496244 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 6.55536, 6.39693, 6.907760000000001, 6.50279, 7.313219999999999, 6.10925, 6.993930000000001, 6.614730000000001, 6.30992, 6.62007, 6.17379, 5.99146, 6.2146099999999995, 6.65286, 6.67203, 6.30992, 6.48158, 6.907760000000001, 5.8999, 6.6995, 6.745239999999999, 6.05209, 6.745239999999999, 5.73334, 7.111510000000001, 6.563860000000001, 6.43775, 7.346010000000001, 6.907760000000001, 5.463830000000001, 5.43808, 6.77422, 6.77878, 6.47697, 6.818919999999999, 6.43455, 5.68358, 6.2146099999999995, 6.10925, 6.6783399999999995, 7.1309, 6.39693, 6.77422, 5.96615, 5.90808, 6.39693, 6.16331, 5.0814, 6.49072, 4.605169999999999, 6.802389999999999, 5.8579300000000005, 6.7901, 6.65286, 6.86485, 6.92461, 7.26193, 5.99146, 6.85646, 6.73815, 6.86693, 5.4161, 6.30079, 5.76832, 6.51471, 6.16542, 5.93489, 7.04752, 6.19644, 6.551080000000001, 5.7525699999999995, 6.318969999999999, 5.89715, 5.9454199999999995, 6.52942, 6.4677, 6.06611, 5.70378, 7.04752, 6.768489999999999, 6.2480400000000005, 6.33328, 6.48311, 6.785589999999999, 7.338889999999999, 7.0255399999999995, 7.00307, 5.8999, 5.7365699999999995, 6.62007, 6.36475, 6.90575, 6.65286, 5.7525699999999995, 6.025869999999999, 5.9269300000000005, 6.20456, 6.31536, 5.95324, 6.1070199999999994, 6.05209, 6.39693, 6.408530000000001, 5.9269300000000005, 5.51745, 6.715380000000001, 6.47697, 6.85646, 6.85646, 6.32972, 7.6009, 6.802389999999999, 6.551080000000001, 6.685860000000001, 6.8977, 5.70378, 6.16331, 6.95655, 7.1309, 6.2634, 6.3716099999999996, 6.10925, 6.93537, 6.51323, 5.8141300000000005, 6.56244, 6.834110000000001, 6.23245, 7.1309, 6.57925, 6.30992, 6.34388, 7.24423, 6.43775, 5.34711, 7.279319999999999, 6.83195, 6.58064, 5.99146, 6.33683, 6.802389999999999, 5.8999, 6.29157, 5.59842, 6.5582, 6.354369999999999, 5.95324, 6.62007, 5.9454199999999995, 5.4161, 5.64545, 5.7525699999999995, 6.28972, 6.2952699999999995, 7.46737, 7.1309, 6.05209, 6.551080000000001, 6.63857, 6.621410000000001, 5.82305, 6.85646, 5.78074, 6.12905, 6.02345, 5.70378, 5.883319999999999, 6.62007, 6.2146099999999995, 6.907760000000001, 5.9269300000000005, 5.59842, 6.58617, 6.901739999999999, 5.8579300000000005, 6.8426800000000005, 6.62007, 5.99146, 6.45362, 6.907760000000001, 6.17379, 6.98008, 5.81711, 6.44254, 6.30079, 6.745239999999999, 6.7901, 6.51471, 6.17379, 6.07993, 6.11589, 7.64969, 6.658010000000001, 5.74939, 6.893660000000001, 6.33328, 8.02027, 6.57786, 6.386880000000001, 7.0255399999999995, 5.9269300000000005, 5.8141300000000005, 6.2634, 6.85646, 5.86647, 6.01616, 5.78383, 6.278519999999999, 6.907760000000001, 6.30992, 6.10925, 6.785589999999999, 6.47697, 7.04752, 5.4161, 6.62007, 6.04025, 7.1107, 6.85646, 6.39693, 6.36819, 6.62007, 6.04025, 6.86693, 6.43775, 5.940169999999999, 6.35957, 6.2146099999999995, 6.253830000000001, 6.1025599999999995, 6.1025599999999995, 6.4552, 6.15698, 7.346010000000001, 6.96885, 5.8861, 6.885510000000001, 6.1717, 7.143619999999999, 6.907760000000001, 6.354369999999999, 5.958419999999999, 5.98645, 6.745239999999999, 5.8579300000000005, 6.882439999999999, 6.68461, 6.715380000000001, 5.8861, 6.90575, 6.10925, 6.16331, 6.10925, 6.65286, 7.24423, 6.39693, 6.86693, 5.65948, 5.940169999999999, 6.26149, 6.551080000000001, 6.29157, 6.07535, 6.59715, 6.77992, 5.50126, 6.77422, 6.2634, 5.82008, 6.85646, 6.4708, 6.8426800000000005, 6.15698, 6.893660000000001, 6.43775, 5.8999, 5.99146, 6.33328, 6.9707300000000005, 6.6567300000000005, 6.745239999999999, 6.93049, 6.16331, 6.95655, 6.694560000000001, 6.6783399999999995, 6.849069999999999, 6.72743, 6.6280399999999995, 6.1070199999999994, 6.712960000000001, 7.346010000000001, 5.97635, 6.29157, 6.86901, 6.63726, 6.0282800000000005, 6.39859, 5.42935, 6.6592899999999995, 6.907760000000001, 6.47697, 6.551080000000001, 6.551080000000001, 6.77422, 6.715380000000001, 6.68461, 5.70378, 6.802389999999999, 6.45834, 5.8141300000000005, 5.4161, 6.95655, 6.88755, 6.23441, 6.463030000000001, 6.65286, 7.0255399999999995, 6.39693, 5.8141300000000005, 7.226210000000001, 6.62007, 6.3952599999999995, 6.06379, 5.42053, 5.8861, 6.52209, 5.8861, 7.20786, 6.05209, 6.02102, 6.05209, 5.52146, 5.95584, 6.8966899999999995, 6.8426800000000005, 5.52146, 6.06379, 6.2205900000000005, 6.86066, 6.0822199999999995, 6.9177100000000005, 7.04752, 6.51471, 6.3952599999999995, 6.70073, 6.07993, 6.46925, 5.940169999999999, 6.22654, 6.39693, 7.17012, 6.58755, 6.8254600000000005, 7.04752, 6.50429, 5.99146, 6.62007, 6.62007, 6.2146099999999995, 6.29895, 6.95655, 5.8579300000000005, 6.745239999999999, 7.20786, 7.04316, 6.8533, 5.70378, 5.93225, 6.58617, 6.49072, 6.68461, 5.78383, 6.84055, 5.2983199999999995, 6.35957, 5.99146, 5.82008, 6.10925, 6.04025, 6.51175, 6.39693, 6.59715, 5.01064, 6.73102, 6.77422, 6.30992, 5.5606800000000005, 6.802389999999999, 6.697030000000001, 6.8426800000000005, 6.30992, 7.01392, 7.24423, 6.354369999999999, 6.602589999999999, 6.9622399999999995, 6.424869999999999, 6.259580000000001, 6.593039999999999, 6.802389999999999, 6.58893, 6.43775, 6.2146099999999995, 6.2634, 5.97635, 6.13123, 6.04025, 6.99485, 6.58617, 6.6567300000000005, 6.07993, 6.551080000000001, 7.59287, 6.17587, 5.8693, 6.963189999999999, 6.43775, 6.73459, 6.551080000000001, 6.66823, 5.78383, 6.51471, 5.70378, 6.2634, 6.90575, 6.29157, 7.09008, 6.2146099999999995, 6.63068, 6.795710000000001, 6.682110000000001, 6.19236, 6.12249, 6.907760000000001, 5.68698, 6.12249, 6.14847, 6.77992, 6.62007, 6.8966899999999995, 6.802389999999999, 6.07993, 5.88053, 7.2998, 6.10925, 5.4161, 6.9256, 6.38856, 6.802389999999999, 5.86079, 5.99894, 6.9966800000000005, 6.68461, 5.39363, 5.96615, 5.70378, 6.52209, 5.96615, 7.43838, 5.9135, 6.6896, 6.14419, 7.04752, 6.692080000000001, 6.013719999999999, 6.31355, 6.224559999999999, 6.07304, 6.2146099999999995, 6.802389999999999, 5.95324, 5.8579300000000005, 6.33683, 5.97889, 6.2146099999999995, 6.34388, 6.62007, 6.8977, 7.40914, 7.18917, 5.70378, 6.1070199999999994, 6.30992, 6.36819, 6.23637, 5.52146, 6.47697, 6.68461, 6.36303, 7.507689999999999, 6.748760000000001, 5.5797300000000005, 6.633319999999999, 7.6009, 6.04025, 6.4677, 7.522939999999999, 5.7525699999999995, 6.551080000000001, 6.47697, 6.0330900000000005, 6.802389999999999, 6.79122, 5.8861, 5.82305, 7.71869, 5.52146, 5.39363, 7.401839999999999, 5.43808, 5.95324, 5.8999, 6.2146099999999995, 6.2804, 7.6009, 6.39693, 5.958419999999999, 6.62007, 5.89715, 6.06611, 6.2146099999999995, 7.313219999999999, 6.0845, 6.82437, 5.48064, 6.29157, 7.2998, 5.83188, 6.3952599999999995, 6.95655, 6.07993, 6.27099, 6.6592899999999995, 6.30992, 6.58617, 7.43838, 6.1181, 6.90575, 6.2146099999999995, 6.899719999999999, 5.76832, 5.70378, 6.035480000000001, 6.206580000000001, 6.39859, 6.551080000000001, 6.39693, 7.09008, 7.09008, 5.70378, 6.43775, 6.02345, 5.9269300000000005, 6.3716099999999996, 6.72743, 7.1309, 6.551080000000001, 6.2634, 6.646389999999999, 6.621410000000001, 5.5797300000000005, 6.07993, 6.802389999999999, 6.30992, 6.7226300000000005, 5.4161, 6.47697, 5.50126, 6.72743, 6.583410000000001, 6.44731, 7.24423, 5.82895, 6.85118, 5.67675, 6.62936, 6.2146099999999995, 6.73815, 6.90575, 6.802389999999999, 6.77422, 6.1944099999999995, 6.08904, 6.70073, 6.802389999999999, 6.69827, 6.593039999999999, 5.99146, 6.85646, 5.01064, 6.45362, 6.745239999999999, 6.85646, 6.79347, 6.2146099999999995, 5.65249, 6.745239999999999, 5.8260000000000005, 6.60394, 6.72623, 6.2146099999999995, 6.39693, 7.1507, 6.317159999999999, 7.00307, 6.35611, 6.85646, 5.8579300000000005, 6.55962, 6.7334, 6.18415, 6.05209, 6.802389999999999, 6.68461, 5.84354, 6.46925, 6.84055, 6.787839999999999, 5.99894, 7.1107, 6.593039999999999, 6.30992, 6.83518, 6.77878, 6.967910000000001, 6.68461, 6.77765, 6.90575, 6.30992, 5.8999, 5.8861, 6.23637, 7.216710000000001, 6.65286, 5.78383, 6.2146099999999995, 6.694560000000001, 7.027310000000001, 5.84644, 6.2146099999999995, 6.88857, 7.195189999999999, 5.76205, 5.68698, 6.49527, 6.51915, 6.1203, 7.00307, 5.7365699999999995, 5.7365699999999995, 6.2146099999999995, 5.47227, 6.2146099999999995, 6.72743, 7.04752, 6.30992, 5.70378, 7.251339999999999, 7.17012, 6.551080000000001, 5.7365699999999995, 5.64191, 6.21261, 6.47697, 6.95655, 5.61313, 6.62672, 6.23441, 7.2717, 5.7462, 6.056780000000001, 5.8944, 5.84932, 6.06843, 5.53339, 7.2998, 6.49375, 5.7365699999999995, 5.76832, 5.5797300000000005, 6.23832, 5.79606, 6.354369999999999, 5.52146, 6.19644, 6.19236, 6.49979, 6.6253899999999994, 6.01616, 6.48158, 5.7525699999999995, 6.14633, 6.97261, 6.712960000000001, 6.16331, 6.3716099999999996, 6.62007, 6.30992, 6.47697, 6.62007, 6.551080000000001, 6.18002, 7.18917, 6.745239999999999, 6.19032, 5.96358, 7.313219999999999, 6.39693, 7.09008, 6.14204, 5.5797300000000005, 6.11147, 5.66988, 6.35957, 5.72031, 6.51471, 5.73334, 6.39693, 5.90808, 5.9269300000000005, 6.2186, 6.68461, 6.13123, 6.643789999999999, 5.66988, 6.39693, 6.06611, 6.0822199999999995, 6.77878, 6.57786, 5.43808, 5.8141300000000005, 6.907760000000001, 6.3315, 6.58617, 6.86485, 6.04025, 6.90575, 6.768489999999999, 6.7901, 6.56244, 6.253830000000001, 6.57228, 6.05209, 5.93225, 5.273, 6.2186, 6.1717, 6.47697, 6.05209, 6.2146099999999995, 5.8579300000000005, 6.86693, 6.36303, 5.19296, 6.39693, 7.1309, 5.95584, 6.7093, 6.62007, 6.912739999999999, 6.2634, 6.41017, 6.556780000000001, 5.8141300000000005, 6.30992, 6.39693, 6.26149, 6.84055, 5.94803, 6.65544, 6.3081 ], "y0": "no" }, { "fillcolor": "hsla(164, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(164, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "yes", "line": { "color": "hsla(164, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(164, 70%, 70%,1)", "line": { "color": "hsla(164, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.3, "size": 9, "symbol": "triangle-right" }, "meanline": { "color": "hsla(164, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage yes", "orientation": "h", "pointpos": 1, "points": false, "scalegroup": "yes", "scalemode": "count", "showlegend": true, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.99942, 5.99146, 7.67322, 7.09008, 5.61677, 6.646389999999999, 7.02643, 6.4552, 7.32975, 6.95845, 7.06902, 6.04025, 6.907760000000001, 7.91936, 6.745239999999999, 6.30079, 7.068169999999999, 6.07535, 6.7417, 7.71869, 6.882439999999999, 6.47697, 6.77878, 6.907760000000001, 6.93342, 7.06902, 6.57368, 6.829789999999999, 7.557989999999999, 6.892639999999999, 7.0255399999999995, 6.57925, 6.47697, 7.1309, 6.551080000000001, 6.882439999999999, 6.907760000000001, 6.682110000000001, 6.39693, 6.48004, 6.60665, 7.00307, 5.78383, 6.94505, 6.9546399999999995, 7.17012, 7.11477, 6.593039999999999, 6.49979, 6.5439099999999994, 6.39192, 6.51471, 6.30992, 6.30992, 7.116389999999999, 6.46925, 7.554860000000001, 6.90675, 6.85646, 5.94803, 6.90575, 6.90575, 7.408530000000001, 7.0076, 6.88857, 7.35947, 6.39693, 7.041410000000001, 6.66696, 6.30992, 7.313219999999999, 6.787839999999999, 6.90575, 6.802389999999999, 7.00307, 7.074960000000001, 7.5606, 6.16331, 5.94803, 6.43775, 7.282760000000001, 6.39693, 6.813439999999999, 6.694560000000001, 6.29157, 6.23048, 6.16331, 6.88755, 6.95655, 7.56008, 6.28227, 6.30992, 6.05912, 6.602589999999999, 7.47307, 6.2146099999999995, 6.95655, 6.90575, 6.461469999999999, 7.09008, 7.46737, 6.829789999999999, 6.60665, 6.74052, 6.745239999999999, 7.6009, 6.62007, 6.551080000000001, 6.663130000000001, 7.60589, 6.53669, 6.5582, 6.16121, 6.19236, 6.2146099999999995, 7.37776, 6.58617, 6.23832, 6.27476, 6.48311, 6.69084, 6.54965, 6.882439999999999, 6.663130000000001, 5.70378, 6.7226300000000005, 7.20786, 6.802389999999999, 6.79122, 6.62007, 6.42162, 6.12249, 6.90575, 6.28227, 6.206580000000001, 5.99146, 6.682110000000001, 6.49677, 7.408530000000001, 6.10925, 6.317159999999999, 6.2146099999999995, 6.551080000000001, 6.25575, 7.0884100000000005, 6.16331, 6.68461, 5.8999, 7.01392, 7.1107, 6.9363399999999995, 6.90575, 6.1070199999999994, 6.85646, 6.44572, 6.551080000000001, 6.84588, 8.10168, 7.31255, 5.99645, 6.90575, 6.802389999999999, 6.2146099999999995, 6.66696, 6.907760000000001, 6.90575, 6.6592899999999995, 8.047189999999999, 6.62407, 7.0076, 6.30992, 6.17379, 6.55393, 6.3952599999999995, 6.24611, 7.78322, 6.60665, 7.12448, 6.507280000000001, 6.461469999999999, 6.8977, 7.82405, 7.75148, 6.62407, 6.2146099999999995, 7.1309, 6.51471, 5.96615, 6.84055, 7.041410000000001, 6.51471, 6.551080000000001, 7.346010000000001, 6.966019999999999, 6.90575, 7.17012, 6.5820300000000005, 7.04752, 6.354369999999999, 6.59578, 7.82405, 6.5467900000000006, 6.551080000000001, 6.39693, 6.88755, 6.39693, 6.39693, 6.65286, 6.36647, 6.622739999999999, 6.90575, 5.7525699999999995, 6.15273, 7.04752, 5.52146, 6.770789999999999, 6.907760000000001, 7.00125, 7.064760000000001, 7.00307, 6.05209, 6.745239999999999, 7.045780000000001, 6.54535, 6.37673, 6.62007, 6.907760000000001, 6.10925, 6.39693, 8.16052, 6.745239999999999, 7.03527, 6.765039999999999, 7.1309, 6.77422, 6.87213, 6.551080000000001, 6.907760000000001, 6.6567300000000005, 6.80017, 7.226210000000001, 6.10925, 6.90575, 6.70073, 7.495539999999999, 8.05516, 6.9256, 7.06987, 6.694560000000001, 6.90575, 6.43775, 6.97261, 7.29709, 7.179310000000001, 7.313219999999999, 6.7226300000000005, 6.82437, 6.715380000000001, 7.173189999999999, 6.62007, 6.7226300000000005, 6.85118, 6.49224, 7.313219999999999, 6.62007, 7.158510000000001, 6.68461, 6.57647, 5.89715, 6.34564, 6.556780000000001, 6.7093, 6.93925, 7.00307, 6.551080000000001, 6.90575, 6.53669, 6.69084, 7.313219999999999, 6.05209, 6.90575, 6.62007, 6.4552, 6.77422, 6.87005, 6.65544, 6.42162, 5.9269300000000005, 6.317159999999999, 6.42972, 6.62007, 6.96508, 6.19236, 6.61607, 5.5606800000000005, 6.57368, 6.2634, 6.715380000000001, 7.408530000000001, 6.17379, 7.333019999999999, 6.37502, 6.317159999999999, 7.04752, 6.68461, 6.98008, 6.912739999999999, 6.86693, 7.3670800000000005, 6.68461, 7.09008, 6.90575, 6.90575, 6.62007, 6.45362, 6.47697, 6.9431199999999995, 6.90575, 6.10925, 6.67203, 6.7334, 7.34278, 6.90575, 6.658010000000001, 6.9256, 6.90575, 6.91075, 6.6592899999999995, 6.6592899999999995, 6.16331, 7.441319999999999, 6.47851, 7.07834, 6.745239999999999, 7.20786, 6.36475, 6.63857, 7.475910000000001, 6.62007, 6.4892, 7.00307, 6.56948, 7.43838, 7.15383, 7.064760000000001, 6.88755, 7.26193, 6.23245, 6.30445, 6.715380000000001, 7.313219999999999, 7.37776, 5.8579300000000005, 6.85646, 6.2441699999999996, 6.90575, 6.907760000000001, 6.272880000000001, 6.66568, 7.481560000000001, 7.04752, 6.61338, 6.40688, 5.8579300000000005, 7.57558, 6.83518, 6.38856, 6.768489999999999, 6.90575, 6.39693, 6.34739, 7.1507, 6.58617, 7.282760000000001, 7.00307, 6.66058, 6.58064, 6.90575, 6.10925, 6.64249, 6.715380000000001, 6.62007, 7.1309, 5.99146, 6.95655, 6.65286, 6.16331, 6.24611, 7.1309, 7.1333, 7.24423, 6.04025, 6.86901, 6.802389999999999, 6.70073, 6.1203, 6.90575, 7.313219999999999, 6.54822, 6.95655, 7.50108, 6.39693, 7.07918, 5.8579300000000005, 5.70378, 6.7369699999999995, 7.745, 6.87213, 6.39693, 6.30628, 6.8773, 6.708080000000001, 6.818919999999999, 7.041410000000001, 6.882439999999999, 6.94986, 6.703189999999999, 6.37502, 7.03615, 7.37776, 5.66988, 6.907760000000001, 6.882439999999999, 6.752269999999999, 6.48158, 6.47697, 6.802389999999999, 6.984719999999999, 5.9269300000000005, 6.49224, 6.385190000000001, 7.1309, 7.663880000000001, 7.07242, 6.907760000000001, 6.43775, 8.05516, 6.807930000000001, 6.907760000000001, 6.403569999999999, 6.035480000000001, 7.24423, 6.05209, 7.00307, 5.99146, 6.33683, 6.07993, 7.488289999999999, 6.51175, 5.7365699999999995, 6.90575, 6.697030000000001, 6.354369999999999, 6.802389999999999, 6.62007, 6.68461, 6.68835, 5.8260000000000005, 6.85646, 6.44572, 6.95655, 7.20786, 6.3716099999999996, 6.8977, 6.47697, 6.802389999999999, 6.84055, 7.676010000000001, 6.85646, 6.43775, 7.20786, 6.89163, 7.0121199999999995, 6.85646, 6.77422, 6.54965, 6.05209, 6.697030000000001, 6.90575, 6.68461, 6.62007, 7.24423, 6.36819, 6.8844899999999996, 6.62007, 6.745239999999999, 6.19236, 6.39693, 6.85646, 6.7334, 5.98896, 6.48004, 6.55393, 6.5903, 7.02643, 7.15305, 6.19236, 6.43615, 6.6871100000000006, 6.42162, 6.06379, 6.93537, 7.09008, 6.802389999999999, 6.47697, 6.2634, 7.79028, 6.10032, 6.0282800000000005, 7.408530000000001, 6.6174, 6.907760000000001, 6.90575, 5.99146, 6.2441699999999996, 6.00141, 6.79122, 6.9196800000000005, 6.9147300000000005, 6.90575, 6.646389999999999, 6.746410000000001, 6.30992, 6.42972, 6.18826, 6.5467900000000006, 7.522939999999999, 6.7334, 6.07993, 6.907760000000001, 6.90575, 7.04752, 6.66185, 6.47697, 7.23418, 6.54247, 6.753439999999999, 6.51471, 7.034389999999999, 6.65286, 7.262630000000001, 7.20786, 6.90575, 6.30992, 6.984719999999999, 6.30445, 6.05209, 6.34564, 6.95655, 6.49224, 6.62007, 5.82895, 6.39693, 6.06146, 6.43775, 6.03787, 6.3952599999999995, 6.22654, 7.144410000000001, 6.90575, 6.91374, 5.70378, 6.5903, 7.1592899999999995, 6.57786, 6.6783399999999995, 6.72383, 6.41182, 6.53233, 6.907760000000001, 6.7334, 7.236339999999999, 6.20456, 6.10925, 6.715380000000001, 6.72743, 7.084230000000001, 6.97635, 7.20786, 7.00307, 6.35089, 6.59167, 6.461469999999999, 6.984719999999999, 6.53233, 6.646389999999999, 6.39693, 7.459910000000001, 6.19848, 7.0255399999999995, 6.745239999999999, 6.22654, 6.10925, 7.08171, 6.64249, 7.49332, 7.495539999999999, 7.1546199999999995, 7.1309, 6.745239999999999, 6.18415, 5.82895, 6.10925, 6.58617, 6.48158, 6.20456, 7.313219999999999, 6.94022, 6.90575, 6.41836, 6.10925, 7.48717, 7.0193, 6.983789999999999, 6.633319999999999, 6.29157, 7.49109, 6.91672, 6.90575, 6.715380000000001, 6.47697, 7.37212, 6.646389999999999, 7.0184, 6.84055, 7.24423, 7.09008, 6.52942, 7.4553, 7.00307, 6.37502, 7.24423, 6.48158, 6.68461, 6.10925, 6.90575, 6.90575, 7.75577, 6.82437, 6.18415, 6.43775, 6.90575, 7.1107, 6.44572, 6.42162, 6.769639999999999, 6.93245, 6.818919999999999, 6.551080000000001, 6.58617, 6.96508, 6.44572, 6.7093, 6.28972, 7.1082399999999994, 7.135689999999999, 6.49072, 7.251339999999999, 8.51719, 6.807930000000001, 7.14756, 7.33368, 6.77422, 6.60394, 6.68461, 7.1309, 5.99146, 7.201169999999999, 6.10925, 6.68461, 6.39693, 6.927560000000001, 6.85751, 6.95655, 6.08677, 7.24423, 7.1309, 6.17587, 6.30992, 6.36303, 6.77422, 6.2860000000000005, 6.828710000000001, 6.47697, 6.72743, 6.55251, 6.62407, 5.9814099999999994, 6.76273, 7.06902, 5.9269300000000005, 6.80128, 7.313219999999999, 6.966019999999999, 6.6592899999999995, 6.39693, 6.57786, 6.65286, 6.293419999999999, 5.87493, 6.79122, 6.987489999999999, 6.30992, 6.55536, 7.09008, 6.2146099999999995, 7.04752, 6.90575, 6.10925, 6.6783399999999995, 6.39693, 7.259119999999999, 7.43838, 6.47697, 7.1309, 6.77422, 6.2634, 6.739339999999999, 6.47697, 6.90575, 7.279319999999999, 6.815639999999999, 6.65028, 6.27099, 7.17012, 6.354369999999999, 6.29157, 6.802389999999999, 6.602589999999999, 6.47697, 6.58755, 6.77422, 6.907760000000001, 7.09589, 6.882439999999999, 5.45959, 6.05209, 7.67322, 5.8579300000000005, 6.2146099999999995, 7.2957399999999994, 5.84354, 6.802389999999999, 6.58064, 6.2634, 7.00307, 6.90575, 7.21891, 7.503839999999999, 6.45677, 6.950810000000001, 5.97126, 6.23048, 6.15273, 7.57558, 6.96035, 6.3716099999999996, 6.2146099999999995, 6.7334, 6.86066, 6.378430000000001, 6.48004, 7.00307, 6.8200199999999995, 6.47697, 6.90575, 7.39388, 7.4787300000000005, 6.2146099999999995, 6.802389999999999, 6.43775, 7.24065, 6.13773, 6.3952599999999995, 7.1025, 7.04752, 7.09008, 6.77992, 6.9256, 6.035480000000001, 7.22766, 7.475339999999999, 5.72031, 6.272880000000001, 6.01616, 6.27099, 7.91936, 6.85646, 6.354369999999999, 6.2634, 6.51471, 6.92166, 6.253830000000001, 6.745239999999999, 6.30992, 7.3651800000000005, 6.24998, 6.893660000000001, 6.53669, 6.43615, 7.04752, 6.30992, 6.39693, 6.1334, 6.765039999999999, 6.85646, 6.892639999999999, 6.95655, 5.99146, 6.43775, 6.90575, 6.81124, 6.966019999999999, 6.8865300000000005, 6.62007, 7.334980000000001, 6.72743, 6.93245, 7.27031, 7.03878, 7.0255399999999995, 6.10925, 6.83518, 6.77992, 6.68461, 7.696210000000001, 6.53669, 6.52942, 6.126869999999999, 6.54965, 6.715380000000001, 7.31122, 5.8693, 6.90575, 6.0282800000000005, 6.30992, 6.23245, 6.31536, 7.486610000000001, 6.52942, 6.14204, 6.88755, 6.62007, 6.34564, 6.44413, 5.99146, 6.93245, 7.37776, 6.907760000000001, 7.18917, 6.7093, 6.75926, 6.3315, 6.5439099999999994, 6.1717, 7.9459100000000005, 6.77422, 7.424760000000001, 5.70378, 6.43775, 6.90575, 7.6009, 6.90575, 7.46737, 6.694560000000001, 8.16052, 6.984719999999999, 6.802389999999999, 5.99146, 6.802389999999999, 7.32647, 7.1309, 5.96101, 6.62007, 6.84055, 6.58617, 7.1309, 7.00307, 7.78322, 6.62007, 5.7525699999999995, 6.62407, 6.795710000000001, 7.212289999999999, 6.05209, 6.38856, 6.93925, 6.47697, 6.8773, 6.354369999999999, 7.9724699999999995, 6.703189999999999, 6.47697, 6.50429, 6.58617, 6.51471, 6.06611, 6.68461, 6.65544, 7.331060000000001, 6.64118, 6.47697, 7.475910000000001, 6.72743, 7.20786, 6.81124, 7.0201899999999995, 7.279319999999999, 6.80461, 5.99645, 7.10906, 6.40523, 6.77422, 7.01571, 6.54822, 6.14204, 6.47697, 7.24423, 5.93225, 7.46737, 6.69084, 6.47697, 6.85646, 6.88755, 7.24423, 6.95655, 6.67077, 7.313219999999999, 6.98008, 6.75577, 6.566669999999999, 7.09008, 6.697030000000001, 6.79794, 6.2634, 6.61874, 6.64118, 7.1309, 6.98101, 6.90575, 5.90263, 6.17794, 6.77422, 6.96035, 6.6515699999999995, 6.35957, 6.829789999999999, 6.66568, 7.09008, 6.10925, 6.85646, 6.90575, 6.95655, 6.126869999999999, 7.1309, 6.4552, 6.58617, 7.23778, 6.66568, 6.21261, 6.57925, 6.802389999999999, 6.88755, 7.08171, 6.6567300000000005, 7.696210000000001, 6.68461, 6.43775, 6.802389999999999, 6.6592899999999995, 6.48311, 6.408530000000001, 6.84055, 7.17778, 6.2634, 6.4892, 6.95177, 6.785589999999999, 7.033510000000001, 6.57647, 6.23637, 6.530880000000001, 6.43775, 6.90575, 6.30992, 6.85646, 6.79122, 6.30992, 6.62007, 5.76832, 6.81014, 6.551080000000001, 6.56526, 6.551080000000001, 7.09008, 6.9613, 6.7901, 6.95655, 6.65286, 5.9814099999999994, 6.28227, 7.46737, 7.18007, 7.46737, 6.90575, 6.52209, 7.37776, 6.90575, 5.99146, 7.46737, 5.99146, 6.18826, 6.59987, 6.68461, 7.6009, 7.14913, 7.27031, 6.317159999999999, 6.72503, 5.99146, 6.62007, 6.6871100000000006, 7.17012, 6.802389999999999, 5.93754, 6.995769999999999, 6.802389999999999, 6.52356, 6.55251, 6.56526, 6.72383, 7.09008, 6.68461, 6.52209, 7.313219999999999, 6.94698, 6.561030000000001, 6.907760000000001, 7.71869, 5.96615, 6.41673, 6.29157, 7.00307, 6.802389999999999, 6.90375, 6.1944099999999995, 7.09008, 6.90575, 6.47697, 7.26193, 6.60665, 6.424869999999999, 7.37776, 6.13773, 6.907760000000001, 6.858569999999999, 6.745239999999999, 7.495539999999999, 7.1546199999999995, 6.2804, 6.6592899999999995, 6.77422, 6.893660000000001, 6.86693, 7.408530000000001, 6.72743, 6.42972, 6.633319999999999, 7.0579, 6.68461, 7.185389999999999, 7.26543, 7.05099, 6.10925, 6.60123, 7.233460000000001, 6.90575, 6.77194, 6.6567300000000005, 6.3243599999999995, 6.55393, 6.9613, 6.90575, 6.907760000000001, 6.90975, 7.64969, 7.1309, 6.745239999999999, 5.99146, 6.354369999999999, 5.4161, 6.55536, 6.02102, 6.7334, 6.47697, 6.47697, 6.53669, 6.95655, 6.551080000000001, 7.6009, 6.90575, 7.17242, 6.3421199999999995, 6.9196800000000005, 6.51471, 6.85646, 6.551080000000001, 6.35611, 6.90575, 6.34914, 7.696210000000001, 7.17012, 6.802389999999999, 6.253830000000001, 6.90575, 6.48464, 6.49224, 6.82763, 6.90575, 7.014810000000001, 6.2634, 7.04752, 6.90575, 7.20786, 7.02997, 7.803839999999999, 6.31355, 6.89467, 6.829789999999999, 7.17012, 7.54961, 7.28207, 6.69084, 7.1929300000000005, 6.33328, 5.84354, 6.85646, 6.912739999999999, 6.80017, 6.97635, 6.2653, 7.1309, 7.17012, 7.0884100000000005, 7.16627, 6.19644, 6.39693, 5.9814099999999994, 6.90575, 6.90575, 6.6958, 5.01728, 7.279319999999999, 7.136480000000001, 6.608, 6.68461, 7.9831, 6.9828600000000005, 6.30992, 6.2146099999999995, 7.09506, 6.44572, 6.90575, 6.90575, 7.08339, 5.96615, 6.9622399999999995, 7.11233, 6.912739999999999, 6.68461, 6.8254600000000005, 7.346010000000001, 6.68085, 7.24423, 6.62007, 6.1070199999999994, 6.33328, 6.15698, 6.30262, 6.253830000000001, 7.30317, 6.829789999999999, 6.56808, 6.36303, 7.20786, 6.752269999999999, 6.95655, 6.02102, 6.633319999999999, 6.2634, 7.183110000000001, 6.907760000000001, 6.6174, 7.43838, 6.45047, 6.9707300000000005, 6.3952599999999995, 7.09008, 6.49979, 6.94986, 7.06902, 6.68461, 7.22766, 6.68461, 7.1309, 6.975410000000001, 6.2672, 6.50279, 6.551080000000001, 6.59987, 6.7334, 6.2146099999999995, 6.44572, 7.408530000000001, 7.09008, 6.614730000000001, 6.17379, 7.03615, 6.05209, 6.83518, 7.09008, 6.63857, 6.17794, 6.551080000000001, 6.30992, 7.07834, 6.39693, 6.57228, 6.938280000000001, 6.715380000000001, 6.7511, 6.715380000000001, 6.58617, 5.59842, 6.3935900000000006, 7.26193, 6.49072, 6.829789999999999, 6.745239999999999, 6.721430000000001, 6.59715, 6.00389, 6.9828600000000005, 6.62007, 6.85646, 7.04752, 6.23441, 6.551080000000001, 6.14633, 6.563860000000001, 6.73102, 6.2634, 6.3243599999999995, 6.721430000000001, 6.6796, 7.062189999999999, 6.10925, 7.313219999999999, 6.34564, 6.561030000000001, 6.17379, 7.06987, 6.87626, 6.505780000000001, 6.745239999999999, 6.966019999999999, 6.4488900000000005, 7.1309, 6.68461, 6.575080000000001, 6.40192, 6.70073, 6.56808, 6.7334, 6.30992, 7.0775, 6.6796, 6.8384100000000005, 7.03615, 6.85751, 6.745239999999999, 7.313219999999999, 6.86693, 7.08171, 6.85646, 6.47697, 6.47697, 6.28972, 7.46737, 7.2724, 6.61874, 6.30079, 7.0255399999999995, 6.27099, 6.90575, 6.34564, 6.9828600000000005, 7.450080000000001, 6.224559999999999, 6.551080000000001, 6.23441, 7.1309, 6.52209, 7.49332, 6.39192, 6.739339999999999, 7.4832399999999994, 6.16331, 6.68461, 6.90575, 6.90575, 7.1309, 6.86171, 6.715380000000001, 6.551080000000001, 6.33683, 6.9187, 7.0579, 6.35611, 7.02376, 5.5797300000000005, 6.90575, 6.82655, 6.90575, 5.9269300000000005, 7.42833, 5.87212, 6.463030000000001, 7.52833, 6.86797, 6.60665, 6.90575, 6.4677, 7.3651800000000005, 6.748760000000001, 6.77992, 6.975410000000001, 7.43838, 7.82405, 6.5439099999999994, 6.42162, 6.8844899999999996, 7.16085, 6.52209, 6.04025, 5.52146, 6.90575, 7.00307, 6.907760000000001, 6.817830000000001, 7.279319999999999, 6.907760000000001, 7.54961, 7.323169999999999, 6.90575, 6.41017, 6.90575, 6.787839999999999, 6.62007, 7.0967199999999995, 5.9269300000000005, 6.55393, 6.17379, 7.00307, 7.31122, 7.31122, 6.31355, 6.44572, 6.59578, 6.47697, 6.69332, 6.7511, 6.77422, 7.09008, 5.8579300000000005, 7.183110000000001, 7.728860000000001, 6.54965, 7.04752, 7.25488, 6.9256, 6.907760000000001, 5.65249, 7.041410000000001, 6.4599, 6.96035, 7.1333, 6.99942, 6.38012, 7.200419999999999, 7.18007, 7.1309, 6.461469999999999, 6.85646, 7.17012, 7.03527, 6.19848, 6.62007, 7.313219999999999, 6.907760000000001, 6.90575, 7.1452, 5.82895, 6.33683, 6.04025, 6.2146099999999995, 7.8935699999999995, 6.34564, 6.64249, 6.8977, 6.3699, 6.6567300000000005, 6.813439999999999, 6.53669, 6.90575, 6.47697, 6.05209, 7.21524, 6.551080000000001, 6.66568, 6.57925, 6.2146099999999995, 6.8426800000000005, 6.907760000000001, 6.90575, 7.106610000000001, 6.424869999999999, 6.65415, 6.86693, 6.745239999999999, 6.88346, 6.53669, 6.3207699999999996, 7.696210000000001, 7.64779, 7.313219999999999, 6.95655, 6.715380000000001, 6.44254, 6.61338, 6.23245, 6.95655, 6.768489999999999, 7.3981699999999995, 6.68461, 7.12287, 6.813439999999999, 6.752269999999999, 6.551080000000001, 6.7334, 6.318969999999999, 6.79122, 5.95324, 6.745239999999999, 7.1309, 6.54103, 7.06048, 6.24222, 6.68461, 6.05209, 6.78672, 7.09008, 7.1309, 6.47697, 7.1025, 5.9814099999999994, 7.24423, 6.44254, 7.451239999999999, 7.198180000000001, 7.27101, 7.245660000000001, 7.279319999999999, 6.85646, 7.279319999999999, 7.67322, 6.76273, 6.82437, 6.47697, 6.885510000000001, 7.07918, 7.279319999999999, 7.1309, 6.966019999999999, 6.73102, 6.633319999999999, 7.00307, 7.6009, 6.907760000000001, 6.32615, 6.508769999999999, 6.551080000000001, 7.0884100000000005, 6.829789999999999, 7.31986, 6.21661, 7.11802, 6.77422, 7.26193, 6.90575, 7.00307, 5.99146, 7.46737, 6.57786, 6.3081, 6.90575, 6.311730000000001, 6.39693, 6.95655, 6.62007, 6.3952599999999995, 6.48311, 6.39693, 6.90575, 6.60665, 6.90575, 6.318969999999999, 6.802389999999999, 6.70441, 6.51471, 6.77992, 6.68461, 6.29157, 6.40523, 6.18826, 7.24423, 6.83518, 7.09008, 7.84502, 7.1624, 6.813439999999999, 6.907760000000001, 6.68461, 6.14633, 7.17012, 6.53814, 6.882439999999999, 6.36647, 6.47697, 7.54697, 6.60665, 6.68461, 7.408530000000001, 7.2724, 6.46614, 6.90575, 5.7462, 6.36303, 7.04752, 6.551080000000001, 6.58064, 6.17379, 6.83195, 7.20786, 6.62007, 6.95655, 6.90575, 6.34564, 7.09008, 7.014810000000001, 6.73815, 6.65028, 7.03878, 6.10032, 7.266830000000001, 6.95655, 7.20786, 6.602589999999999, 6.551080000000001, 6.87626, 5.16479, 7.54961, 6.551080000000001, 6.49224, 6.58893, 6.60665, 6.907760000000001, 7.64969, 6.9177100000000005, 6.18415, 6.68461, 7.43838, 6.66441, 6.551080000000001, 6.41182, 6.43775, 6.43775, 6.4599, 7.00307, 5.99146, 6.852239999999999, 6.5439099999999994, 6.6515699999999995, 7.522939999999999, 6.16331, 6.551080000000001, 6.907760000000001, 7.04752, 6.44572, 6.3243599999999995, 6.41346, 6.551080000000001, 6.802389999999999, 6.62007, 6.5439099999999994, 6.57925, 6.38012, 6.4151, 6.52209, 6.29157, 6.2146099999999995, 6.97167, 6.75926, 6.66823, 7.37776, 7.1309, 6.90575, 6.10925, 7.408530000000001, 6.39693, 6.04025, 7.0396600000000005, 7.09589, 7.10003, 6.73102, 6.87523, 6.90575, 7.20786, 7.173960000000001, 6.90575, 6.47389, 6.99026, 7.0884100000000005, 6.206580000000001, 6.56526, 6.44572, 6.551080000000001, 6.53379, 6.90575, 6.46614, 6.61338, 6.90575, 6.85646, 6.47389, 6.10925, 6.99118, 6.2441699999999996, 7.1592899999999995, 6.90575, 6.59987, 7.01571, 6.42162, 6.716589999999999, 6.85646, 7.46737, 6.58617, 6.95655, 6.29157, 6.907760000000001, 6.46459, 6.62007, 6.95177, 6.58617, 6.50129, 6.2952699999999995, 6.85646, 6.15698, 6.90575, 7.6009, 7.00307, 6.17379, 6.15273, 6.62007, 7.346010000000001, 6.90575, 6.68461, 6.50429, 7.0942300000000005, 5.78383, 6.54535, 6.3716099999999996, 7.86327, 6.62007, 7.09008, 6.703189999999999, 6.53233, 6.58617, 7.46737, 6.39693, 6.38012, 6.802389999999999, 6.43935, 7.044910000000001, 6.42162, 6.90575, 6.802389999999999, 6.44413, 7.127689999999999, 6.45677, 6.40192, 6.55393, 7.06902, 6.59987, 6.715380000000001, 6.715380000000001, 6.39693, 6.57786, 6.68461, 7.00307, 6.42972, 6.85435, 6.937310000000001, 6.2106, 6.708080000000001, 6.0845, 6.907760000000001, 6.16331, 6.2441699999999996, 6.74406, 6.85646, 6.73221, 5.72031, 7.54961, 6.37673, 6.90575, 6.62007, 6.768489999999999, 6.63595, 5.82895, 6.90575, 6.75577, 6.77194, 6.77422, 5.8999, 6.2146099999999995, 6.2146099999999995, 6.62007, 6.9489, 7.354360000000001, 7.279319999999999, 5.8861, 6.6592899999999995, 7.06305, 6.61338, 7.00307, 6.49224, 6.84588, 6.35611, 6.35611, 6.8977, 7.20786, 6.90575, 7.1309, 7.393260000000001, 6.95655, 6.834110000000001, 6.07993, 7.10988, 6.802389999999999, 6.224559999999999, 6.57925, 6.927560000000001, 6.90575, 7.09008, 7.1309, 6.90575, 6.907760000000001, 6.16542, 6.62007, 7.6009, 6.95655, 6.90575, 6.90575, 6.796819999999999, 6.66568, 6.907760000000001, 6.8533, 6.813439999999999, 7.196689999999999, 6.43615, 6.9147300000000005, 6.77194, 6.90575, 6.90575, 6.47697, 7.0255399999999995, 7.522939999999999, 6.62007, 6.354369999999999, 7.1546199999999995, 6.90575, 6.551080000000001, 6.753439999999999, 6.77422, 7.313219999999999, 6.967910000000001, 6.816739999999999, 7.6009, 6.745239999999999, 7.37588, 6.86485, 6.41346, 6.7093, 6.551080000000001, 6.22654, 7.24423, 6.06146, 6.16331, 7.05359, 6.49224, 6.86171, 6.58617, 7.1309, 6.77422, 7.93737, 6.39693, 6.58617, 7.67322, 6.551080000000001, 6.2146099999999995, 6.77422, 6.99485, 6.45047, 6.66185, 6.94119, 7.21891, 7.57558, 7.495539999999999, 6.10925, 6.59715, 6.03787, 6.556780000000001, 6.354369999999999, 7.6009, 6.83303, 6.551080000000001, 7.279319999999999, 6.354369999999999, 7.925160000000001, 6.77422, 7.183110000000001, 6.1136800000000004, 6.77992, 6.62007, 7.00307, 7.86327, 6.70073, 7.1309, 6.32794, 6.16121, 5.6801699999999995, 6.65286, 6.802389999999999, 6.715380000000001, 6.95655, 6.78333, 6.90575, 6.67582, 6.47697, 6.907760000000001, 6.90575, 6.53233, 6.882439999999999, 7.0255399999999995, 6.23048, 6.715380000000001, 7.872839999999999, 6.49072, 6.90575, 6.4892, 6.63726, 6.3613, 6.79122, 6.53233, 6.05209, 6.697030000000001, 6.8742, 6.08677, 6.6280399999999995, 6.907760000000001, 6.05209, 5.70378, 7.02997, 6.715380000000001, 6.2146099999999995, 6.90575, 7.313219999999999, 6.3699, 6.07074, 6.54822, 6.62007, 6.59987, 6.7226300000000005, 6.51026, 6.907760000000001, 6.50429, 6.47697, 6.58617, 6.77422, 6.8977, 5.9135, 6.17379, 8.047189999999999, 6.93537, 6.2146099999999995, 6.507280000000001, 7.46737, 5.82895, 7.034389999999999, 6.7569300000000005, 6.95655, 6.17794, 6.68461, 7.495539999999999, 6.62007, 6.88755, 6.45205, 6.802389999999999, 6.32794, 6.68461, 8.03916, 6.829789999999999, 6.6745600000000005, 6.714169999999999, 6.43775, 7.00307, 6.43455, 6.90575, 7.346660000000001, 7.6009, 7.10988, 7.24423, 6.7569300000000005, 6.48004, 6.889589999999999, 7.313219999999999, 6.9256, 6.59167, 6.57786, 6.53669, 6.39693, 6.33328, 6.33328, 7.313219999999999, 6.551080000000001, 7.408530000000001, 7.3908, 6.90575, 6.9256, 6.95655, 6.13123, 6.551080000000001, 7.06561, 6.57925, 6.90575, 6.73102, 7.09008, 6.566669999999999, 6.43775, 6.62007, 6.424869999999999, 6.646389999999999, 6.2146099999999995, 6.802389999999999, 6.90575, 6.9613, 6.78672, 6.65286, 7.24423, 7.09008, 6.602589999999999, 6.42162, 7.0422899999999995, 7.034389999999999, 6.59987, 6.44572, 6.20456, 6.57925, 6.38012, 6.16331, 6.818919999999999, 6.551080000000001, 6.53669, 6.95655, 5.76832, 7.2100800000000005, 6.48311, 6.507280000000001, 6.45362, 6.765039999999999, 6.2634, 6.2691, 7.18917, 6.2146099999999995, 6.802389999999999, 6.50129, 6.2634, 7.38647, 6.96885, 6.10925, 7.196689999999999, 6.3403599999999996, 6.818919999999999, 6.72623, 6.90575, 6.7569300000000005, 6.62936, 7.09008, 6.62007, 5.9839400000000005, 6.95655, 7.49332, 6.62007, 6.62007, 6.753439999999999, 6.77422, 6.2653, 7.495539999999999, 6.7334, 6.95655, 6.56526, 6.88755, 7.47307, 6.47697, 6.90575, 6.90575, 7.909860000000001, 6.69084, 6.3716099999999996, 6.52209, 7.106610000000001, 6.40523, 6.69084, 5.627619999999999, 6.6567300000000005, 6.68461, 6.697030000000001, 6.22654, 7.740660000000001, 6.907760000000001, 6.43775, 6.43775, 6.813439999999999, 5.76832, 6.9256, 7.64969, 6.47697, 6.43615, 6.10925, 7.1309, 5.89715, 6.907760000000001, 6.745239999999999, 6.43775, 6.85646, 6.77422, 6.768489999999999, 7.029089999999999, 6.62007, 7.06133, 7.24423, 6.95177, 7.54961, 6.354369999999999, 6.87626, 6.318969999999999, 6.570880000000001, 7.61332, 7.09008, 6.7511, 6.551080000000001, 7.034389999999999, 6.49072, 6.30992, 6.55393, 6.72743, 6.05209, 7.0967199999999995, 6.90575, 6.551080000000001, 6.907760000000001, 6.785589999999999, 6.39693, 6.05209, 6.90575, 6.697030000000001, 6.814539999999999, 6.639880000000001, 6.62007, 7.24423, 6.77194, 6.551080000000001, 6.802389999999999, 5.8999, 6.57228, 7.062189999999999, 6.47697, 6.2441699999999996, 6.829789999999999, 6.95655, 6.907760000000001, 6.38012, 7.293019999999999, 6.91175, 6.45834, 6.556780000000001, 6.5582, 6.91175, 6.45362, 7.1309, 6.8773, 6.955589999999999, 7.80588, 6.9613, 5.4161, 6.907760000000001, 6.90575, 7.18992, 6.90575, 6.385190000000001, 7.31122, 6.6107, 6.807930000000001, 6.79794, 6.1717, 6.16331, 6.6592899999999995, 7.0483899999999995, 6.598510000000001, 6.09131, 7.106610000000001, 6.90575, 7.66153, 7.22548, 6.48768, 6.87213, 7.17012, 6.23245, 6.39693, 7.35244, 7.183110000000001, 6.56948, 8.00637, 7.05272, 6.33328, 6.90575, 6.802389999999999, 6.30992, 6.551080000000001, 6.10925, 6.77422, 6.30992, 6.49979, 6.802389999999999, 7.05704, 7.16858, 6.802389999999999, 6.58617, 6.551080000000001, 7.20564, 7.1507, 6.852239999999999, 7.6009, 6.70564, 5.7525699999999995, 6.90575, 6.11147, 6.95655, 6.84375, 6.95655, 6.8977, 7.34923, 6.93245, 6.34564, 7.03878, 7.400010000000001, 5.8579300000000005, 7.37588, 6.83195, 7.00307, 6.84162, 6.354369999999999, 6.93342, 6.608, 6.85646, 6.61607, 6.056780000000001, 6.90575, 6.697030000000001, 6.5395900000000005, 6.6120399999999995, 6.63726, 7.1309, 6.739339999999999, 7.86327, 6.55393, 6.47697, 6.7511, 6.907760000000001, 6.05912, 6.54535, 6.551080000000001, 7.00307, 6.51471, 7.0422899999999995, 6.57925, 6.66823, 7.1309, 6.551080000000001, 6.44572, 7.00307, 6.253830000000001, 5.99146, 7.2724, 6.907760000000001, 6.90575, 6.3315, 6.3699, 6.39693, 7.82405, 6.95655, 6.09582, 6.07535, 6.90575, 6.8426800000000005, 7.0518600000000005, 6.993930000000001, 6.907760000000001, 6.79122, 6.7511, 6.2146099999999995, 6.78897, 6.67203, 7.259119999999999, 7.6811, 6.745239999999999, 7.27031, 6.721430000000001, 6.90575, 6.563860000000001, 6.99485, 7.37776, 7.06048, 6.30992, 6.84375, 7.0282, 6.66696, 6.90575, 6.47235, 6.56244, 8.0229, 6.90575, 6.6592899999999995, 6.80351, 6.92658, 6.4892, 6.28227, 7.06902, 6.08677, 7.1309, 5.68698, 6.33683, 6.984719999999999, 6.753439999999999, 6.354369999999999, 6.52209, 6.52209, 7.362010000000001, 6.8200199999999995, 6.73102, 6.39693, 6.8773, 6.507280000000001, 6.81014, 6.802389999999999, 6.49072, 7.46737, 6.745239999999999, 6.11147, 6.2634, 7.181589999999999, 6.551080000000001, 7.05618, 5.86079, 6.51619, 6.56948, 6.937310000000001, 6.9256, 6.90575, 6.10925, 6.39693, 7.09008, 6.82437, 6.753439999999999, 6.966019999999999, 6.802389999999999, 7.239210000000001, 6.5582, 6.907760000000001, 6.98008, 6.62407, 5.70378, 6.551080000000001, 6.41673, 7.313219999999999, 6.62007, 6.84588, 6.42162, 6.68461, 6.715380000000001, 6.85646, 6.57786, 5.8579300000000005, 6.2146099999999995, 7.313219999999999, 7.37776, 6.30992, 7.1309, 6.69084, 6.70564, 5.7462, 6.16752, 7.279319999999999, 6.73102, 6.53669, 6.24222, 7.03527, 7.04752, 6.507280000000001, 6.93049, 6.59715, 7.09008, 6.45047, 6.33328, 6.68461, 6.62007, 6.90575, 7.04752, 6.6346300000000005, 6.59167, 6.41836, 7.2724, 6.56526, 7.91936, 6.54103, 6.90575, 7.57558, 6.20456, 6.802389999999999, 7.484369999999999, 6.90575, 6.51471, 5.7462, 6.39693, 6.94698, 7.084230000000001, 6.96885, 6.907760000000001, 7.00307, 7.293019999999999, 7.173189999999999, 6.77422, 6.815639999999999, 6.43294, 6.813439999999999, 6.90575, 6.88857, 6.90575, 7.09008, 6.90575, 7.226210000000001, 7.279319999999999, 6.73102, 6.05912, 6.68461, 6.6592899999999995, 7.91936, 6.507280000000001, 7.00307, 6.47697, 6.551080000000001, 6.90575, 6.2146099999999995, 6.907760000000001, 6.715380000000001, 6.96885, 6.68461, 6.57368, 6.745239999999999, 6.53669, 5.76832, 6.2146099999999995, 6.8426800000000005, 7.520230000000001, 5.5797300000000005, 6.51323, 7.1082399999999994, 6.5582, 7.17012, 6.768489999999999, 6.39693, 7.393260000000001, 6.6958, 6.95177, 6.2146099999999995, 6.5582, 6.9613, 6.4892, 7.676010000000001, 6.715380000000001, 6.907760000000001, 6.3935900000000006, 7.54961, 6.86171, 5.79606, 6.83087, 6.6783399999999995, 6.54535, 6.593039999999999, 6.77422, 6.44572, 7.04752, 7.37776, 7.17012, 6.8426800000000005, 7.00307, 6.126869999999999, 6.50129, 6.8773, 6.56526, 6.354369999999999, 6.96885, 6.575080000000001, 6.62007, 6.42811, 6.752269999999999, 6.90575, 6.78672, 8.12089, 6.829789999999999, 7.00307, 6.2146099999999995, 6.1944099999999995, 7.740660000000001, 6.907760000000001, 6.2146099999999995, 6.96979, 6.68461, 7.14283, 6.139880000000001, 7.1293, 6.89467, 5.43808, 7.183110000000001, 6.5467900000000006, 6.34388, 6.39024, 7.0255399999999995, 6.424869999999999, 6.68461, 6.49979, 7.37776, 6.7901, 6.17379, 6.4488900000000005, 6.614730000000001, 6.60665, 7.09008, 6.51323, 6.93245, 6.6592899999999995, 6.30992, 7.37776, 6.09807, 6.8977, 6.35784, 6.37502, 6.57925, 7.7021, 7.46737, 7.6009, 7.36455, 6.59715, 6.639880000000001, 6.36303, 5.82895, 6.59715, 6.62007, 6.551080000000001, 7.09008, 6.78333, 6.563860000000001, 7.0076, 6.880380000000001, 6.745239999999999, 6.82437, 6.4677, 7.127689999999999, 7.1309, 6.62007, 7.82084, 7.288930000000001, 6.39693, 6.68461, 7.10988, 6.563860000000001, 6.354369999999999, 6.7546, 7.196689999999999, 5.99146, 6.74052, 6.67203, 6.86485, 7.1309, 7.6009, 6.6107, 7.24423, 6.9256, 7.11314, 6.86693, 6.58617, 6.85646, 5.70378, 6.2146099999999995, 6.92363, 6.84588, 6.86171, 6.813439999999999, 6.50279, 5.7589, 6.7417, 7.18917, 6.2146099999999995, 6.93245, 6.78897, 6.74759, 7.00307, 6.3935900000000006, 7.09008, 7.84385, 6.802389999999999, 6.57647, 6.78672, 6.39693, 6.9707300000000005, 8.3082, 7.1309, 7.17012, 6.593039999999999, 6.90575, 6.62007, 6.86693, 6.259580000000001, 6.41999, 5.52146, 6.907760000000001, 7.43838, 6.64509, 7.09008, 6.39693, 7.0255399999999995, 7.903969999999999, 6.745239999999999, 6.80461, 7.037030000000001, 7.04752, 6.47697, 6.65286, 6.76388, 6.90575, 6.87626, 6.90575, 7.1507, 7.07834, 7.21082, 6.52942, 6.701960000000001, 6.8426800000000005, 6.0282800000000005, 6.3207699999999996, 6.24611, 6.57786, 6.18826, 6.975410000000001, 7.16085, 6.30992, 6.83303, 7.61874, 6.48158, 6.44095, 6.99485, 6.907760000000001, 6.8384100000000005, 6.79122, 6.551080000000001, 6.6695, 7.279319999999999, 6.57925, 6.813439999999999, 6.30992, 6.68461, 6.47389, 6.802389999999999, 6.785589999999999, 7.313219999999999, 6.551080000000001, 7.29097, 5.8861, 6.98008, 6.802389999999999, 7.20786, 6.802389999999999, 6.983789999999999, 6.75926, 6.68461, 6.55962, 6.8977, 6.05912, 6.90575, 7.4570300000000005, 7.1309, 6.566669999999999, 6.829789999999999, 6.85646, 6.643789999999999, 6.77422, 7.90101, 6.32794, 6.25767, 7.81883, 6.966019999999999, 6.33328, 6.77422, 6.8384100000000005, 6.62007, 6.813439999999999, 6.551080000000001, 6.920669999999999, 7.195189999999999, 6.62007, 6.3315, 6.69332, 6.745239999999999, 6.90575, 7.0396600000000005, 6.90575, 6.07535, 6.30992, 6.96885, 6.47697, 6.39693, 7.24423, 7.12367, 7.17012, 6.18415, 6.68461, 6.44413, 6.4677, 6.47697, 6.907760000000001, 6.4552, 7.1546199999999995, 7.37776, 7.18917, 6.10925, 6.5903, 7.136480000000001, 5.95584, 7.03878, 6.461469999999999, 6.697030000000001, 5.9839400000000005, 6.66568, 6.2146099999999995, 6.56526, 6.51471, 5.61677, 6.49375, 7.06048, 6.715380000000001, 6.10925, 6.95655, 7.1309, 6.95655, 6.90575, 6.76273, 6.311730000000001, 6.29157, 6.86693, 6.68461, 6.90575, 6.95655, 7.17012, 7.0255399999999995, 6.86171, 7.495539999999999, 6.49224, 6.90575, 6.8865300000000005, 7.57353, 6.602589999999999, 6.30992, 6.23048, 6.5467900000000006, 6.530880000000001, 6.802389999999999, 7.6009, 6.46459, 6.834110000000001, 7.313219999999999, 6.802389999999999, 6.66441, 7.251339999999999, 5.87774, 7.43838, 6.35957, 6.43775, 6.5820300000000005, 6.768489999999999, 7.17012, 5.6733199999999995, 6.90575, 7.281389999999999, 7.17702, 6.90575, 6.95845, 6.44572, 6.583410000000001, 6.91672, 6.90575, 8.229510000000001, 7.027310000000001, 6.551080000000001, 7.136480000000001, 6.71174, 6.74288, 7.0934, 7.200419999999999, 6.83087, 7.37776, 6.79122, 6.67203, 6.55393, 6.39693, 7.46737, 6.802389999999999, 7.165489999999999, 6.62007, 6.90575, 7.0255399999999995, 7.70661, 6.47389, 6.35957, 6.07535, 6.907760000000001, 7.20786, 6.43775, 6.556780000000001, 6.966019999999999, 6.95273, 6.3716099999999996, 6.745239999999999, 6.43133, 6.907760000000001, 6.68461, 6.64898, 6.28972, 7.00307, 6.2146099999999995, 6.66058, 7.016610000000001, 7.09008, 6.85646, 6.90575, 5.66988, 7.09008, 6.53379, 6.84801, 5.99146, 7.21891, 6.90575, 6.745239999999999, 7.07242, 7.6009, 6.817830000000001, 7.346010000000001, 6.6592899999999995, 7.46737, 6.975410000000001, 6.79122, 6.719010000000001, 6.720219999999999, 6.90575, 6.90575, 6.68336, 6.892639999999999, 6.86485, 6.947939999999999, 6.955589999999999, 6.90575, 6.551080000000001, 5.66988, 7.0255399999999995, 7.04752, 6.3935900000000006, 6.807930000000001, 6.74288, 6.802389999999999, 6.4599, 6.354369999999999, 6.18208, 7.398789999999999, 7.37776, 7.35883, 6.47697, 7.18463, 6.745239999999999, 7.05876, 6.84588, 6.68461, 7.64969, 6.59578, 6.715380000000001, 6.04025, 6.507280000000001, 6.23441, 7.098380000000001, 6.2804, 7.6256, 6.633319999999999, 6.6346300000000005, 6.43455, 6.52649, 7.54961, 7.09008, 6.36475, 5.7462, 6.77422, 6.10925, 6.73459, 7.1293, 6.49224, 6.28413, 7.17012, 6.90575, 6.6515699999999995, 6.56948, 6.80461, 6.03787, 7.313219999999999, 6.11589, 6.68461, 7.09008, 5.96615, 8.26873, 6.17794, 6.3935900000000006, 7.12287, 6.43775, 5.95324, 6.6796, 6.758089999999999, 6.68461, 6.90575, 7.495539999999999, 6.84588, 6.745239999999999, 6.21261, 6.10032, 8.048789999999999, 7.313219999999999, 6.802389999999999, 6.745239999999999, 6.907760000000001, 6.90575, 5.82305, 6.90575, 7.17012, 6.2441699999999996, 8.08641, 5.59842, 7.08171, 6.9594, 6.97354, 7.30653, 6.55962, 6.58617, 6.74406, 7.56008, 6.1944099999999995, 7.408530000000001, 6.61338, 6.01616, 6.32794, 7.18007, 6.74052, 6.95655, 6.58617, 6.66568, 6.85646, 6.44572, 7.313219999999999, 7.1309, 5.99146, 6.18826, 5.59842, 6.49224, 6.821110000000001, 6.56526, 6.47697, 6.813439999999999, 7.43838, 6.30262, 6.38351, 6.551080000000001, 5.45959, 6.43775, 6.90575, 6.53233, 6.61874, 6.06843, 6.1203, 7.88231, 6.90575, 6.7569300000000005, 5.7651900000000005, 6.938280000000001, 7.08255, 6.41346, 6.882439999999999, 7.37776, 6.44413, 6.90575, 6.51471, 6.5439099999999994, 6.551080000000001, 6.90575, 7.35372, 7.135689999999999, 7.46737, 6.63595, 6.802389999999999, 7.346010000000001, 6.90575, 6.86693, 7.1309, 5.78383, 6.829789999999999, 6.65286, 6.7334, 7.2998, 6.65415, 6.9256, 6.90575, 6.39693, 6.52209, 6.3699, 6.770789999999999, 6.39693, 6.49072, 6.02345, 7.32251, 6.13123, 6.29711, 7.04752, 6.799060000000001, 6.272880000000001, 6.49527, 6.57925, 6.697030000000001, 6.703189999999999, 7.04752, 6.65286, 6.752269999999999, 6.2146099999999995, 6.42162, 6.90575, 7.014810000000001, 6.62007, 6.85646, 6.745239999999999, 6.9256, 6.58617, 6.51471, 5.96615, 6.90575, 6.52942, 6.16331, 6.56526, 6.813439999999999, 7.09008, 5.8141300000000005, 6.769639999999999, 6.08677, 6.7369699999999995, 7.064760000000001, 7.11883, 6.51175, 7.46737, 6.57228, 6.551080000000001, 7.67322, 6.35957, 6.907760000000001, 6.58617, 5.8579300000000005, 7.1309, 6.57925, 6.43294, 6.39693, 7.46737, 6.95655, 6.54247, 6.3716099999999996, 7.293019999999999, 6.08677, 7.64969, 6.95655, 8.13153, 6.3613, 6.10925, 6.551080000000001, 6.907760000000001, 6.907760000000001, 6.43775, 6.3243599999999995, 6.83518, 6.993930000000001, 6.6567300000000005, 6.984719999999999, 7.062189999999999, 6.907760000000001, 6.77992, 7.195189999999999, 7.185389999999999, 6.07993, 6.01616, 6.72743, 6.33683, 6.70073, 7.20786, 7.0103100000000005, 6.551080000000001, 7.1309, 6.7334, 7.495539999999999, 6.24028, 6.354369999999999, 6.90575, 6.551080000000001, 7.00307, 6.85013, 7.0255399999999995, 6.39693, 7.495539999999999, 6.768489999999999, 6.23441, 6.461469999999999, 6.5395900000000005, 6.907760000000001, 6.05209, 6.28413, 6.126869999999999, 7.12287, 6.745239999999999, 7.21744, 6.39693, 6.49072, 6.47697, 6.05209, 7.24423, 6.802389999999999, 7.09008, 6.44572, 7.00307, 6.966019999999999, 6.721430000000001, 6.62936, 6.813439999999999, 6.28227, 7.64969, 6.9575, 7.3696, 6.461469999999999, 6.90575, 7.20786, 6.78333, 6.57647, 6.5903, 7.00307, 6.74993, 6.57925, 6.907760000000001, 6.16331, 6.59578, 6.802389999999999, 6.272880000000001, 7.014810000000001, 6.2146099999999995, 6.43615, 6.64509, 6.608, 6.68461, 6.58617, 6.62007, 7.00307, 6.95655, 6.12249, 6.62007, 7.09008, 6.83303, 6.98101, 6.6871100000000006, 6.81014, 7.37776, 6.51767, 6.85435, 7.64969, 7.91936, 6.907760000000001, 6.9256, 6.6733, 7.5574699999999995, 6.13773, 6.67203, 6.30992, 6.47697, 6.8956800000000005, 6.56948, 6.33328, 6.802389999999999, 6.9707300000000005, 8.00637, 6.65286, 6.57368, 5.70711, 6.57786, 6.92363, 6.57368, 7.37776, 6.2146099999999995, 7.408530000000001, 7.1155800000000005, 7.91936, 7.09008, 7.37776, 7.1309, 6.58617, 6.14633, 6.6592899999999995, 6.90575, 7.092569999999999, 6.86485, 7.57558, 7.200419999999999, 6.95655, 6.2146099999999995, 6.05209, 6.44254, 6.4599, 6.60394, 6.975410000000001, 7.400010000000001, 8.537, 6.07993, 7.36645, 6.67708, 6.99942, 6.61338, 7.64969, 6.68461, 6.57925, 7.09008, 7.1082399999999994, 6.83518, 7.09008, 6.58617, 5.8861, 6.90575, 6.43615, 6.84162, 7.313219999999999, 6.55962, 6.07993, 6.3952599999999995, 6.633319999999999, 6.42162, 7.09008, 7.313219999999999, 6.30992, 6.79122, 6.720219999999999, 6.66823, 7.2861899999999995, 6.802389999999999, 6.703189999999999, 5.98896, 7.620710000000001, 7.09008, 7.6009, 6.28972, 6.48768, 6.68461, 6.41182, 7.37776, 7.525639999999999, 6.74993, 6.72623, 7.09008, 7.25347, 7.585789999999999, 6.45362, 6.354369999999999, 6.984719999999999, 6.90575, 6.937310000000001, 7.0775, 7.346010000000001, 7.027310000000001, 6.907760000000001, 6.9489, 6.907760000000001, 7.495539999999999, 6.01127, 6.802389999999999, 6.745239999999999, 6.90575, 6.633319999999999, 6.80572, 6.2480400000000005, 6.2634, 6.31355, 7.35819, 6.49677, 6.68461, 6.633319999999999, 7.30317, 6.95655, 6.907760000000001, 5.742999999999999, 6.39693, 7.313219999999999, 7.09008, 6.47697, 7.196689999999999, 6.47697, 6.30262, 6.745239999999999, 7.07412, 6.354369999999999, 6.10925, 6.68461, 7.42357, 6.95655, 6.715380000000001, 6.9828600000000005, 7.02465, 6.49224, 6.49979, 6.27099, 5.8861, 7.393260000000001, 6.829789999999999, 6.32794, 6.28786, 5.9839400000000005, 6.68461, 5.84354, 6.62007, 7.12287, 6.2146099999999995, 6.84162, 7.00307, 6.2146099999999995, 6.983789999999999, 6.35611, 6.17379, 6.95655, 6.39693, 6.88755, 7.04316, 6.90575, 6.84162, 6.45362, 6.83518, 6.85646, 6.46925, 5.99146, 6.62007, 7.00307, 5.99146, 6.22654, 6.633319999999999, 6.77308, 7.1107, 6.95655, 6.967910000000001, 6.995769999999999, 6.66568, 6.594410000000001, 6.90575, 6.5439099999999994, 6.62007, 6.60665, 7.04752, 7.062189999999999, 7.313219999999999, 7.04752, 7.0884100000000005, 6.937310000000001, 6.90575, 6.23441, 6.25767, 6.551080000000001, 6.90575, 7.09008, 6.68461, 6.2146099999999995, 6.386880000000001, 6.44413, 6.58617, 6.10925, 6.90073, 6.745239999999999, 7.2233, 6.8773, 6.813439999999999, 7.037030000000001, 6.40523, 6.2146099999999995, 6.17379, 7.6009, 6.30992, 6.685860000000001, 5.99146, 6.38856, 6.47697, 7.46737, 6.551080000000001, 6.9226399999999995, 6.87213, 6.73102, 6.30992, 7.45298, 5.72359, 6.882439999999999, 5.940169999999999, 6.90675, 6.551080000000001, 6.9147300000000005, 6.85646, 6.563860000000001, 6.381819999999999, 5.78996, 6.769639999999999, 6.73102, 7.06133, 6.68461, 6.2146099999999995, 6.4708, 7.08171, 6.90575, 7.6009, 6.52062, 6.907760000000001, 6.60935, 6.51471, 6.9828600000000005, 6.85646, 6.30992, 7.338889999999999, 6.22654, 6.311730000000001, 7.01392, 6.49224, 6.2205900000000005, 7.44659, 7.388330000000001, 6.85118, 7.24423, 6.632000000000001, 6.90575, 7.10906, 6.944089999999999, 6.83518, 6.222580000000001, 6.84588, 7.17012, 6.52503, 6.2860000000000005, 6.80128, 6.07993 ], "y0": "yes" }, { "box": { "visible": false }, "fillcolor": "rgba(0, 0, 0, 0)", "hoverinfo": "x", "hoveron": "points", "jitter": 0.3, "legendgroup": "yes", "line": { "color": "rgba(0, 0, 0, 0)", "width": 0 }, "marker": { "color": "hsla(164, 70%, 70%,1)", "line": { "color": "hsla(164, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.3, "size": 9, "symbol": "triangle-right" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 1, "points": "all", "scalegroup": "yes", "showlegend": false, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.99942, 5.99146, 7.67322, 7.09008, 5.61677, 6.646389999999999, 7.02643, 6.4552, 7.32975, 6.95845, 7.06902, 6.04025, 6.907760000000001, 7.91936, 6.745239999999999, 6.30079, 7.068169999999999, 6.07535, 6.7417, 7.71869, 6.882439999999999, 6.47697, 6.77878, 6.907760000000001, 6.93342, 7.06902, 6.57368, 6.829789999999999, 7.557989999999999, 6.892639999999999, 7.0255399999999995, 6.57925, 6.47697, 7.1309, 6.551080000000001, 6.882439999999999, 6.907760000000001, 6.682110000000001, 6.39693, 6.48004, 6.60665, 7.00307, 5.78383, 6.94505, 6.9546399999999995, 7.17012, 7.11477, 6.593039999999999, 6.49979, 6.5439099999999994, 6.39192, 6.51471, 6.30992, 6.30992, 7.116389999999999, 6.46925, 7.554860000000001, 6.90675, 6.85646, 5.94803, 6.90575, 6.90575, 7.408530000000001, 7.0076, 6.88857, 7.35947, 6.39693, 7.041410000000001, 6.66696, 6.30992, 7.313219999999999, 6.787839999999999, 6.90575, 6.802389999999999, 7.00307, 7.074960000000001, 7.5606, 6.16331, 5.94803, 6.43775, 7.282760000000001, 6.39693, 6.813439999999999, 6.694560000000001, 6.29157, 6.23048, 6.16331, 6.88755, 6.95655, 7.56008, 6.28227, 6.30992, 6.05912, 6.602589999999999, 7.47307, 6.2146099999999995, 6.95655, 6.90575, 6.461469999999999, 7.09008, 7.46737, 6.829789999999999, 6.60665, 6.74052, 6.745239999999999, 7.6009, 6.62007, 6.551080000000001, 6.663130000000001, 7.60589, 6.53669, 6.5582, 6.16121, 6.19236, 6.2146099999999995, 7.37776, 6.58617, 6.23832, 6.27476, 6.48311, 6.69084, 6.54965, 6.882439999999999, 6.663130000000001, 5.70378, 6.7226300000000005, 7.20786, 6.802389999999999, 6.79122, 6.62007, 6.42162, 6.12249, 6.90575, 6.28227, 6.206580000000001, 5.99146, 6.682110000000001, 6.49677, 7.408530000000001, 6.10925, 6.317159999999999, 6.2146099999999995, 6.551080000000001, 6.25575, 7.0884100000000005, 6.16331, 6.68461, 5.8999, 7.01392, 7.1107, 6.9363399999999995, 6.90575, 6.1070199999999994, 6.85646, 6.44572, 6.551080000000001, 6.84588, 8.10168, 7.31255, 5.99645, 6.90575, 6.802389999999999, 6.2146099999999995, 6.66696, 6.907760000000001, 6.90575, 6.6592899999999995, 8.047189999999999, 6.62407, 7.0076, 6.30992, 6.17379, 6.55393, 6.3952599999999995, 6.24611, 7.78322, 6.60665, 7.12448, 6.507280000000001, 6.461469999999999, 6.8977, 7.82405, 7.75148, 6.62407, 6.2146099999999995, 7.1309, 6.51471, 5.96615, 6.84055, 7.041410000000001, 6.51471, 6.551080000000001, 7.346010000000001, 6.966019999999999, 6.90575, 7.17012, 6.5820300000000005, 7.04752, 6.354369999999999, 6.59578, 7.82405, 6.5467900000000006, 6.551080000000001, 6.39693, 6.88755, 6.39693, 6.39693, 6.65286, 6.36647, 6.622739999999999, 6.90575, 5.7525699999999995, 6.15273, 7.04752, 5.52146, 6.770789999999999, 6.907760000000001, 7.00125, 7.064760000000001, 7.00307, 6.05209, 6.745239999999999, 7.045780000000001, 6.54535, 6.37673, 6.62007, 6.907760000000001, 6.10925, 6.39693, 8.16052, 6.745239999999999, 7.03527, 6.765039999999999, 7.1309, 6.77422, 6.87213, 6.551080000000001, 6.907760000000001, 6.6567300000000005, 6.80017, 7.226210000000001, 6.10925, 6.90575, 6.70073, 7.495539999999999, 8.05516, 6.9256, 7.06987, 6.694560000000001, 6.90575, 6.43775, 6.97261, 7.29709, 7.179310000000001, 7.313219999999999, 6.7226300000000005, 6.82437, 6.715380000000001, 7.173189999999999, 6.62007, 6.7226300000000005, 6.85118, 6.49224, 7.313219999999999, 6.62007, 7.158510000000001, 6.68461, 6.57647, 5.89715, 6.34564, 6.556780000000001, 6.7093, 6.93925, 7.00307, 6.551080000000001, 6.90575, 6.53669, 6.69084, 7.313219999999999, 6.05209, 6.90575, 6.62007, 6.4552, 6.77422, 6.87005, 6.65544, 6.42162, 5.9269300000000005, 6.317159999999999, 6.42972, 6.62007, 6.96508, 6.19236, 6.61607, 5.5606800000000005, 6.57368, 6.2634, 6.715380000000001, 7.408530000000001, 6.17379, 7.333019999999999, 6.37502, 6.317159999999999, 7.04752, 6.68461, 6.98008, 6.912739999999999, 6.86693, 7.3670800000000005, 6.68461, 7.09008, 6.90575, 6.90575, 6.62007, 6.45362, 6.47697, 6.9431199999999995, 6.90575, 6.10925, 6.67203, 6.7334, 7.34278, 6.90575, 6.658010000000001, 6.9256, 6.90575, 6.91075, 6.6592899999999995, 6.6592899999999995, 6.16331, 7.441319999999999, 6.47851, 7.07834, 6.745239999999999, 7.20786, 6.36475, 6.63857, 7.475910000000001, 6.62007, 6.4892, 7.00307, 6.56948, 7.43838, 7.15383, 7.064760000000001, 6.88755, 7.26193, 6.23245, 6.30445, 6.715380000000001, 7.313219999999999, 7.37776, 5.8579300000000005, 6.85646, 6.2441699999999996, 6.90575, 6.907760000000001, 6.272880000000001, 6.66568, 7.481560000000001, 7.04752, 6.61338, 6.40688, 5.8579300000000005, 7.57558, 6.83518, 6.38856, 6.768489999999999, 6.90575, 6.39693, 6.34739, 7.1507, 6.58617, 7.282760000000001, 7.00307, 6.66058, 6.58064, 6.90575, 6.10925, 6.64249, 6.715380000000001, 6.62007, 7.1309, 5.99146, 6.95655, 6.65286, 6.16331, 6.24611, 7.1309, 7.1333, 7.24423, 6.04025, 6.86901, 6.802389999999999, 6.70073, 6.1203, 6.90575, 7.313219999999999, 6.54822, 6.95655 ], "y0": "yes" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(164, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(164, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "yes", "line": { "width": 0 }, "marker": { "color": "hsla(164, 50%, 50%,0.9)", "line": { "color": "hsla(164, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "triangle-right" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "yes", "showlegend": false, "side": "positive", "span": [ 6.7251173847290024, 6.7543108477188865 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 6.99942, 5.99146, 7.67322, 7.09008, 5.61677, 6.646389999999999, 7.02643, 6.4552, 7.32975, 6.95845, 7.06902, 6.04025, 6.907760000000001, 7.91936, 6.745239999999999, 6.30079, 7.068169999999999, 6.07535, 6.7417, 7.71869, 6.882439999999999, 6.47697, 6.77878, 6.907760000000001, 6.93342, 7.06902, 6.57368, 6.829789999999999, 7.557989999999999, 6.892639999999999, 7.0255399999999995, 6.57925, 6.47697, 7.1309, 6.551080000000001, 6.882439999999999, 6.907760000000001, 6.682110000000001, 6.39693, 6.48004, 6.60665, 7.00307, 5.78383, 6.94505, 6.9546399999999995, 7.17012, 7.11477, 6.593039999999999, 6.49979, 6.5439099999999994, 6.39192, 6.51471, 6.30992, 6.30992, 7.116389999999999, 6.46925, 7.554860000000001, 6.90675, 6.85646, 5.94803, 6.90575, 6.90575, 7.408530000000001, 7.0076, 6.88857, 7.35947, 6.39693, 7.041410000000001, 6.66696, 6.30992, 7.313219999999999, 6.787839999999999, 6.90575, 6.802389999999999, 7.00307, 7.074960000000001, 7.5606, 6.16331, 5.94803, 6.43775, 7.282760000000001, 6.39693, 6.813439999999999, 6.694560000000001, 6.29157, 6.23048, 6.16331, 6.88755, 6.95655, 7.56008, 6.28227, 6.30992, 6.05912, 6.602589999999999, 7.47307, 6.2146099999999995, 6.95655, 6.90575, 6.461469999999999, 7.09008, 7.46737, 6.829789999999999, 6.60665, 6.74052, 6.745239999999999, 7.6009, 6.62007, 6.551080000000001, 6.663130000000001, 7.60589, 6.53669, 6.5582, 6.16121, 6.19236, 6.2146099999999995, 7.37776, 6.58617, 6.23832, 6.27476, 6.48311, 6.69084, 6.54965, 6.882439999999999, 6.663130000000001, 5.70378, 6.7226300000000005, 7.20786, 6.802389999999999, 6.79122, 6.62007, 6.42162, 6.12249, 6.90575, 6.28227, 6.206580000000001, 5.99146, 6.682110000000001, 6.49677, 7.408530000000001, 6.10925, 6.317159999999999, 6.2146099999999995, 6.551080000000001, 6.25575, 7.0884100000000005, 6.16331, 6.68461, 5.8999, 7.01392, 7.1107, 6.9363399999999995, 6.90575, 6.1070199999999994, 6.85646, 6.44572, 6.551080000000001, 6.84588, 8.10168, 7.31255, 5.99645, 6.90575, 6.802389999999999, 6.2146099999999995, 6.66696, 6.907760000000001, 6.90575, 6.6592899999999995, 8.047189999999999, 6.62407, 7.0076, 6.30992, 6.17379, 6.55393, 6.3952599999999995, 6.24611, 7.78322, 6.60665, 7.12448, 6.507280000000001, 6.461469999999999, 6.8977, 7.82405, 7.75148, 6.62407, 6.2146099999999995, 7.1309, 6.51471, 5.96615, 6.84055, 7.041410000000001, 6.51471, 6.551080000000001, 7.346010000000001, 6.966019999999999, 6.90575, 7.17012, 6.5820300000000005, 7.04752, 6.354369999999999, 6.59578, 7.82405, 6.5467900000000006, 6.551080000000001, 6.39693, 6.88755, 6.39693, 6.39693, 6.65286, 6.36647, 6.622739999999999, 6.90575, 5.7525699999999995, 6.15273, 7.04752, 5.52146, 6.770789999999999, 6.907760000000001, 7.00125, 7.064760000000001, 7.00307, 6.05209, 6.745239999999999, 7.045780000000001, 6.54535, 6.37673, 6.62007, 6.907760000000001, 6.10925, 6.39693, 8.16052, 6.745239999999999, 7.03527, 6.765039999999999, 7.1309, 6.77422, 6.87213, 6.551080000000001, 6.907760000000001, 6.6567300000000005, 6.80017, 7.226210000000001, 6.10925, 6.90575, 6.70073, 7.495539999999999, 8.05516, 6.9256, 7.06987, 6.694560000000001, 6.90575, 6.43775, 6.97261, 7.29709, 7.179310000000001, 7.313219999999999, 6.7226300000000005, 6.82437, 6.715380000000001, 7.173189999999999, 6.62007, 6.7226300000000005, 6.85118, 6.49224, 7.313219999999999, 6.62007, 7.158510000000001, 6.68461, 6.57647, 5.89715, 6.34564, 6.556780000000001, 6.7093, 6.93925, 7.00307, 6.551080000000001, 6.90575, 6.53669, 6.69084, 7.313219999999999, 6.05209, 6.90575, 6.62007, 6.4552, 6.77422, 6.87005, 6.65544, 6.42162, 5.9269300000000005, 6.317159999999999, 6.42972, 6.62007, 6.96508, 6.19236, 6.61607, 5.5606800000000005, 6.57368, 6.2634, 6.715380000000001, 7.408530000000001, 6.17379, 7.333019999999999, 6.37502, 6.317159999999999, 7.04752, 6.68461, 6.98008, 6.912739999999999, 6.86693, 7.3670800000000005, 6.68461, 7.09008, 6.90575, 6.90575, 6.62007, 6.45362, 6.47697, 6.9431199999999995, 6.90575, 6.10925, 6.67203, 6.7334, 7.34278, 6.90575, 6.658010000000001, 6.9256, 6.90575, 6.91075, 6.6592899999999995, 6.6592899999999995, 6.16331, 7.441319999999999, 6.47851, 7.07834, 6.745239999999999, 7.20786, 6.36475, 6.63857, 7.475910000000001, 6.62007, 6.4892, 7.00307, 6.56948, 7.43838, 7.15383, 7.064760000000001, 6.88755, 7.26193, 6.23245, 6.30445, 6.715380000000001, 7.313219999999999, 7.37776, 5.8579300000000005, 6.85646, 6.2441699999999996, 6.90575, 6.907760000000001, 6.272880000000001, 6.66568, 7.481560000000001, 7.04752, 6.61338, 6.40688, 5.8579300000000005, 7.57558, 6.83518, 6.38856, 6.768489999999999, 6.90575, 6.39693, 6.34739, 7.1507, 6.58617, 7.282760000000001, 7.00307, 6.66058, 6.58064, 6.90575, 6.10925, 6.64249, 6.715380000000001, 6.62007, 7.1309, 5.99146, 6.95655, 6.65286, 6.16331, 6.24611, 7.1309, 7.1333, 7.24423, 6.04025, 6.86901, 6.802389999999999, 6.70073, 6.1203, 6.90575, 7.313219999999999, 6.54822, 6.95655, 7.50108, 6.39693, 7.07918, 5.8579300000000005, 5.70378, 6.7369699999999995, 7.745, 6.87213, 6.39693, 6.30628, 6.8773, 6.708080000000001, 6.818919999999999, 7.041410000000001, 6.882439999999999, 6.94986, 6.703189999999999, 6.37502, 7.03615, 7.37776, 5.66988, 6.907760000000001, 6.882439999999999, 6.752269999999999, 6.48158, 6.47697, 6.802389999999999, 6.984719999999999, 5.9269300000000005, 6.49224, 6.385190000000001, 7.1309, 7.663880000000001, 7.07242, 6.907760000000001, 6.43775, 8.05516, 6.807930000000001, 6.907760000000001, 6.403569999999999, 6.035480000000001, 7.24423, 6.05209, 7.00307, 5.99146, 6.33683, 6.07993, 7.488289999999999, 6.51175, 5.7365699999999995, 6.90575, 6.697030000000001, 6.354369999999999, 6.802389999999999, 6.62007, 6.68461, 6.68835, 5.8260000000000005, 6.85646, 6.44572, 6.95655, 7.20786, 6.3716099999999996, 6.8977, 6.47697, 6.802389999999999, 6.84055, 7.676010000000001, 6.85646, 6.43775, 7.20786, 6.89163, 7.0121199999999995, 6.85646, 6.77422, 6.54965, 6.05209, 6.697030000000001, 6.90575, 6.68461, 6.62007, 7.24423, 6.36819, 6.8844899999999996, 6.62007, 6.745239999999999, 6.19236, 6.39693, 6.85646, 6.7334, 5.98896, 6.48004, 6.55393, 6.5903, 7.02643, 7.15305, 6.19236, 6.43615, 6.6871100000000006, 6.42162, 6.06379, 6.93537, 7.09008, 6.802389999999999, 6.47697, 6.2634, 7.79028, 6.10032, 6.0282800000000005, 7.408530000000001, 6.6174, 6.907760000000001, 6.90575, 5.99146, 6.2441699999999996, 6.00141, 6.79122, 6.9196800000000005, 6.9147300000000005, 6.90575, 6.646389999999999, 6.746410000000001, 6.30992, 6.42972, 6.18826, 6.5467900000000006, 7.522939999999999, 6.7334, 6.07993, 6.907760000000001, 6.90575, 7.04752, 6.66185, 6.47697, 7.23418, 6.54247, 6.753439999999999, 6.51471, 7.034389999999999, 6.65286, 7.262630000000001, 7.20786, 6.90575, 6.30992, 6.984719999999999, 6.30445, 6.05209, 6.34564, 6.95655, 6.49224, 6.62007, 5.82895, 6.39693, 6.06146, 6.43775, 6.03787, 6.3952599999999995, 6.22654, 7.144410000000001, 6.90575, 6.91374, 5.70378, 6.5903, 7.1592899999999995, 6.57786, 6.6783399999999995, 6.72383, 6.41182, 6.53233, 6.907760000000001, 6.7334, 7.236339999999999, 6.20456, 6.10925, 6.715380000000001, 6.72743, 7.084230000000001, 6.97635, 7.20786, 7.00307, 6.35089, 6.59167, 6.461469999999999, 6.984719999999999, 6.53233, 6.646389999999999, 6.39693, 7.459910000000001, 6.19848, 7.0255399999999995, 6.745239999999999, 6.22654, 6.10925, 7.08171, 6.64249, 7.49332, 7.495539999999999, 7.1546199999999995, 7.1309, 6.745239999999999, 6.18415, 5.82895, 6.10925, 6.58617, 6.48158, 6.20456, 7.313219999999999, 6.94022, 6.90575, 6.41836, 6.10925, 7.48717, 7.0193, 6.983789999999999, 6.633319999999999, 6.29157, 7.49109, 6.91672, 6.90575, 6.715380000000001, 6.47697, 7.37212, 6.646389999999999, 7.0184, 6.84055, 7.24423, 7.09008, 6.52942, 7.4553, 7.00307, 6.37502, 7.24423, 6.48158, 6.68461, 6.10925, 6.90575, 6.90575, 7.75577, 6.82437, 6.18415, 6.43775, 6.90575, 7.1107, 6.44572, 6.42162, 6.769639999999999, 6.93245, 6.818919999999999, 6.551080000000001, 6.58617, 6.96508, 6.44572, 6.7093, 6.28972, 7.1082399999999994, 7.135689999999999, 6.49072, 7.251339999999999, 8.51719, 6.807930000000001, 7.14756, 7.33368, 6.77422, 6.60394, 6.68461, 7.1309, 5.99146, 7.201169999999999, 6.10925, 6.68461, 6.39693, 6.927560000000001, 6.85751, 6.95655, 6.08677, 7.24423, 7.1309, 6.17587, 6.30992, 6.36303, 6.77422, 6.2860000000000005, 6.828710000000001, 6.47697, 6.72743, 6.55251, 6.62407, 5.9814099999999994, 6.76273, 7.06902, 5.9269300000000005, 6.80128, 7.313219999999999, 6.966019999999999, 6.6592899999999995, 6.39693, 6.57786, 6.65286, 6.293419999999999, 5.87493, 6.79122, 6.987489999999999, 6.30992, 6.55536, 7.09008, 6.2146099999999995, 7.04752, 6.90575, 6.10925, 6.6783399999999995, 6.39693, 7.259119999999999, 7.43838, 6.47697, 7.1309, 6.77422, 6.2634, 6.739339999999999, 6.47697, 6.90575, 7.279319999999999, 6.815639999999999, 6.65028, 6.27099, 7.17012, 6.354369999999999, 6.29157, 6.802389999999999, 6.602589999999999, 6.47697, 6.58755, 6.77422, 6.907760000000001, 7.09589, 6.882439999999999, 5.45959, 6.05209, 7.67322, 5.8579300000000005, 6.2146099999999995, 7.2957399999999994, 5.84354, 6.802389999999999, 6.58064, 6.2634, 7.00307, 6.90575, 7.21891, 7.503839999999999, 6.45677, 6.950810000000001, 5.97126, 6.23048, 6.15273, 7.57558, 6.96035, 6.3716099999999996, 6.2146099999999995, 6.7334, 6.86066, 6.378430000000001, 6.48004, 7.00307, 6.8200199999999995, 6.47697, 6.90575, 7.39388, 7.4787300000000005, 6.2146099999999995, 6.802389999999999, 6.43775, 7.24065, 6.13773, 6.3952599999999995, 7.1025, 7.04752, 7.09008, 6.77992, 6.9256, 6.035480000000001, 7.22766, 7.475339999999999, 5.72031, 6.272880000000001, 6.01616, 6.27099, 7.91936, 6.85646, 6.354369999999999, 6.2634, 6.51471, 6.92166, 6.253830000000001, 6.745239999999999, 6.30992, 7.3651800000000005, 6.24998, 6.893660000000001, 6.53669, 6.43615, 7.04752, 6.30992, 6.39693, 6.1334, 6.765039999999999, 6.85646, 6.892639999999999, 6.95655, 5.99146, 6.43775, 6.90575, 6.81124, 6.966019999999999, 6.8865300000000005, 6.62007, 7.334980000000001, 6.72743, 6.93245, 7.27031, 7.03878, 7.0255399999999995, 6.10925, 6.83518, 6.77992, 6.68461, 7.696210000000001, 6.53669, 6.52942, 6.126869999999999, 6.54965, 6.715380000000001, 7.31122, 5.8693, 6.90575, 6.0282800000000005, 6.30992, 6.23245, 6.31536, 7.486610000000001, 6.52942, 6.14204, 6.88755, 6.62007, 6.34564, 6.44413, 5.99146, 6.93245, 7.37776, 6.907760000000001, 7.18917, 6.7093, 6.75926, 6.3315, 6.5439099999999994, 6.1717, 7.9459100000000005, 6.77422, 7.424760000000001, 5.70378, 6.43775, 6.90575, 7.6009, 6.90575, 7.46737, 6.694560000000001, 8.16052, 6.984719999999999, 6.802389999999999, 5.99146, 6.802389999999999, 7.32647, 7.1309, 5.96101, 6.62007, 6.84055, 6.58617, 7.1309, 7.00307, 7.78322, 6.62007, 5.7525699999999995, 6.62407, 6.795710000000001, 7.212289999999999, 6.05209, 6.38856, 6.93925, 6.47697, 6.8773, 6.354369999999999, 7.9724699999999995, 6.703189999999999, 6.47697, 6.50429, 6.58617, 6.51471, 6.06611, 6.68461, 6.65544, 7.331060000000001, 6.64118, 6.47697, 7.475910000000001, 6.72743, 7.20786, 6.81124, 7.0201899999999995, 7.279319999999999, 6.80461, 5.99645, 7.10906, 6.40523, 6.77422, 7.01571, 6.54822, 6.14204, 6.47697, 7.24423, 5.93225, 7.46737, 6.69084, 6.47697, 6.85646, 6.88755, 7.24423, 6.95655, 6.67077, 7.313219999999999, 6.98008, 6.75577, 6.566669999999999, 7.09008, 6.697030000000001, 6.79794, 6.2634, 6.61874, 6.64118, 7.1309, 6.98101, 6.90575, 5.90263, 6.17794, 6.77422, 6.96035, 6.6515699999999995, 6.35957, 6.829789999999999, 6.66568, 7.09008, 6.10925, 6.85646, 6.90575, 6.95655, 6.126869999999999, 7.1309, 6.4552, 6.58617, 7.23778, 6.66568, 6.21261, 6.57925, 6.802389999999999, 6.88755, 7.08171, 6.6567300000000005, 7.696210000000001, 6.68461, 6.43775, 6.802389999999999, 6.6592899999999995, 6.48311, 6.408530000000001, 6.84055, 7.17778, 6.2634, 6.4892, 6.95177, 6.785589999999999, 7.033510000000001, 6.57647, 6.23637, 6.530880000000001, 6.43775, 6.90575, 6.30992, 6.85646, 6.79122, 6.30992, 6.62007, 5.76832, 6.81014, 6.551080000000001, 6.56526, 6.551080000000001, 7.09008, 6.9613, 6.7901, 6.95655, 6.65286, 5.9814099999999994, 6.28227, 7.46737, 7.18007, 7.46737, 6.90575, 6.52209, 7.37776, 6.90575, 5.99146, 7.46737, 5.99146, 6.18826, 6.59987, 6.68461, 7.6009, 7.14913, 7.27031, 6.317159999999999, 6.72503, 5.99146, 6.62007, 6.6871100000000006, 7.17012, 6.802389999999999, 5.93754, 6.995769999999999, 6.802389999999999, 6.52356, 6.55251, 6.56526, 6.72383, 7.09008, 6.68461, 6.52209, 7.313219999999999, 6.94698, 6.561030000000001, 6.907760000000001, 7.71869, 5.96615, 6.41673, 6.29157, 7.00307, 6.802389999999999, 6.90375, 6.1944099999999995, 7.09008, 6.90575, 6.47697, 7.26193, 6.60665, 6.424869999999999, 7.37776, 6.13773, 6.907760000000001, 6.858569999999999, 6.745239999999999, 7.495539999999999, 7.1546199999999995, 6.2804, 6.6592899999999995, 6.77422, 6.893660000000001, 6.86693, 7.408530000000001, 6.72743, 6.42972, 6.633319999999999, 7.0579, 6.68461, 7.185389999999999, 7.26543, 7.05099, 6.10925, 6.60123, 7.233460000000001, 6.90575, 6.77194, 6.6567300000000005, 6.3243599999999995, 6.55393, 6.9613, 6.90575, 6.907760000000001, 6.90975, 7.64969, 7.1309, 6.745239999999999, 5.99146, 6.354369999999999, 5.4161, 6.55536, 6.02102, 6.7334, 6.47697, 6.47697, 6.53669, 6.95655, 6.551080000000001, 7.6009, 6.90575, 7.17242, 6.3421199999999995, 6.9196800000000005, 6.51471, 6.85646, 6.551080000000001, 6.35611, 6.90575, 6.34914, 7.696210000000001, 7.17012, 6.802389999999999, 6.253830000000001, 6.90575, 6.48464, 6.49224, 6.82763, 6.90575, 7.014810000000001, 6.2634, 7.04752, 6.90575, 7.20786, 7.02997, 7.803839999999999, 6.31355, 6.89467, 6.829789999999999, 7.17012, 7.54961, 7.28207, 6.69084, 7.1929300000000005, 6.33328, 5.84354, 6.85646, 6.912739999999999, 6.80017, 6.97635, 6.2653, 7.1309, 7.17012, 7.0884100000000005, 7.16627, 6.19644, 6.39693, 5.9814099999999994, 6.90575, 6.90575, 6.6958, 5.01728, 7.279319999999999, 7.136480000000001, 6.608, 6.68461, 7.9831, 6.9828600000000005, 6.30992, 6.2146099999999995, 7.09506, 6.44572, 6.90575, 6.90575, 7.08339, 5.96615, 6.9622399999999995, 7.11233, 6.912739999999999, 6.68461, 6.8254600000000005, 7.346010000000001, 6.68085, 7.24423, 6.62007, 6.1070199999999994, 6.33328, 6.15698, 6.30262, 6.253830000000001, 7.30317, 6.829789999999999, 6.56808, 6.36303, 7.20786, 6.752269999999999, 6.95655, 6.02102, 6.633319999999999, 6.2634, 7.183110000000001, 6.907760000000001, 6.6174, 7.43838, 6.45047, 6.9707300000000005, 6.3952599999999995, 7.09008, 6.49979, 6.94986, 7.06902, 6.68461, 7.22766, 6.68461, 7.1309, 6.975410000000001, 6.2672, 6.50279, 6.551080000000001, 6.59987, 6.7334, 6.2146099999999995, 6.44572, 7.408530000000001, 7.09008, 6.614730000000001, 6.17379, 7.03615, 6.05209, 6.83518, 7.09008, 6.63857, 6.17794, 6.551080000000001, 6.30992, 7.07834, 6.39693, 6.57228, 6.938280000000001, 6.715380000000001, 6.7511, 6.715380000000001, 6.58617, 5.59842, 6.3935900000000006, 7.26193, 6.49072, 6.829789999999999, 6.745239999999999, 6.721430000000001, 6.59715, 6.00389, 6.9828600000000005, 6.62007, 6.85646, 7.04752, 6.23441, 6.551080000000001, 6.14633, 6.563860000000001, 6.73102, 6.2634, 6.3243599999999995, 6.721430000000001, 6.6796, 7.062189999999999, 6.10925, 7.313219999999999, 6.34564, 6.561030000000001, 6.17379, 7.06987, 6.87626, 6.505780000000001, 6.745239999999999, 6.966019999999999, 6.4488900000000005, 7.1309, 6.68461, 6.575080000000001, 6.40192, 6.70073, 6.56808, 6.7334, 6.30992, 7.0775, 6.6796, 6.8384100000000005, 7.03615, 6.85751, 6.745239999999999, 7.313219999999999, 6.86693, 7.08171, 6.85646, 6.47697, 6.47697, 6.28972, 7.46737, 7.2724, 6.61874, 6.30079, 7.0255399999999995, 6.27099, 6.90575, 6.34564, 6.9828600000000005, 7.450080000000001, 6.224559999999999, 6.551080000000001, 6.23441, 7.1309, 6.52209, 7.49332, 6.39192, 6.739339999999999, 7.4832399999999994, 6.16331, 6.68461, 6.90575, 6.90575, 7.1309, 6.86171, 6.715380000000001, 6.551080000000001, 6.33683, 6.9187, 7.0579, 6.35611, 7.02376, 5.5797300000000005, 6.90575, 6.82655, 6.90575, 5.9269300000000005, 7.42833, 5.87212, 6.463030000000001, 7.52833, 6.86797, 6.60665, 6.90575, 6.4677, 7.3651800000000005, 6.748760000000001, 6.77992, 6.975410000000001, 7.43838, 7.82405, 6.5439099999999994, 6.42162, 6.8844899999999996, 7.16085, 6.52209, 6.04025, 5.52146, 6.90575, 7.00307, 6.907760000000001, 6.817830000000001, 7.279319999999999, 6.907760000000001, 7.54961, 7.323169999999999, 6.90575, 6.41017, 6.90575, 6.787839999999999, 6.62007, 7.0967199999999995, 5.9269300000000005, 6.55393, 6.17379, 7.00307, 7.31122, 7.31122, 6.31355, 6.44572, 6.59578, 6.47697, 6.69332, 6.7511, 6.77422, 7.09008, 5.8579300000000005, 7.183110000000001, 7.728860000000001, 6.54965, 7.04752, 7.25488, 6.9256, 6.907760000000001, 5.65249, 7.041410000000001, 6.4599, 6.96035, 7.1333, 6.99942, 6.38012, 7.200419999999999, 7.18007, 7.1309, 6.461469999999999, 6.85646, 7.17012, 7.03527, 6.19848, 6.62007, 7.313219999999999, 6.907760000000001, 6.90575, 7.1452, 5.82895, 6.33683, 6.04025, 6.2146099999999995, 7.8935699999999995, 6.34564, 6.64249, 6.8977, 6.3699, 6.6567300000000005, 6.813439999999999, 6.53669, 6.90575, 6.47697, 6.05209, 7.21524, 6.551080000000001, 6.66568, 6.57925, 6.2146099999999995, 6.8426800000000005, 6.907760000000001, 6.90575, 7.106610000000001, 6.424869999999999, 6.65415, 6.86693, 6.745239999999999, 6.88346, 6.53669, 6.3207699999999996, 7.696210000000001, 7.64779, 7.313219999999999, 6.95655, 6.715380000000001, 6.44254, 6.61338, 6.23245, 6.95655, 6.768489999999999, 7.3981699999999995, 6.68461, 7.12287, 6.813439999999999, 6.752269999999999, 6.551080000000001, 6.7334, 6.318969999999999, 6.79122, 5.95324, 6.745239999999999, 7.1309, 6.54103, 7.06048, 6.24222, 6.68461, 6.05209, 6.78672, 7.09008, 7.1309, 6.47697, 7.1025, 5.9814099999999994, 7.24423, 6.44254, 7.451239999999999, 7.198180000000001, 7.27101, 7.245660000000001, 7.279319999999999, 6.85646, 7.279319999999999, 7.67322, 6.76273, 6.82437, 6.47697, 6.885510000000001, 7.07918, 7.279319999999999, 7.1309, 6.966019999999999, 6.73102, 6.633319999999999, 7.00307, 7.6009, 6.907760000000001, 6.32615, 6.508769999999999, 6.551080000000001, 7.0884100000000005, 6.829789999999999, 7.31986, 6.21661, 7.11802, 6.77422, 7.26193, 6.90575, 7.00307, 5.99146, 7.46737, 6.57786, 6.3081, 6.90575, 6.311730000000001, 6.39693, 6.95655, 6.62007, 6.3952599999999995, 6.48311, 6.39693, 6.90575, 6.60665, 6.90575, 6.318969999999999, 6.802389999999999, 6.70441, 6.51471, 6.77992, 6.68461, 6.29157, 6.40523, 6.18826, 7.24423, 6.83518, 7.09008, 7.84502, 7.1624, 6.813439999999999, 6.907760000000001, 6.68461, 6.14633, 7.17012, 6.53814, 6.882439999999999, 6.36647, 6.47697, 7.54697, 6.60665, 6.68461, 7.408530000000001, 7.2724, 6.46614, 6.90575, 5.7462, 6.36303, 7.04752, 6.551080000000001, 6.58064, 6.17379, 6.83195, 7.20786, 6.62007, 6.95655, 6.90575, 6.34564, 7.09008, 7.014810000000001, 6.73815, 6.65028, 7.03878, 6.10032, 7.266830000000001, 6.95655, 7.20786, 6.602589999999999, 6.551080000000001, 6.87626, 5.16479, 7.54961, 6.551080000000001, 6.49224, 6.58893, 6.60665, 6.907760000000001, 7.64969, 6.9177100000000005, 6.18415, 6.68461, 7.43838, 6.66441, 6.551080000000001, 6.41182, 6.43775, 6.43775, 6.4599, 7.00307, 5.99146, 6.852239999999999, 6.5439099999999994, 6.6515699999999995, 7.522939999999999, 6.16331, 6.551080000000001, 6.907760000000001, 7.04752, 6.44572, 6.3243599999999995, 6.41346, 6.551080000000001, 6.802389999999999, 6.62007, 6.5439099999999994, 6.57925, 6.38012, 6.4151, 6.52209, 6.29157, 6.2146099999999995, 6.97167, 6.75926, 6.66823, 7.37776, 7.1309, 6.90575, 6.10925, 7.408530000000001, 6.39693, 6.04025, 7.0396600000000005, 7.09589, 7.10003, 6.73102, 6.87523, 6.90575, 7.20786, 7.173960000000001, 6.90575, 6.47389, 6.99026, 7.0884100000000005, 6.206580000000001, 6.56526, 6.44572, 6.551080000000001, 6.53379, 6.90575, 6.46614, 6.61338, 6.90575, 6.85646, 6.47389, 6.10925, 6.99118, 6.2441699999999996, 7.1592899999999995, 6.90575, 6.59987, 7.01571, 6.42162, 6.716589999999999, 6.85646, 7.46737, 6.58617, 6.95655, 6.29157, 6.907760000000001, 6.46459, 6.62007, 6.95177, 6.58617, 6.50129, 6.2952699999999995, 6.85646, 6.15698, 6.90575, 7.6009, 7.00307, 6.17379, 6.15273, 6.62007, 7.346010000000001, 6.90575, 6.68461, 6.50429, 7.0942300000000005, 5.78383, 6.54535, 6.3716099999999996, 7.86327, 6.62007, 7.09008, 6.703189999999999, 6.53233, 6.58617, 7.46737, 6.39693, 6.38012, 6.802389999999999, 6.43935, 7.044910000000001, 6.42162, 6.90575, 6.802389999999999, 6.44413, 7.127689999999999, 6.45677, 6.40192, 6.55393, 7.06902, 6.59987, 6.715380000000001, 6.715380000000001, 6.39693, 6.57786, 6.68461, 7.00307, 6.42972, 6.85435, 6.937310000000001, 6.2106, 6.708080000000001, 6.0845, 6.907760000000001, 6.16331, 6.2441699999999996, 6.74406, 6.85646, 6.73221, 5.72031, 7.54961, 6.37673, 6.90575, 6.62007, 6.768489999999999, 6.63595, 5.82895, 6.90575, 6.75577, 6.77194, 6.77422, 5.8999, 6.2146099999999995, 6.2146099999999995, 6.62007, 6.9489, 7.354360000000001, 7.279319999999999, 5.8861, 6.6592899999999995, 7.06305, 6.61338, 7.00307, 6.49224, 6.84588, 6.35611, 6.35611, 6.8977, 7.20786, 6.90575, 7.1309, 7.393260000000001, 6.95655, 6.834110000000001, 6.07993, 7.10988, 6.802389999999999, 6.224559999999999, 6.57925, 6.927560000000001, 6.90575, 7.09008, 7.1309, 6.90575, 6.907760000000001, 6.16542, 6.62007, 7.6009, 6.95655, 6.90575, 6.90575, 6.796819999999999, 6.66568, 6.907760000000001, 6.8533, 6.813439999999999, 7.196689999999999, 6.43615, 6.9147300000000005, 6.77194, 6.90575, 6.90575, 6.47697, 7.0255399999999995, 7.522939999999999, 6.62007, 6.354369999999999, 7.1546199999999995, 6.90575, 6.551080000000001, 6.753439999999999, 6.77422, 7.313219999999999, 6.967910000000001, 6.816739999999999, 7.6009, 6.745239999999999, 7.37588, 6.86485, 6.41346, 6.7093, 6.551080000000001, 6.22654, 7.24423, 6.06146, 6.16331, 7.05359, 6.49224, 6.86171, 6.58617, 7.1309, 6.77422, 7.93737, 6.39693, 6.58617, 7.67322, 6.551080000000001, 6.2146099999999995, 6.77422, 6.99485, 6.45047, 6.66185, 6.94119, 7.21891, 7.57558, 7.495539999999999, 6.10925, 6.59715, 6.03787, 6.556780000000001, 6.354369999999999, 7.6009, 6.83303, 6.551080000000001, 7.279319999999999, 6.354369999999999, 7.925160000000001, 6.77422, 7.183110000000001, 6.1136800000000004, 6.77992, 6.62007, 7.00307, 7.86327, 6.70073, 7.1309, 6.32794, 6.16121, 5.6801699999999995, 6.65286, 6.802389999999999, 6.715380000000001, 6.95655, 6.78333, 6.90575, 6.67582, 6.47697, 6.907760000000001, 6.90575, 6.53233, 6.882439999999999, 7.0255399999999995, 6.23048, 6.715380000000001, 7.872839999999999, 6.49072, 6.90575, 6.4892, 6.63726, 6.3613, 6.79122, 6.53233, 6.05209, 6.697030000000001, 6.8742, 6.08677, 6.6280399999999995, 6.907760000000001, 6.05209, 5.70378, 7.02997, 6.715380000000001, 6.2146099999999995, 6.90575, 7.313219999999999, 6.3699, 6.07074, 6.54822, 6.62007, 6.59987, 6.7226300000000005, 6.51026, 6.907760000000001, 6.50429, 6.47697, 6.58617, 6.77422, 6.8977, 5.9135, 6.17379, 8.047189999999999, 6.93537, 6.2146099999999995, 6.507280000000001, 7.46737, 5.82895, 7.034389999999999, 6.7569300000000005, 6.95655, 6.17794, 6.68461, 7.495539999999999, 6.62007, 6.88755, 6.45205, 6.802389999999999, 6.32794, 6.68461, 8.03916, 6.829789999999999, 6.6745600000000005, 6.714169999999999, 6.43775, 7.00307, 6.43455, 6.90575, 7.346660000000001, 7.6009, 7.10988, 7.24423, 6.7569300000000005, 6.48004, 6.889589999999999, 7.313219999999999, 6.9256, 6.59167, 6.57786, 6.53669, 6.39693, 6.33328, 6.33328, 7.313219999999999, 6.551080000000001, 7.408530000000001, 7.3908, 6.90575, 6.9256, 6.95655, 6.13123, 6.551080000000001, 7.06561, 6.57925, 6.90575, 6.73102, 7.09008, 6.566669999999999, 6.43775, 6.62007, 6.424869999999999, 6.646389999999999, 6.2146099999999995, 6.802389999999999, 6.90575, 6.9613, 6.78672, 6.65286, 7.24423, 7.09008, 6.602589999999999, 6.42162, 7.0422899999999995, 7.034389999999999, 6.59987, 6.44572, 6.20456, 6.57925, 6.38012, 6.16331, 6.818919999999999, 6.551080000000001, 6.53669, 6.95655, 5.76832, 7.2100800000000005, 6.48311, 6.507280000000001, 6.45362, 6.765039999999999, 6.2634, 6.2691, 7.18917, 6.2146099999999995, 6.802389999999999, 6.50129, 6.2634, 7.38647, 6.96885, 6.10925, 7.196689999999999, 6.3403599999999996, 6.818919999999999, 6.72623, 6.90575, 6.7569300000000005, 6.62936, 7.09008, 6.62007, 5.9839400000000005, 6.95655, 7.49332, 6.62007, 6.62007, 6.753439999999999, 6.77422, 6.2653, 7.495539999999999, 6.7334, 6.95655, 6.56526, 6.88755, 7.47307, 6.47697, 6.90575, 6.90575, 7.909860000000001, 6.69084, 6.3716099999999996, 6.52209, 7.106610000000001, 6.40523, 6.69084, 5.627619999999999, 6.6567300000000005, 6.68461, 6.697030000000001, 6.22654, 7.740660000000001, 6.907760000000001, 6.43775, 6.43775, 6.813439999999999, 5.76832, 6.9256, 7.64969, 6.47697, 6.43615, 6.10925, 7.1309, 5.89715, 6.907760000000001, 6.745239999999999, 6.43775, 6.85646, 6.77422, 6.768489999999999, 7.029089999999999, 6.62007, 7.06133, 7.24423, 6.95177, 7.54961, 6.354369999999999, 6.87626, 6.318969999999999, 6.570880000000001, 7.61332, 7.09008, 6.7511, 6.551080000000001, 7.034389999999999, 6.49072, 6.30992, 6.55393, 6.72743, 6.05209, 7.0967199999999995, 6.90575, 6.551080000000001, 6.907760000000001, 6.785589999999999, 6.39693, 6.05209, 6.90575, 6.697030000000001, 6.814539999999999, 6.639880000000001, 6.62007, 7.24423, 6.77194, 6.551080000000001, 6.802389999999999, 5.8999, 6.57228, 7.062189999999999, 6.47697, 6.2441699999999996, 6.829789999999999, 6.95655, 6.907760000000001, 6.38012, 7.293019999999999, 6.91175, 6.45834, 6.556780000000001, 6.5582, 6.91175, 6.45362, 7.1309, 6.8773, 6.955589999999999, 7.80588, 6.9613, 5.4161, 6.907760000000001, 6.90575, 7.18992, 6.90575, 6.385190000000001, 7.31122, 6.6107, 6.807930000000001, 6.79794, 6.1717, 6.16331, 6.6592899999999995, 7.0483899999999995, 6.598510000000001, 6.09131, 7.106610000000001, 6.90575, 7.66153, 7.22548, 6.48768, 6.87213, 7.17012, 6.23245, 6.39693, 7.35244, 7.183110000000001, 6.56948, 8.00637, 7.05272, 6.33328, 6.90575, 6.802389999999999, 6.30992, 6.551080000000001, 6.10925, 6.77422, 6.30992, 6.49979, 6.802389999999999, 7.05704, 7.16858, 6.802389999999999, 6.58617, 6.551080000000001, 7.20564, 7.1507, 6.852239999999999, 7.6009, 6.70564, 5.7525699999999995, 6.90575, 6.11147, 6.95655, 6.84375, 6.95655, 6.8977, 7.34923, 6.93245, 6.34564, 7.03878, 7.400010000000001, 5.8579300000000005, 7.37588, 6.83195, 7.00307, 6.84162, 6.354369999999999, 6.93342, 6.608, 6.85646, 6.61607, 6.056780000000001, 6.90575, 6.697030000000001, 6.5395900000000005, 6.6120399999999995, 6.63726, 7.1309, 6.739339999999999, 7.86327, 6.55393, 6.47697, 6.7511, 6.907760000000001, 6.05912, 6.54535, 6.551080000000001, 7.00307, 6.51471, 7.0422899999999995, 6.57925, 6.66823, 7.1309, 6.551080000000001, 6.44572, 7.00307, 6.253830000000001, 5.99146, 7.2724, 6.907760000000001, 6.90575, 6.3315, 6.3699, 6.39693, 7.82405, 6.95655, 6.09582, 6.07535, 6.90575, 6.8426800000000005, 7.0518600000000005, 6.993930000000001, 6.907760000000001, 6.79122, 6.7511, 6.2146099999999995, 6.78897, 6.67203, 7.259119999999999, 7.6811, 6.745239999999999, 7.27031, 6.721430000000001, 6.90575, 6.563860000000001, 6.99485, 7.37776, 7.06048, 6.30992, 6.84375, 7.0282, 6.66696, 6.90575, 6.47235, 6.56244, 8.0229, 6.90575, 6.6592899999999995, 6.80351, 6.92658, 6.4892, 6.28227, 7.06902, 6.08677, 7.1309, 5.68698, 6.33683, 6.984719999999999, 6.753439999999999, 6.354369999999999, 6.52209, 6.52209, 7.362010000000001, 6.8200199999999995, 6.73102, 6.39693, 6.8773, 6.507280000000001, 6.81014, 6.802389999999999, 6.49072, 7.46737, 6.745239999999999, 6.11147, 6.2634, 7.181589999999999, 6.551080000000001, 7.05618, 5.86079, 6.51619, 6.56948, 6.937310000000001, 6.9256, 6.90575, 6.10925, 6.39693, 7.09008, 6.82437, 6.753439999999999, 6.966019999999999, 6.802389999999999, 7.239210000000001, 6.5582, 6.907760000000001, 6.98008, 6.62407, 5.70378, 6.551080000000001, 6.41673, 7.313219999999999, 6.62007, 6.84588, 6.42162, 6.68461, 6.715380000000001, 6.85646, 6.57786, 5.8579300000000005, 6.2146099999999995, 7.313219999999999, 7.37776, 6.30992, 7.1309, 6.69084, 6.70564, 5.7462, 6.16752, 7.279319999999999, 6.73102, 6.53669, 6.24222, 7.03527, 7.04752, 6.507280000000001, 6.93049, 6.59715, 7.09008, 6.45047, 6.33328, 6.68461, 6.62007, 6.90575, 7.04752, 6.6346300000000005, 6.59167, 6.41836, 7.2724, 6.56526, 7.91936, 6.54103, 6.90575, 7.57558, 6.20456, 6.802389999999999, 7.484369999999999, 6.90575, 6.51471, 5.7462, 6.39693, 6.94698, 7.084230000000001, 6.96885, 6.907760000000001, 7.00307, 7.293019999999999, 7.173189999999999, 6.77422, 6.815639999999999, 6.43294, 6.813439999999999, 6.90575, 6.88857, 6.90575, 7.09008, 6.90575, 7.226210000000001, 7.279319999999999, 6.73102, 6.05912, 6.68461, 6.6592899999999995, 7.91936, 6.507280000000001, 7.00307, 6.47697, 6.551080000000001, 6.90575, 6.2146099999999995, 6.907760000000001, 6.715380000000001, 6.96885, 6.68461, 6.57368, 6.745239999999999, 6.53669, 5.76832, 6.2146099999999995, 6.8426800000000005, 7.520230000000001, 5.5797300000000005, 6.51323, 7.1082399999999994, 6.5582, 7.17012, 6.768489999999999, 6.39693, 7.393260000000001, 6.6958, 6.95177, 6.2146099999999995, 6.5582, 6.9613, 6.4892, 7.676010000000001, 6.715380000000001, 6.907760000000001, 6.3935900000000006, 7.54961, 6.86171, 5.79606, 6.83087, 6.6783399999999995, 6.54535, 6.593039999999999, 6.77422, 6.44572, 7.04752, 7.37776, 7.17012, 6.8426800000000005, 7.00307, 6.126869999999999, 6.50129, 6.8773, 6.56526, 6.354369999999999, 6.96885, 6.575080000000001, 6.62007, 6.42811, 6.752269999999999, 6.90575, 6.78672, 8.12089, 6.829789999999999, 7.00307, 6.2146099999999995, 6.1944099999999995, 7.740660000000001, 6.907760000000001, 6.2146099999999995, 6.96979, 6.68461, 7.14283, 6.139880000000001, 7.1293, 6.89467, 5.43808, 7.183110000000001, 6.5467900000000006, 6.34388, 6.39024, 7.0255399999999995, 6.424869999999999, 6.68461, 6.49979, 7.37776, 6.7901, 6.17379, 6.4488900000000005, 6.614730000000001, 6.60665, 7.09008, 6.51323, 6.93245, 6.6592899999999995, 6.30992, 7.37776, 6.09807, 6.8977, 6.35784, 6.37502, 6.57925, 7.7021, 7.46737, 7.6009, 7.36455, 6.59715, 6.639880000000001, 6.36303, 5.82895, 6.59715, 6.62007, 6.551080000000001, 7.09008, 6.78333, 6.563860000000001, 7.0076, 6.880380000000001, 6.745239999999999, 6.82437, 6.4677, 7.127689999999999, 7.1309, 6.62007, 7.82084, 7.288930000000001, 6.39693, 6.68461, 7.10988, 6.563860000000001, 6.354369999999999, 6.7546, 7.196689999999999, 5.99146, 6.74052, 6.67203, 6.86485, 7.1309, 7.6009, 6.6107, 7.24423, 6.9256, 7.11314, 6.86693, 6.58617, 6.85646, 5.70378, 6.2146099999999995, 6.92363, 6.84588, 6.86171, 6.813439999999999, 6.50279, 5.7589, 6.7417, 7.18917, 6.2146099999999995, 6.93245, 6.78897, 6.74759, 7.00307, 6.3935900000000006, 7.09008, 7.84385, 6.802389999999999, 6.57647, 6.78672, 6.39693, 6.9707300000000005, 8.3082, 7.1309, 7.17012, 6.593039999999999, 6.90575, 6.62007, 6.86693, 6.259580000000001, 6.41999, 5.52146, 6.907760000000001, 7.43838, 6.64509, 7.09008, 6.39693, 7.0255399999999995, 7.903969999999999, 6.745239999999999, 6.80461, 7.037030000000001, 7.04752, 6.47697, 6.65286, 6.76388, 6.90575, 6.87626, 6.90575, 7.1507, 7.07834, 7.21082, 6.52942, 6.701960000000001, 6.8426800000000005, 6.0282800000000005, 6.3207699999999996, 6.24611, 6.57786, 6.18826, 6.975410000000001, 7.16085, 6.30992, 6.83303, 7.61874, 6.48158, 6.44095, 6.99485, 6.907760000000001, 6.8384100000000005, 6.79122, 6.551080000000001, 6.6695, 7.279319999999999, 6.57925, 6.813439999999999, 6.30992, 6.68461, 6.47389, 6.802389999999999, 6.785589999999999, 7.313219999999999, 6.551080000000001, 7.29097, 5.8861, 6.98008, 6.802389999999999, 7.20786, 6.802389999999999, 6.983789999999999, 6.75926, 6.68461, 6.55962, 6.8977, 6.05912, 6.90575, 7.4570300000000005, 7.1309, 6.566669999999999, 6.829789999999999, 6.85646, 6.643789999999999, 6.77422, 7.90101, 6.32794, 6.25767, 7.81883, 6.966019999999999, 6.33328, 6.77422, 6.8384100000000005, 6.62007, 6.813439999999999, 6.551080000000001, 6.920669999999999, 7.195189999999999, 6.62007, 6.3315, 6.69332, 6.745239999999999, 6.90575, 7.0396600000000005, 6.90575, 6.07535, 6.30992, 6.96885, 6.47697, 6.39693, 7.24423, 7.12367, 7.17012, 6.18415, 6.68461, 6.44413, 6.4677, 6.47697, 6.907760000000001, 6.4552, 7.1546199999999995, 7.37776, 7.18917, 6.10925, 6.5903, 7.136480000000001, 5.95584, 7.03878, 6.461469999999999, 6.697030000000001, 5.9839400000000005, 6.66568, 6.2146099999999995, 6.56526, 6.51471, 5.61677, 6.49375, 7.06048, 6.715380000000001, 6.10925, 6.95655, 7.1309, 6.95655, 6.90575, 6.76273, 6.311730000000001, 6.29157, 6.86693, 6.68461, 6.90575, 6.95655, 7.17012, 7.0255399999999995, 6.86171, 7.495539999999999, 6.49224, 6.90575, 6.8865300000000005, 7.57353, 6.602589999999999, 6.30992, 6.23048, 6.5467900000000006, 6.530880000000001, 6.802389999999999, 7.6009, 6.46459, 6.834110000000001, 7.313219999999999, 6.802389999999999, 6.66441, 7.251339999999999, 5.87774, 7.43838, 6.35957, 6.43775, 6.5820300000000005, 6.768489999999999, 7.17012, 5.6733199999999995, 6.90575, 7.281389999999999, 7.17702, 6.90575, 6.95845, 6.44572, 6.583410000000001, 6.91672, 6.90575, 8.229510000000001, 7.027310000000001, 6.551080000000001, 7.136480000000001, 6.71174, 6.74288, 7.0934, 7.200419999999999, 6.83087, 7.37776, 6.79122, 6.67203, 6.55393, 6.39693, 7.46737, 6.802389999999999, 7.165489999999999, 6.62007, 6.90575, 7.0255399999999995, 7.70661, 6.47389, 6.35957, 6.07535, 6.907760000000001, 7.20786, 6.43775, 6.556780000000001, 6.966019999999999, 6.95273, 6.3716099999999996, 6.745239999999999, 6.43133, 6.907760000000001, 6.68461, 6.64898, 6.28972, 7.00307, 6.2146099999999995, 6.66058, 7.016610000000001, 7.09008, 6.85646, 6.90575, 5.66988, 7.09008, 6.53379, 6.84801, 5.99146, 7.21891, 6.90575, 6.745239999999999, 7.07242, 7.6009, 6.817830000000001, 7.346010000000001, 6.6592899999999995, 7.46737, 6.975410000000001, 6.79122, 6.719010000000001, 6.720219999999999, 6.90575, 6.90575, 6.68336, 6.892639999999999, 6.86485, 6.947939999999999, 6.955589999999999, 6.90575, 6.551080000000001, 5.66988, 7.0255399999999995, 7.04752, 6.3935900000000006, 6.807930000000001, 6.74288, 6.802389999999999, 6.4599, 6.354369999999999, 6.18208, 7.398789999999999, 7.37776, 7.35883, 6.47697, 7.18463, 6.745239999999999, 7.05876, 6.84588, 6.68461, 7.64969, 6.59578, 6.715380000000001, 6.04025, 6.507280000000001, 6.23441, 7.098380000000001, 6.2804, 7.6256, 6.633319999999999, 6.6346300000000005, 6.43455, 6.52649, 7.54961, 7.09008, 6.36475, 5.7462, 6.77422, 6.10925, 6.73459, 7.1293, 6.49224, 6.28413, 7.17012, 6.90575, 6.6515699999999995, 6.56948, 6.80461, 6.03787, 7.313219999999999, 6.11589, 6.68461, 7.09008, 5.96615, 8.26873, 6.17794, 6.3935900000000006, 7.12287, 6.43775, 5.95324, 6.6796, 6.758089999999999, 6.68461, 6.90575, 7.495539999999999, 6.84588, 6.745239999999999, 6.21261, 6.10032, 8.048789999999999, 7.313219999999999, 6.802389999999999, 6.745239999999999, 6.907760000000001, 6.90575, 5.82305, 6.90575, 7.17012, 6.2441699999999996, 8.08641, 5.59842, 7.08171, 6.9594, 6.97354, 7.30653, 6.55962, 6.58617, 6.74406, 7.56008, 6.1944099999999995, 7.408530000000001, 6.61338, 6.01616, 6.32794, 7.18007, 6.74052, 6.95655, 6.58617, 6.66568, 6.85646, 6.44572, 7.313219999999999, 7.1309, 5.99146, 6.18826, 5.59842, 6.49224, 6.821110000000001, 6.56526, 6.47697, 6.813439999999999, 7.43838, 6.30262, 6.38351, 6.551080000000001, 5.45959, 6.43775, 6.90575, 6.53233, 6.61874, 6.06843, 6.1203, 7.88231, 6.90575, 6.7569300000000005, 5.7651900000000005, 6.938280000000001, 7.08255, 6.41346, 6.882439999999999, 7.37776, 6.44413, 6.90575, 6.51471, 6.5439099999999994, 6.551080000000001, 6.90575, 7.35372, 7.135689999999999, 7.46737, 6.63595, 6.802389999999999, 7.346010000000001, 6.90575, 6.86693, 7.1309, 5.78383, 6.829789999999999, 6.65286, 6.7334, 7.2998, 6.65415, 6.9256, 6.90575, 6.39693, 6.52209, 6.3699, 6.770789999999999, 6.39693, 6.49072, 6.02345, 7.32251, 6.13123, 6.29711, 7.04752, 6.799060000000001, 6.272880000000001, 6.49527, 6.57925, 6.697030000000001, 6.703189999999999, 7.04752, 6.65286, 6.752269999999999, 6.2146099999999995, 6.42162, 6.90575, 7.014810000000001, 6.62007, 6.85646, 6.745239999999999, 6.9256, 6.58617, 6.51471, 5.96615, 6.90575, 6.52942, 6.16331, 6.56526, 6.813439999999999, 7.09008, 5.8141300000000005, 6.769639999999999, 6.08677, 6.7369699999999995, 7.064760000000001, 7.11883, 6.51175, 7.46737, 6.57228, 6.551080000000001, 7.67322, 6.35957, 6.907760000000001, 6.58617, 5.8579300000000005, 7.1309, 6.57925, 6.43294, 6.39693, 7.46737, 6.95655, 6.54247, 6.3716099999999996, 7.293019999999999, 6.08677, 7.64969, 6.95655, 8.13153, 6.3613, 6.10925, 6.551080000000001, 6.907760000000001, 6.907760000000001, 6.43775, 6.3243599999999995, 6.83518, 6.993930000000001, 6.6567300000000005, 6.984719999999999, 7.062189999999999, 6.907760000000001, 6.77992, 7.195189999999999, 7.185389999999999, 6.07993, 6.01616, 6.72743, 6.33683, 6.70073, 7.20786, 7.0103100000000005, 6.551080000000001, 7.1309, 6.7334, 7.495539999999999, 6.24028, 6.354369999999999, 6.90575, 6.551080000000001, 7.00307, 6.85013, 7.0255399999999995, 6.39693, 7.495539999999999, 6.768489999999999, 6.23441, 6.461469999999999, 6.5395900000000005, 6.907760000000001, 6.05209, 6.28413, 6.126869999999999, 7.12287, 6.745239999999999, 7.21744, 6.39693, 6.49072, 6.47697, 6.05209, 7.24423, 6.802389999999999, 7.09008, 6.44572, 7.00307, 6.966019999999999, 6.721430000000001, 6.62936, 6.813439999999999, 6.28227, 7.64969, 6.9575, 7.3696, 6.461469999999999, 6.90575, 7.20786, 6.78333, 6.57647, 6.5903, 7.00307, 6.74993, 6.57925, 6.907760000000001, 6.16331, 6.59578, 6.802389999999999, 6.272880000000001, 7.014810000000001, 6.2146099999999995, 6.43615, 6.64509, 6.608, 6.68461, 6.58617, 6.62007, 7.00307, 6.95655, 6.12249, 6.62007, 7.09008, 6.83303, 6.98101, 6.6871100000000006, 6.81014, 7.37776, 6.51767, 6.85435, 7.64969, 7.91936, 6.907760000000001, 6.9256, 6.6733, 7.5574699999999995, 6.13773, 6.67203, 6.30992, 6.47697, 6.8956800000000005, 6.56948, 6.33328, 6.802389999999999, 6.9707300000000005, 8.00637, 6.65286, 6.57368, 5.70711, 6.57786, 6.92363, 6.57368, 7.37776, 6.2146099999999995, 7.408530000000001, 7.1155800000000005, 7.91936, 7.09008, 7.37776, 7.1309, 6.58617, 6.14633, 6.6592899999999995, 6.90575, 7.092569999999999, 6.86485, 7.57558, 7.200419999999999, 6.95655, 6.2146099999999995, 6.05209, 6.44254, 6.4599, 6.60394, 6.975410000000001, 7.400010000000001, 8.537, 6.07993, 7.36645, 6.67708, 6.99942, 6.61338, 7.64969, 6.68461, 6.57925, 7.09008, 7.1082399999999994, 6.83518, 7.09008, 6.58617, 5.8861, 6.90575, 6.43615, 6.84162, 7.313219999999999, 6.55962, 6.07993, 6.3952599999999995, 6.633319999999999, 6.42162, 7.09008, 7.313219999999999, 6.30992, 6.79122, 6.720219999999999, 6.66823, 7.2861899999999995, 6.802389999999999, 6.703189999999999, 5.98896, 7.620710000000001, 7.09008, 7.6009, 6.28972, 6.48768, 6.68461, 6.41182, 7.37776, 7.525639999999999, 6.74993, 6.72623, 7.09008, 7.25347, 7.585789999999999, 6.45362, 6.354369999999999, 6.984719999999999, 6.90575, 6.937310000000001, 7.0775, 7.346010000000001, 7.027310000000001, 6.907760000000001, 6.9489, 6.907760000000001, 7.495539999999999, 6.01127, 6.802389999999999, 6.745239999999999, 6.90575, 6.633319999999999, 6.80572, 6.2480400000000005, 6.2634, 6.31355, 7.35819, 6.49677, 6.68461, 6.633319999999999, 7.30317, 6.95655, 6.907760000000001, 5.742999999999999, 6.39693, 7.313219999999999, 7.09008, 6.47697, 7.196689999999999, 6.47697, 6.30262, 6.745239999999999, 7.07412, 6.354369999999999, 6.10925, 6.68461, 7.42357, 6.95655, 6.715380000000001, 6.9828600000000005, 7.02465, 6.49224, 6.49979, 6.27099, 5.8861, 7.393260000000001, 6.829789999999999, 6.32794, 6.28786, 5.9839400000000005, 6.68461, 5.84354, 6.62007, 7.12287, 6.2146099999999995, 6.84162, 7.00307, 6.2146099999999995, 6.983789999999999, 6.35611, 6.17379, 6.95655, 6.39693, 6.88755, 7.04316, 6.90575, 6.84162, 6.45362, 6.83518, 6.85646, 6.46925, 5.99146, 6.62007, 7.00307, 5.99146, 6.22654, 6.633319999999999, 6.77308, 7.1107, 6.95655, 6.967910000000001, 6.995769999999999, 6.66568, 6.594410000000001, 6.90575, 6.5439099999999994, 6.62007, 6.60665, 7.04752, 7.062189999999999, 7.313219999999999, 7.04752, 7.0884100000000005, 6.937310000000001, 6.90575, 6.23441, 6.25767, 6.551080000000001, 6.90575, 7.09008, 6.68461, 6.2146099999999995, 6.386880000000001, 6.44413, 6.58617, 6.10925, 6.90073, 6.745239999999999, 7.2233, 6.8773, 6.813439999999999, 7.037030000000001, 6.40523, 6.2146099999999995, 6.17379, 7.6009, 6.30992, 6.685860000000001, 5.99146, 6.38856, 6.47697, 7.46737, 6.551080000000001, 6.9226399999999995, 6.87213, 6.73102, 6.30992, 7.45298, 5.72359, 6.882439999999999, 5.940169999999999, 6.90675, 6.551080000000001, 6.9147300000000005, 6.85646, 6.563860000000001, 6.381819999999999, 5.78996, 6.769639999999999, 6.73102, 7.06133, 6.68461, 6.2146099999999995, 6.4708, 7.08171, 6.90575, 7.6009, 6.52062, 6.907760000000001, 6.60935, 6.51471, 6.9828600000000005, 6.85646, 6.30992, 7.338889999999999, 6.22654, 6.311730000000001, 7.01392, 6.49224, 6.2205900000000005, 7.44659, 7.388330000000001, 6.85118, 7.24423, 6.632000000000001, 6.90575, 7.10906, 6.944089999999999, 6.83518, 6.222580000000001, 6.84588, 7.17012, 6.52503, 6.2860000000000005, 6.80128, 6.07993 ], "y0": "yes" } ], "layout": { "legend": { "tracegroupgap": 0, "x": 1.1, "xanchor": "right", "y": 1.1 }, "margin": { "b": 40, "l": 60, "r": 10, "t": 10 }, "paper_bgcolor": "#eeeeff", "plot_bgcolor": "#ffffff", "showlegend": true, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "barpolar" } ], "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" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "colorscale": { "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" ] ], "sequential": [ [ 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, "#f0f921" ] ], "sequentialminus": [ [ 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, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "text": "CloudyMountainPlot", "x": 0.5 }, "violingap": 0, "violingroupgap": 0, "violinmode": "overlay", "xaxis": { "showgrid": false, "showline": true, "showticklabels": true, "title": { "text": "Wage (log)" }, "visible": true, "zeroline": true }, "yaxis": { "showgrid": true, "showline": true, "showticklabels": true, "side": "left", "title": { "text": "Married and Gender" }, "visible": true, "zeroline": true } } }, "text/html": [ "
\n", " \n", " \n", "
\n", " \n", "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# union of two separate Xcolumns (Gender + Married)\n", "(traces1,layout)=cmplot(train, xcol=\"sex\", ycol=\"lwage\", xsuperimposed=False,orientation=\"h\",\n", " colorshift=2,colorrange=4,ycolorgroups=False,side=\"pos\",inf=\"hdi\",conf_level=0.95,altsidesflip=False,\n", " pointsoverdens=True,showpoints=True,pointshapes=[\"triangle-down\",\"triangle-up\"],pointsopacity=0.2,\n", " pointsdistance=1,pointsmaxdisplayed=400)\n", "(traces2,layout)=cmplot(train, xcol=\"married\", ycol=\"lwage\", xsuperimposed=False,\n", " orientation=\"h\",colorshift=0,colorrange=4,ycolorgroups=False,side=\"pos\",inf=\"hdi\",conf_level=0.95,\n", " altsidesflip=False,pointsoverdens=True,showpoints=True,pointshapes=[\"triangle-right\",\"triangle-left\"],\n", " pointsopacity=0.3,pointsdistance=1,pointsmaxdisplayed=400,title=\"CloudyMountainPlot\")\n", "layout[\"legend_tracegroupgap\"]=0\n", "layout[\"xaxis_title\"]=\"Wage (log)\"\n", "layout[\"yaxis_title\"]=\"Married and Gender\"\n", "layout[\"margin_l\"]=60\n", "go.Figure(traces1+traces2,layout)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### ... which is particularly powerful when overimposed for same X:" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "NOTE: label female -> M/F\n", "NOTE: label male -> M/F\n", "NOTE: label no -> married?\n", "NOTE: label yes -> married?\n" ] }, { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "fillcolor": "hsla(246, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(246, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "female", "line": { "color": "hsla(246, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(246, 70%, 70%,1)", "line": { "color": "hsla(246, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "triangle-up" }, "meanline": { "color": "hsla(246, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage female", "orientation": "h", "pointpos": 0.6, "points": false, "scalegroup": "female", "scalemode": "count", "showlegend": true, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.55536, 6.39693, 6.907760000000001, 6.50279, 6.614730000000001, 6.30992, 6.62007, 6.17379, 6.2146099999999995, 6.65286, 6.30992, 6.48158, 6.907760000000001, 5.8999, 6.05209, 5.73334, 6.3952599999999995, 6.43775, 6.907760000000001, 5.463830000000001, 5.43808, 6.77422, 6.47697, 5.68358, 6.2146099999999995, 6.10925, 6.6783399999999995, 7.1309, 6.39693, 6.77422, 5.96615, 5.90808, 6.39693, 5.0814, 7.09008, 4.605169999999999, 6.7901, 6.65286, 6.86485, 6.92461, 5.99146, 6.85646, 5.4161, 6.30079, 5.76832, 6.16542, 5.93489, 7.04752, 6.19644, 5.7525699999999995, 6.318969999999999, 5.9454199999999995, 6.4677, 6.768489999999999, 6.2480400000000005, 6.33328, 6.48311, 7.00307, 5.8999, 6.62007, 6.36475, 6.65286, 5.7525699999999995, 6.025869999999999, 6.20456, 6.31536, 5.95324, 6.1070199999999994, 6.05209, 5.9269300000000005, 5.51745, 6.715380000000001, 6.85646, 6.85646, 6.32972, 6.802389999999999, 6.16331, 6.95655, 6.2634, 6.3716099999999996, 6.10925, 6.93537, 6.56244, 6.23245, 7.1309, 6.57925, 6.30992, 6.34388, 5.34711, 7.279319999999999, 6.58064, 6.33683, 6.5582, 6.354369999999999, 5.95324, 5.9454199999999995, 5.64545, 5.7525699999999995, 6.28972, 6.2952699999999995, 6.05209, 6.551080000000001, 6.621410000000001, 5.82305, 6.12905, 6.02345, 5.883319999999999, 6.907760000000001, 5.59842, 6.58617, 6.901739999999999, 6.10925, 5.8579300000000005, 6.17379, 5.81711, 6.44254, 6.30079, 6.745239999999999, 6.7901, 6.51471, 6.17379, 6.07993, 6.11589, 5.74939, 6.33328, 6.386880000000001, 7.0255399999999995, 5.8141300000000005, 5.86647, 6.01616, 6.278519999999999, 6.30992, 6.10925, 6.785589999999999, 6.47697, 7.04752, 6.04025, 6.39693, 6.36819, 6.43775, 5.940169999999999, 6.35957, 6.2146099999999995, 6.253830000000001, 6.1025599999999995, 6.1025599999999995, 6.15698, 6.96885, 6.885510000000001, 6.1717, 5.958419999999999, 5.98645, 5.8579300000000005, 6.715380000000001, 5.8861, 6.10925, 6.65286, 6.39693, 5.65948, 5.940169999999999, 6.26149, 6.551080000000001, 6.29157, 5.50126, 6.77422, 5.82008, 6.4708, 6.15698, 5.8999, 5.99146, 6.33328, 6.9707300000000005, 6.6567300000000005, 6.745239999999999, 6.93049, 6.849069999999999, 6.1070199999999994, 6.712960000000001, 5.97635, 6.29157, 6.86901, 6.0282800000000005, 6.39859, 5.42935, 6.6592899999999995, 6.907760000000001, 6.47697, 6.551080000000001, 6.68461, 6.45834, 5.8141300000000005, 6.88755, 6.23441, 6.463030000000001, 6.65286, 6.39693, 5.8141300000000005, 6.3952599999999995, 6.06379, 5.42053, 5.8861, 6.52209, 5.8861, 7.20786, 6.05209, 5.52146, 5.52146, 6.06379, 6.2205900000000005, 6.0822199999999995, 7.04752, 6.3952599999999995, 6.70073, 6.07993, 6.46925, 6.22654, 6.39693, 6.58755, 6.8254600000000005, 5.99146, 6.62007, 6.62007, 6.29895, 5.8579300000000005, 6.745239999999999, 5.93225, 6.49072, 5.78383, 6.35957, 5.82008, 6.04025, 6.39693, 6.59715, 5.01064, 6.77422, 6.30992, 5.5606800000000005, 6.8426800000000005, 6.30992, 6.602589999999999, 6.424869999999999, 6.259580000000001, 6.2634, 5.97635, 6.04025, 6.07993, 6.551080000000001, 6.17587, 5.8693, 6.43775, 6.73459, 5.70378, 6.49224, 6.29157, 6.2146099999999995, 6.63068, 6.682110000000001, 6.19236, 5.68698, 6.12249, 6.14847, 5.88053, 6.10925, 6.38856, 5.86079, 5.99894, 5.39363, 5.96615, 6.52209, 5.96615, 5.9135, 6.6896, 6.14419, 6.692080000000001, 6.013719999999999, 6.224559999999999, 6.07304, 6.2146099999999995, 6.802389999999999, 5.95324, 6.43615, 5.8579300000000005, 6.33683, 5.97889, 6.2146099999999995, 6.34388, 7.18917, 6.1070199999999994, 6.30992, 6.36819, 6.23637, 5.52146, 6.47697, 6.36303, 6.748760000000001, 6.633319999999999, 6.04025, 5.7525699999999995, 6.47697, 6.0330900000000005, 5.8861, 5.82305, 7.0422899999999995, 5.39363, 5.43808, 5.95324, 5.8999, 6.2146099999999995, 6.2804, 6.39693, 5.89715, 6.06611, 6.2146099999999995, 6.0845, 5.48064, 6.3952599999999995, 6.27099, 6.58617, 6.2146099999999995, 6.73102, 6.035480000000001, 6.206580000000001, 6.39859, 6.551080000000001, 6.43775, 6.02345, 5.9269300000000005, 6.72743, 6.2634, 6.646389999999999, 5.5797300000000005, 6.07993, 5.4161, 6.47697, 5.50126, 6.583410000000001, 6.44731, 5.82895, 6.2146099999999995, 6.73815, 6.802389999999999, 6.77422, 6.1944099999999995, 6.70073, 6.0282800000000005, 6.593039999999999, 6.85646, 5.01064, 6.745239999999999, 6.85646, 6.79347, 5.65249, 6.39693, 6.317159999999999, 6.35611, 5.8579300000000005, 6.18415, 6.05209, 5.84354, 6.46925, 5.99894, 6.745239999999999, 6.77765, 6.30992, 5.8999, 5.8861, 7.216710000000001, 6.65286, 6.2146099999999995, 6.88857, 5.76205, 5.68698, 6.1203, 5.7365699999999995, 5.7365699999999995, 6.2146099999999995, 5.47227, 6.2146099999999995, 7.04752, 6.30992, 7.17012, 6.551080000000001, 5.7365699999999995, 5.64191, 6.21261, 6.47697, 6.95655, 5.61313, 6.62672, 6.23441, 5.7462, 6.056780000000001, 5.8944, 5.84932, 6.06843, 5.53339, 6.49375, 5.7365699999999995, 5.76832, 5.5797300000000005, 6.23832, 5.79606, 6.19644, 6.19236, 6.6253899999999994, 5.7525699999999995, 5.8579300000000005, 6.14633, 6.712960000000001, 6.16331, 6.3716099999999996, 6.62007, 6.30992, 6.47697, 6.62007, 6.551080000000001, 6.18002, 6.745239999999999, 5.96358, 6.39693, 6.14204, 5.5797300000000005, 6.11147, 5.66988, 5.73334, 5.90808, 5.9269300000000005, 6.2186, 5.8861, 6.68461, 6.643789999999999, 5.66988, 6.39693, 6.06611, 6.57786, 5.43808, 5.8141300000000005, 6.3315, 6.86485, 6.04025, 6.7901, 6.56244, 6.253830000000001, 6.57228, 6.05209, 5.93225, 5.273, 6.2186, 6.1717, 6.47697, 6.05209, 5.8579300000000005, 6.86693, 6.36303, 5.99146, 5.19296, 6.39693, 5.95584, 6.7093, 6.62007, 6.41017, 6.556780000000001, 5.8141300000000005, 6.30992, 6.39693, 6.26149, 5.94803, 6.65544, 6.3081 ], "y0": "M/F" }, { "box": { "visible": false }, "fillcolor": "rgba(0, 0, 0, 0)", "hoverinfo": "x", "hoveron": "points", "jitter": 0.3, "legendgroup": "female", "line": { "color": "rgba(0, 0, 0, 0)", "width": 0 }, "marker": { "color": "hsla(246, 70%, 70%,1)", "line": { "color": "hsla(246, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "triangle-up" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0.6, "points": "all", "scalegroup": "female", "showlegend": false, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.55536, 6.39693, 6.907760000000001, 6.50279, 6.614730000000001, 6.30992, 6.62007, 6.17379, 6.2146099999999995, 6.65286, 6.30992, 6.48158, 6.907760000000001, 5.8999, 6.05209, 5.73334, 6.3952599999999995, 6.43775, 6.907760000000001, 5.463830000000001, 5.43808, 6.77422, 6.47697, 5.68358, 6.2146099999999995, 6.10925, 6.6783399999999995, 7.1309, 6.39693, 6.77422, 5.96615, 5.90808, 6.39693, 5.0814, 7.09008, 4.605169999999999, 6.7901, 6.65286, 6.86485, 6.92461, 5.99146, 6.85646, 5.4161, 6.30079, 5.76832, 6.16542, 5.93489, 7.04752, 6.19644, 5.7525699999999995, 6.318969999999999, 5.9454199999999995, 6.4677, 6.768489999999999, 6.2480400000000005, 6.33328, 6.48311, 7.00307, 5.8999, 6.62007, 6.36475, 6.65286, 5.7525699999999995, 6.025869999999999, 6.20456, 6.31536, 5.95324, 6.1070199999999994, 6.05209, 5.9269300000000005, 5.51745, 6.715380000000001, 6.85646, 6.85646, 6.32972, 6.802389999999999, 6.16331, 6.95655, 6.2634, 6.3716099999999996, 6.10925, 6.93537, 6.56244, 6.23245, 7.1309, 6.57925, 6.30992, 6.34388, 5.34711, 7.279319999999999, 6.58064, 6.33683, 6.5582, 6.354369999999999, 5.95324, 5.9454199999999995, 5.64545, 5.7525699999999995, 6.28972, 6.2952699999999995, 6.05209, 6.551080000000001, 6.621410000000001, 5.82305, 6.12905, 6.02345, 5.883319999999999, 6.907760000000001, 5.59842, 6.58617, 6.901739999999999, 6.10925, 5.8579300000000005, 6.17379, 5.81711, 6.44254, 6.30079, 6.745239999999999, 6.7901, 6.51471, 6.17379, 6.07993, 6.11589, 5.74939, 6.33328, 6.386880000000001, 7.0255399999999995, 5.8141300000000005, 5.86647, 6.01616, 6.278519999999999, 6.30992, 6.10925, 6.785589999999999, 6.47697, 7.04752, 6.04025, 6.39693, 6.36819, 6.43775, 5.940169999999999, 6.35957, 6.2146099999999995, 6.253830000000001, 6.1025599999999995, 6.1025599999999995, 6.15698, 6.96885, 6.885510000000001, 6.1717, 5.958419999999999, 5.98645, 5.8579300000000005, 6.715380000000001, 5.8861, 6.10925, 6.65286, 6.39693, 5.65948, 5.940169999999999, 6.26149, 6.551080000000001, 6.29157, 5.50126, 6.77422, 5.82008, 6.4708, 6.15698, 5.8999, 5.99146, 6.33328, 6.9707300000000005, 6.6567300000000005, 6.745239999999999, 6.93049, 6.849069999999999, 6.1070199999999994, 6.712960000000001, 5.97635, 6.29157, 6.86901, 6.0282800000000005, 6.39859, 5.42935, 6.6592899999999995, 6.907760000000001, 6.47697, 6.551080000000001, 6.68461, 6.45834, 5.8141300000000005, 6.88755, 6.23441, 6.463030000000001, 6.65286, 6.39693, 5.8141300000000005, 6.3952599999999995, 6.06379, 5.42053, 5.8861, 6.52209, 5.8861, 7.20786, 6.05209, 5.52146, 5.52146, 6.06379, 6.2205900000000005, 6.0822199999999995, 7.04752, 6.3952599999999995, 6.70073, 6.07993, 6.46925, 6.22654, 6.39693, 6.58755, 6.8254600000000005, 5.99146, 6.62007, 6.62007, 6.29895, 5.8579300000000005, 6.745239999999999, 5.93225, 6.49072, 5.78383, 6.35957, 5.82008, 6.04025, 6.39693, 6.59715, 5.01064, 6.77422, 6.30992, 5.5606800000000005, 6.8426800000000005, 6.30992, 6.602589999999999, 6.424869999999999, 6.259580000000001, 6.2634, 5.97635, 6.04025, 6.07993, 6.551080000000001, 6.17587, 5.8693, 6.43775, 6.73459, 5.70378, 6.49224, 6.29157, 6.2146099999999995, 6.63068, 6.682110000000001, 6.19236, 5.68698, 6.12249, 6.14847, 5.88053, 6.10925, 6.38856, 5.86079, 5.99894, 5.39363, 5.96615, 6.52209, 5.96615, 5.9135, 6.6896, 6.14419, 6.692080000000001, 6.013719999999999, 6.224559999999999, 6.07304, 6.2146099999999995, 6.802389999999999, 5.95324, 6.43615, 5.8579300000000005, 6.33683, 5.97889, 6.2146099999999995, 6.34388, 7.18917, 6.1070199999999994, 6.30992, 6.36819, 6.23637, 5.52146, 6.47697, 6.36303, 6.748760000000001, 6.633319999999999, 6.04025, 5.7525699999999995, 6.47697, 6.0330900000000005, 5.8861, 5.82305, 7.0422899999999995, 5.39363, 5.43808, 5.95324, 5.8999, 6.2146099999999995, 6.2804, 6.39693, 5.89715, 6.06611, 6.2146099999999995, 6.0845, 5.48064, 6.3952599999999995, 6.27099, 6.58617, 6.2146099999999995, 6.73102, 6.035480000000001, 6.206580000000001, 6.39859, 6.551080000000001, 6.43775, 6.02345, 5.9269300000000005, 6.72743, 6.2634, 6.646389999999999, 5.5797300000000005, 6.07993, 5.4161, 6.47697, 5.50126, 6.583410000000001, 6.44731, 5.82895, 6.2146099999999995, 6.73815, 6.802389999999999, 6.77422, 6.1944099999999995, 6.70073, 6.0282800000000005, 6.593039999999999, 6.85646, 5.01064, 6.745239999999999, 6.85646, 6.79347, 5.65249, 6.39693, 6.317159999999999, 6.35611, 5.8579300000000005, 6.18415, 6.05209, 5.84354, 6.46925, 5.99894, 6.745239999999999, 6.77765, 6.30992, 5.8999, 5.8861, 7.216710000000001, 6.65286, 6.2146099999999995, 6.88857, 5.76205, 5.68698, 6.1203, 5.7365699999999995, 5.7365699999999995, 6.2146099999999995, 5.47227, 6.2146099999999995, 7.04752, 6.30992, 7.17012, 6.551080000000001, 5.7365699999999995, 5.64191, 6.21261, 6.47697, 6.95655, 5.61313, 6.62672, 6.23441, 5.7462, 6.056780000000001, 5.8944, 5.84932, 6.06843, 5.53339, 6.49375, 5.7365699999999995, 5.76832, 5.5797300000000005 ], "y0": "M/F" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(246, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(246, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "female", "line": { "width": 0 }, "marker": { "color": "hsla(246, 50%, 50%,0.9)", "line": { "color": "hsla(246, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "triangle-up" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "female", "showlegend": false, "side": "positive", "span": [ 6.215723734773331, 6.292179921103222 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 6.55536, 6.39693, 6.907760000000001, 6.50279, 6.614730000000001, 6.30992, 6.62007, 6.17379, 6.2146099999999995, 6.65286, 6.30992, 6.48158, 6.907760000000001, 5.8999, 6.05209, 5.73334, 6.3952599999999995, 6.43775, 6.907760000000001, 5.463830000000001, 5.43808, 6.77422, 6.47697, 5.68358, 6.2146099999999995, 6.10925, 6.6783399999999995, 7.1309, 6.39693, 6.77422, 5.96615, 5.90808, 6.39693, 5.0814, 7.09008, 4.605169999999999, 6.7901, 6.65286, 6.86485, 6.92461, 5.99146, 6.85646, 5.4161, 6.30079, 5.76832, 6.16542, 5.93489, 7.04752, 6.19644, 5.7525699999999995, 6.318969999999999, 5.9454199999999995, 6.4677, 6.768489999999999, 6.2480400000000005, 6.33328, 6.48311, 7.00307, 5.8999, 6.62007, 6.36475, 6.65286, 5.7525699999999995, 6.025869999999999, 6.20456, 6.31536, 5.95324, 6.1070199999999994, 6.05209, 5.9269300000000005, 5.51745, 6.715380000000001, 6.85646, 6.85646, 6.32972, 6.802389999999999, 6.16331, 6.95655, 6.2634, 6.3716099999999996, 6.10925, 6.93537, 6.56244, 6.23245, 7.1309, 6.57925, 6.30992, 6.34388, 5.34711, 7.279319999999999, 6.58064, 6.33683, 6.5582, 6.354369999999999, 5.95324, 5.9454199999999995, 5.64545, 5.7525699999999995, 6.28972, 6.2952699999999995, 6.05209, 6.551080000000001, 6.621410000000001, 5.82305, 6.12905, 6.02345, 5.883319999999999, 6.907760000000001, 5.59842, 6.58617, 6.901739999999999, 6.10925, 5.8579300000000005, 6.17379, 5.81711, 6.44254, 6.30079, 6.745239999999999, 6.7901, 6.51471, 6.17379, 6.07993, 6.11589, 5.74939, 6.33328, 6.386880000000001, 7.0255399999999995, 5.8141300000000005, 5.86647, 6.01616, 6.278519999999999, 6.30992, 6.10925, 6.785589999999999, 6.47697, 7.04752, 6.04025, 6.39693, 6.36819, 6.43775, 5.940169999999999, 6.35957, 6.2146099999999995, 6.253830000000001, 6.1025599999999995, 6.1025599999999995, 6.15698, 6.96885, 6.885510000000001, 6.1717, 5.958419999999999, 5.98645, 5.8579300000000005, 6.715380000000001, 5.8861, 6.10925, 6.65286, 6.39693, 5.65948, 5.940169999999999, 6.26149, 6.551080000000001, 6.29157, 5.50126, 6.77422, 5.82008, 6.4708, 6.15698, 5.8999, 5.99146, 6.33328, 6.9707300000000005, 6.6567300000000005, 6.745239999999999, 6.93049, 6.849069999999999, 6.1070199999999994, 6.712960000000001, 5.97635, 6.29157, 6.86901, 6.0282800000000005, 6.39859, 5.42935, 6.6592899999999995, 6.907760000000001, 6.47697, 6.551080000000001, 6.68461, 6.45834, 5.8141300000000005, 6.88755, 6.23441, 6.463030000000001, 6.65286, 6.39693, 5.8141300000000005, 6.3952599999999995, 6.06379, 5.42053, 5.8861, 6.52209, 5.8861, 7.20786, 6.05209, 5.52146, 5.52146, 6.06379, 6.2205900000000005, 6.0822199999999995, 7.04752, 6.3952599999999995, 6.70073, 6.07993, 6.46925, 6.22654, 6.39693, 6.58755, 6.8254600000000005, 5.99146, 6.62007, 6.62007, 6.29895, 5.8579300000000005, 6.745239999999999, 5.93225, 6.49072, 5.78383, 6.35957, 5.82008, 6.04025, 6.39693, 6.59715, 5.01064, 6.77422, 6.30992, 5.5606800000000005, 6.8426800000000005, 6.30992, 6.602589999999999, 6.424869999999999, 6.259580000000001, 6.2634, 5.97635, 6.04025, 6.07993, 6.551080000000001, 6.17587, 5.8693, 6.43775, 6.73459, 5.70378, 6.49224, 6.29157, 6.2146099999999995, 6.63068, 6.682110000000001, 6.19236, 5.68698, 6.12249, 6.14847, 5.88053, 6.10925, 6.38856, 5.86079, 5.99894, 5.39363, 5.96615, 6.52209, 5.96615, 5.9135, 6.6896, 6.14419, 6.692080000000001, 6.013719999999999, 6.224559999999999, 6.07304, 6.2146099999999995, 6.802389999999999, 5.95324, 6.43615, 5.8579300000000005, 6.33683, 5.97889, 6.2146099999999995, 6.34388, 7.18917, 6.1070199999999994, 6.30992, 6.36819, 6.23637, 5.52146, 6.47697, 6.36303, 6.748760000000001, 6.633319999999999, 6.04025, 5.7525699999999995, 6.47697, 6.0330900000000005, 5.8861, 5.82305, 7.0422899999999995, 5.39363, 5.43808, 5.95324, 5.8999, 6.2146099999999995, 6.2804, 6.39693, 5.89715, 6.06611, 6.2146099999999995, 6.0845, 5.48064, 6.3952599999999995, 6.27099, 6.58617, 6.2146099999999995, 6.73102, 6.035480000000001, 6.206580000000001, 6.39859, 6.551080000000001, 6.43775, 6.02345, 5.9269300000000005, 6.72743, 6.2634, 6.646389999999999, 5.5797300000000005, 6.07993, 5.4161, 6.47697, 5.50126, 6.583410000000001, 6.44731, 5.82895, 6.2146099999999995, 6.73815, 6.802389999999999, 6.77422, 6.1944099999999995, 6.70073, 6.0282800000000005, 6.593039999999999, 6.85646, 5.01064, 6.745239999999999, 6.85646, 6.79347, 5.65249, 6.39693, 6.317159999999999, 6.35611, 5.8579300000000005, 6.18415, 6.05209, 5.84354, 6.46925, 5.99894, 6.745239999999999, 6.77765, 6.30992, 5.8999, 5.8861, 7.216710000000001, 6.65286, 6.2146099999999995, 6.88857, 5.76205, 5.68698, 6.1203, 5.7365699999999995, 5.7365699999999995, 6.2146099999999995, 5.47227, 6.2146099999999995, 7.04752, 6.30992, 7.17012, 6.551080000000001, 5.7365699999999995, 5.64191, 6.21261, 6.47697, 6.95655, 5.61313, 6.62672, 6.23441, 5.7462, 6.056780000000001, 5.8944, 5.84932, 6.06843, 5.53339, 6.49375, 5.7365699999999995, 5.76832, 5.5797300000000005, 6.23832, 5.79606, 6.19644, 6.19236, 6.6253899999999994, 5.7525699999999995, 5.8579300000000005, 6.14633, 6.712960000000001, 6.16331, 6.3716099999999996, 6.62007, 6.30992, 6.47697, 6.62007, 6.551080000000001, 6.18002, 6.745239999999999, 5.96358, 6.39693, 6.14204, 5.5797300000000005, 6.11147, 5.66988, 5.73334, 5.90808, 5.9269300000000005, 6.2186, 5.8861, 6.68461, 6.643789999999999, 5.66988, 6.39693, 6.06611, 6.57786, 5.43808, 5.8141300000000005, 6.3315, 6.86485, 6.04025, 6.7901, 6.56244, 6.253830000000001, 6.57228, 6.05209, 5.93225, 5.273, 6.2186, 6.1717, 6.47697, 6.05209, 5.8579300000000005, 6.86693, 6.36303, 5.99146, 5.19296, 6.39693, 5.95584, 6.7093, 6.62007, 6.41017, 6.556780000000001, 5.8141300000000005, 6.30992, 6.39693, 6.26149, 5.94803, 6.65544, 6.3081 ], "y0": "M/F" }, { "fillcolor": "hsla(328, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(328, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "male", "line": { "color": "hsla(328, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(328, 70%, 70%,1)", "line": { "color": "hsla(328, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "triangle-down" }, "meanline": { "color": "hsla(328, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage male", "orientation": "h", "pointpos": -0.6, "points": false, "scalegroup": "male", "scalemode": "count", "showlegend": true, "side": "negative", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.99942, 5.99146, 7.67322, 7.09008, 5.61677, 6.646389999999999, 7.02643, 6.4552, 7.32975, 6.95845, 7.06902, 6.04025, 6.907760000000001, 7.91936, 6.745239999999999, 6.30079, 7.068169999999999, 6.07535, 6.7417, 7.71869, 6.882439999999999, 6.47697, 6.77878, 6.907760000000001, 6.93342, 7.06902, 6.57368, 6.829789999999999, 7.557989999999999, 6.892639999999999, 7.0255399999999995, 6.57925, 7.313219999999999, 6.47697, 7.1309, 6.551080000000001, 6.882439999999999, 6.907760000000001, 6.682110000000001, 6.39693, 6.48004, 6.60665, 7.00307, 6.10925, 5.78383, 6.94505, 6.9546399999999995, 7.17012, 7.11477, 6.993930000000001, 6.593039999999999, 6.49979, 6.5439099999999994, 6.39192, 6.51471, 6.30992, 6.30992, 7.116389999999999, 6.46925, 7.554860000000001, 6.90675, 6.85646, 5.94803, 6.90575, 6.90575, 7.408530000000001, 7.0076, 6.88857, 7.35947, 6.39693, 7.041410000000001, 6.66696, 6.30992, 7.313219999999999, 6.787839999999999, 6.90575, 6.802389999999999, 7.00307, 7.074960000000001, 7.5606, 5.99146, 6.16331, 5.94803, 6.43775, 7.282760000000001, 6.39693, 6.813439999999999, 6.694560000000001, 6.29157, 6.23048, 6.67203, 6.16331, 6.88755, 6.95655, 7.56008, 6.28227, 6.30992, 6.05912, 6.602589999999999, 7.47307, 6.2146099999999995, 6.95655, 6.90575, 6.461469999999999, 7.09008, 7.46737, 6.829789999999999, 6.60665, 6.74052, 6.745239999999999, 7.6009, 6.62007, 6.551080000000001, 6.663130000000001, 7.60589, 6.53669, 6.5582, 6.16121, 6.19236, 6.2146099999999995, 7.37776, 6.6995, 6.58617, 6.23832, 6.27476, 6.48311, 6.69084, 6.54965, 6.745239999999999, 6.882439999999999, 6.663130000000001, 5.70378, 6.7226300000000005, 7.20786, 6.802389999999999, 6.79122, 6.62007, 6.42162, 6.12249, 6.90575, 6.28227, 6.745239999999999, 6.206580000000001, 5.99146, 6.682110000000001, 6.49677, 7.408530000000001, 6.10925, 6.317159999999999, 6.2146099999999995, 6.551080000000001, 6.25575, 7.0884100000000005, 6.16331, 6.68461, 5.8999, 7.01392, 7.1107, 6.9363399999999995, 6.90575, 6.1070199999999994, 6.85646, 6.44572, 6.551080000000001, 6.84588, 8.10168, 7.31255, 5.99645, 6.90575, 6.802389999999999, 7.111510000000001, 6.2146099999999995, 6.66696, 6.907760000000001, 6.90575, 6.6592899999999995, 8.047189999999999, 6.62407, 7.0076, 6.30992, 6.17379, 6.55393, 6.24611, 7.78322, 6.563860000000001, 6.60665, 7.12448, 6.507280000000001, 6.461469999999999, 6.8977, 7.82405, 7.75148, 6.62407, 7.346010000000001, 6.2146099999999995, 7.1309, 6.51471, 5.96615, 6.84055, 7.041410000000001, 6.51471, 6.551080000000001, 7.346010000000001, 6.966019999999999, 6.90575, 7.17012, 6.5820300000000005, 7.04752, 6.354369999999999, 6.59578, 7.82405, 6.5467900000000006, 6.551080000000001, 6.39693, 6.88755, 6.39693, 6.39693, 6.65286, 6.36647, 6.622739999999999, 6.90575, 5.7525699999999995, 6.15273, 7.04752, 5.52146, 6.770789999999999, 6.907760000000001, 7.00125, 7.064760000000001, 7.00307, 6.05209, 6.745239999999999, 7.045780000000001, 6.54535, 6.37673, 6.62007, 6.907760000000001, 6.10925, 6.39693, 8.16052, 6.745239999999999, 7.03527, 6.765039999999999, 7.1309, 6.77422, 6.87213, 6.551080000000001, 6.907760000000001, 6.6567300000000005, 6.80017, 7.226210000000001, 6.10925, 6.90575, 6.70073, 7.495539999999999, 8.05516, 6.9256, 7.06987, 6.694560000000001, 6.90575, 6.43775, 6.97261, 7.29709, 7.179310000000001, 7.313219999999999, 6.7226300000000005, 6.82437, 6.715380000000001, 7.173189999999999, 6.62007, 6.77878, 6.7226300000000005, 6.85118, 6.49224, 7.313219999999999, 6.62007, 7.158510000000001, 6.818919999999999, 6.68461, 6.57647, 6.43455, 5.89715, 6.34564, 6.556780000000001, 6.7093, 6.93925, 7.00307, 6.551080000000001, 6.90575, 6.53669, 6.69084, 7.313219999999999, 6.05209, 6.90575, 6.62007, 6.4552, 6.77422, 6.87005, 6.65544, 6.42162, 5.9269300000000005, 6.317159999999999, 6.42972, 6.62007, 6.96508, 6.19236, 6.61607, 5.5606800000000005, 6.57368, 6.2634, 6.715380000000001, 7.408530000000001, 6.17379, 7.333019999999999, 6.37502, 6.16331, 6.317159999999999, 7.04752, 6.68461, 6.98008, 6.912739999999999, 6.86693, 7.3670800000000005, 6.68461, 6.90575, 6.90575, 6.62007, 6.45362, 6.49072, 6.47697, 6.9431199999999995, 6.90575, 6.10925, 6.67203, 6.7334, 7.34278, 6.802389999999999, 6.90575, 6.658010000000001, 6.9256, 6.90575, 6.91075, 6.6592899999999995, 5.8579300000000005, 6.6592899999999995, 6.16331, 7.441319999999999, 6.47851, 7.07834, 6.745239999999999, 7.20786, 6.36475, 6.63857, 7.475910000000001, 6.62007, 6.4892, 7.00307, 6.56948, 7.43838, 7.15383, 7.064760000000001, 6.88755, 7.26193, 6.23245, 6.30445, 6.715380000000001, 7.313219999999999, 7.37776, 5.8579300000000005, 6.85646, 6.2441699999999996, 7.26193, 6.90575, 6.907760000000001, 6.272880000000001, 6.66568, 7.481560000000001, 7.04752, 6.61338, 6.40688, 6.73815, 5.8579300000000005, 7.57558, 6.83518, 6.38856, 6.768489999999999, 6.90575, 6.86693, 6.39693, 6.34739, 7.1507, 6.58617, 7.282760000000001, 7.00307, 6.66058, 6.58064, 6.90575, 6.10925, 6.64249, 6.715380000000001, 6.62007, 7.1309, 6.51471, 5.99146, 6.95655, 6.65286, 6.16331, 6.24611, 7.1309, 7.1333, 7.24423, 6.04025, 6.86901, 6.802389999999999, 6.70073, 6.1203, 6.90575, 7.313219999999999, 6.54822, 6.95655, 7.50108, 6.39693, 6.551080000000001, 7.07918, 5.8579300000000005, 5.70378, 6.7369699999999995, 7.745, 6.87213, 5.89715, 6.39693, 6.30628, 6.8773, 6.708080000000001, 6.52942, 6.818919999999999, 7.041410000000001, 6.06611, 6.882439999999999, 6.94986, 6.703189999999999, 6.37502, 5.70378, 7.03615, 7.37776, 5.66988, 6.907760000000001, 6.882439999999999, 6.752269999999999, 6.48158, 6.47697, 7.04752, 6.802389999999999, 6.984719999999999, 5.9269300000000005, 6.49224, 6.385190000000001, 7.1309, 7.663880000000001, 7.07242, 6.907760000000001, 6.43775, 8.05516, 6.807930000000001, 6.785589999999999, 6.907760000000001, 6.403569999999999, 6.035480000000001, 7.24423, 6.05209, 7.338889999999999, 7.0255399999999995, 7.00307, 5.99146, 6.33683, 6.07993, 7.488289999999999, 6.51175, 5.7365699999999995, 5.7365699999999995, 6.90575, 6.697030000000001, 6.354369999999999, 6.802389999999999, 6.62007, 6.68461, 6.68835, 5.8260000000000005, 6.85646, 6.44572, 6.95655, 7.20786, 6.3716099999999996, 6.8977, 6.47697, 6.802389999999999, 6.90575, 6.84055, 7.676010000000001, 6.85646, 6.43775, 7.20786, 6.89163, 7.0121199999999995, 6.85646, 6.77422, 6.54965, 6.05209, 6.697030000000001, 6.90575, 6.68461, 6.62007, 7.24423, 6.36819, 6.8844899999999996, 6.62007, 6.745239999999999, 6.19236, 6.39693, 6.85646, 6.7334, 5.9269300000000005, 5.98896, 6.48004, 6.55393, 6.5903, 7.02643, 7.15305, 6.19236, 6.43615, 6.6871100000000006, 6.42162, 6.06379, 6.93537, 7.09008, 6.802389999999999, 6.47697, 6.2634, 7.79028, 6.10032, 6.0282800000000005, 7.408530000000001, 6.6174, 6.907760000000001, 6.90575, 5.99146, 6.2441699999999996, 6.00141, 6.39693, 6.79122, 6.9196800000000005, 6.9147300000000005, 6.90575, 6.408530000000001, 6.646389999999999, 6.746410000000001, 6.30992, 6.42972, 6.18826, 6.5467900000000006, 7.522939999999999, 6.7334, 6.07993, 6.907760000000001, 6.90575, 7.04752, 6.66185, 6.47697, 7.23418, 6.54247, 6.753439999999999, 6.51471, 7.034389999999999, 6.65286, 7.262630000000001, 6.47697, 7.20786, 6.90575, 6.30992, 6.984719999999999, 6.30445, 6.05209, 6.34564, 6.95655, 6.49224, 6.62007, 5.82895, 6.39693, 6.06146, 6.43775, 6.03787, 6.3952599999999995, 6.22654, 7.144410000000001, 6.90575, 6.91374, 5.70378, 7.6009, 6.5903, 7.1592899999999995, 6.57786, 6.6783399999999995, 6.72383, 6.41182, 6.53233, 6.907760000000001, 6.7334, 7.236339999999999, 6.20456, 6.10925, 6.715380000000001, 6.72743, 6.551080000000001, 7.084230000000001, 6.97635, 7.20786, 6.685860000000001, 6.8977, 7.00307, 6.35089, 5.70378, 6.59167, 6.461469999999999, 6.984719999999999, 6.53233, 6.646389999999999, 6.39693, 7.459910000000001, 6.19848, 7.0255399999999995, 7.1309, 6.745239999999999, 6.22654, 6.10925, 7.08171, 6.64249, 7.49332, 7.495539999999999, 7.1546199999999995, 7.1309, 6.745239999999999, 6.18415, 5.82895, 6.10925, 6.58617, 6.48158, 6.20456, 7.313219999999999, 6.94022, 6.90575, 6.41836, 6.10925, 7.48717, 7.0193, 6.983789999999999, 6.633319999999999, 6.29157, 7.49109, 6.91672, 6.90575, 6.51323, 6.715380000000001, 5.8141300000000005, 6.47697, 7.37212, 6.646389999999999, 7.0184, 6.84055, 7.24423, 6.834110000000001, 7.09008, 6.52942, 7.4553, 7.00307, 6.37502, 7.24423, 6.48158, 6.68461, 6.10925, 6.90575, 6.90575, 7.24423, 7.75577, 6.82437, 6.43775, 6.18415, 6.43775, 6.90575, 7.1107, 6.44572, 6.42162, 6.769639999999999, 6.93245, 6.818919999999999, 6.551080000000001, 6.58617, 6.96508, 6.44572, 6.7093, 6.83195, 6.28972, 7.1082399999999994, 7.135689999999999, 6.49072, 7.251339999999999, 8.51719, 6.807930000000001, 7.14756, 7.33368, 6.77422, 6.60394, 6.68461, 7.1309, 5.99146, 7.201169999999999, 5.99146, 6.10925, 6.68461, 6.39693, 6.927560000000001, 6.85751, 6.95655, 6.08677, 7.24423, 7.1309, 6.17587, 6.802389999999999, 6.30992, 6.36303, 5.8999, 6.77422, 6.2860000000000005, 6.828710000000001, 6.47697, 6.72743, 6.55251, 6.29157, 5.59842, 6.62407, 5.9814099999999994, 6.76273, 7.06902, 5.9269300000000005, 6.80128, 7.313219999999999, 6.966019999999999, 6.6592899999999995, 6.39693, 6.57786, 6.62007, 6.65286, 6.293419999999999, 5.4161, 5.87493, 6.79122, 6.987489999999999, 6.30992, 6.55536, 7.09008, 6.2146099999999995, 7.04752, 6.90575, 6.10925, 6.6783399999999995, 6.39693, 7.259119999999999, 7.43838, 6.47697, 7.1309, 6.77422, 6.2634, 6.739339999999999, 7.46737, 6.47697, 6.90575, 7.279319999999999, 6.815639999999999, 7.1309, 6.65028, 6.27099, 7.17012, 6.354369999999999, 6.29157, 6.802389999999999, 6.602589999999999, 6.47697, 6.63857, 6.58755, 6.77422, 6.907760000000001, 7.09589, 6.882439999999999, 5.45959, 6.05209, 7.67322, 6.85646, 5.8579300000000005, 5.78074, 6.2146099999999995, 7.2957399999999994, 5.84354, 6.802389999999999, 6.58064, 6.2634, 7.00307, 6.90575, 7.21891, 7.503839999999999, 6.45677, 6.950810000000001, 5.97126, 6.23048, 6.15273, 7.57558, 6.96035, 6.3716099999999996, 6.2146099999999995, 6.7334, 6.86066, 6.378430000000001, 6.48004, 7.00307, 6.8200199999999995, 6.47697, 6.90575, 7.39388, 7.4787300000000005, 6.2146099999999995, 6.802389999999999, 6.43775, 7.24065, 5.70378, 6.13773, 6.3952599999999995, 7.1025, 7.04752, 7.09008, 6.77992, 6.9256, 6.035480000000001, 7.22766, 7.475339999999999, 6.62007, 5.72031, 6.272880000000001, 6.01616, 6.27099, 7.91936, 6.2146099999999995, 6.85646, 6.354369999999999, 6.2634, 6.51471, 6.92166, 6.253830000000001, 5.9269300000000005, 6.745239999999999, 6.30992, 7.3651800000000005, 6.24998, 6.893660000000001, 6.53669, 6.43615, 7.04752, 6.30992, 6.39693, 6.1334, 6.765039999999999, 6.85646, 6.892639999999999, 6.95655, 5.99146, 6.43775, 6.90575, 6.81124, 6.966019999999999, 6.8865300000000005, 6.62007, 7.334980000000001, 6.72743, 6.93245, 7.27031, 7.03878, 7.0255399999999995, 6.83518, 6.77992, 6.68461, 7.696210000000001, 6.53669, 6.52942, 6.126869999999999, 6.54965, 6.715380000000001, 7.31122, 5.8693, 6.90575, 6.0282800000000005, 6.30992, 6.23245, 6.31536, 7.486610000000001, 6.52942, 6.8426800000000005, 6.14204, 6.88755, 6.62007, 6.34564, 6.44413, 6.62007, 5.99146, 6.93245, 7.37776, 6.907760000000001, 5.99146, 7.18917, 6.7093, 6.75926, 6.3315, 6.5439099999999994, 6.1717, 7.9459100000000005, 6.77422, 7.424760000000001, 6.45362, 5.70378, 6.43775, 6.90575, 7.6009, 6.90575, 7.46737, 6.694560000000001, 6.907760000000001, 8.16052, 6.98008, 6.984719999999999, 6.802389999999999, 5.99146, 6.802389999999999, 7.32647, 7.1309, 5.96101, 6.62007, 6.84055, 6.58617, 7.1309, 7.00307, 7.78322, 6.62007, 5.7525699999999995, 6.62407, 6.795710000000001, 7.212289999999999, 6.05209, 6.38856, 6.93925, 6.47697, 6.8773, 6.354369999999999, 7.9724699999999995, 7.64969, 6.703189999999999, 6.658010000000001, 6.47697, 6.50429, 6.58617, 6.893660000000001, 6.51471, 6.06611, 6.68461, 6.65544, 7.331060000000001, 6.64118, 6.47697, 7.475910000000001, 6.72743, 7.20786, 6.81124, 7.0201899999999995, 7.279319999999999, 8.02027, 6.80461, 5.99645, 7.10906, 6.40523, 6.77422, 7.01571, 6.54822, 6.14204, 6.57786, 6.47697, 7.24423, 5.93225, 5.9269300000000005, 7.46737, 6.69084, 6.47697, 6.85646, 6.88755, 7.24423, 6.2634, 6.95655, 6.67077, 6.85646, 7.313219999999999, 6.98008, 6.75577, 6.566669999999999, 7.09008, 6.697030000000001, 5.78383, 6.79794, 6.2634, 6.61874, 6.64118, 7.1309, 6.98101, 6.90575, 5.90263, 6.17794, 6.77422, 6.96035, 6.6515699999999995, 6.35957, 6.829789999999999, 6.66568, 7.09008, 6.10925, 6.85646, 6.90575, 6.95655, 6.126869999999999, 7.1309, 6.4552, 6.58617, 7.23778, 6.66568, 6.21261, 6.57925, 6.907760000000001, 6.802389999999999, 6.88755, 7.08171, 6.6567300000000005, 7.696210000000001, 6.68461, 6.43775, 6.802389999999999, 6.6592899999999995, 5.4161, 6.48311, 6.408530000000001, 6.84055, 7.17778, 6.2634, 6.4892, 6.62007, 6.95177, 6.785589999999999, 7.033510000000001, 7.1107, 6.57647, 6.85646, 6.23637, 6.530880000000001, 6.43775, 6.90575, 6.30992, 6.85646, 6.62007, 6.04025, 6.79122, 6.30992, 6.62007, 5.76832, 6.81014, 6.551080000000001, 6.56526, 6.551080000000001, 7.09008, 6.86693, 6.9613, 6.7901, 6.95655, 6.65286, 5.9814099999999994, 6.28227, 7.46737, 7.18007, 7.46737, 6.90575, 6.52209, 7.37776, 6.90575, 5.99146, 7.46737, 5.99146, 6.18826, 6.4552, 6.59987, 7.346010000000001, 6.68461, 7.6009, 7.14913, 7.27031, 6.317159999999999, 6.72503, 5.8861, 5.99146, 6.62007, 6.6871100000000006, 7.17012, 6.802389999999999, 5.93754, 6.995769999999999, 6.802389999999999, 6.52356, 6.55251, 6.56526, 6.72383, 7.09008, 6.68461, 6.52209, 7.313219999999999, 6.94698, 6.561030000000001, 6.907760000000001, 7.71869, 5.96615, 7.143619999999999, 6.41673, 6.907760000000001, 6.29157, 6.354369999999999, 7.00307, 6.802389999999999, 6.90375, 6.1944099999999995, 7.09008, 6.90575, 6.47697, 7.26193, 6.60665, 6.424869999999999, 6.745239999999999, 7.37776, 6.13773, 6.882439999999999, 6.907760000000001, 6.858569999999999, 6.745239999999999, 7.495539999999999, 7.1546199999999995, 6.68461, 6.2804, 6.6592899999999995, 6.77422, 6.893660000000001, 6.86693, 7.408530000000001, 6.72743, 6.42972, 6.633319999999999, 7.0579, 6.68461, 7.185389999999999, 7.26543, 7.05099, 6.10925, 6.60123, 7.233460000000001, 6.90575, 6.77194, 6.6567300000000005, 6.3243599999999995, 6.55393, 6.90575, 6.10925, 6.9613, 6.90575, 6.907760000000001, 6.90975, 7.64969, 7.1309, 6.745239999999999, 5.99146, 6.354369999999999, 5.4161, 6.55536, 6.02102, 6.7334, 6.47697, 6.47697, 6.53669, 6.95655, 6.551080000000001, 6.16331, 7.6009, 6.90575, 7.17242, 6.3421199999999995, 6.9196800000000005, 6.51471, 7.24423, 6.85646, 6.551080000000001, 6.86693, 6.35611, 6.90575, 6.34914, 7.696210000000001, 7.17012, 6.802389999999999, 6.253830000000001, 6.90575, 6.48464, 6.49224, 6.82763, 6.90575, 7.014810000000001, 6.2634, 7.04752, 6.90575, 7.20786, 7.02997, 7.803839999999999, 6.31355, 6.89467, 6.829789999999999, 7.17012, 7.54961, 7.28207, 6.69084, 7.1929300000000005, 6.33328, 5.84354, 6.85646, 6.912739999999999, 6.80017, 6.97635, 6.2653, 6.07535, 7.1309, 7.17012, 6.59715, 7.0884100000000005, 6.77992, 7.16627, 6.19644, 6.39693, 5.9814099999999994, 6.90575, 6.90575, 6.6958, 5.01728, 7.279319999999999, 7.136480000000001, 6.608, 6.68461, 7.9831, 6.9828600000000005, 6.30992, 6.2146099999999995, 7.09506, 6.44572, 6.2634, 6.90575, 6.90575, 7.08339, 5.96615, 6.9622399999999995, 7.11233, 6.912739999999999, 6.68461, 6.85646, 6.8254600000000005, 7.346010000000001, 6.68085, 7.24423, 6.8426800000000005, 6.62007, 6.1070199999999994, 6.33328, 6.15698, 6.893660000000001, 6.43775, 6.30262, 6.253830000000001, 7.30317, 6.829789999999999, 6.56808, 6.36303, 7.20786, 6.752269999999999, 6.95655, 6.02102, 6.633319999999999, 6.2634, 7.183110000000001, 6.907760000000001, 6.6174, 7.43838, 6.45047, 6.9707300000000005, 6.3952599999999995, 7.09008, 6.49979, 6.94986, 7.06902, 6.68461, 7.22766, 6.68461, 7.1309, 6.975410000000001, 6.2672, 6.50279, 6.551080000000001, 6.59987, 6.7334, 6.16331, 6.2146099999999995, 6.95655, 6.694560000000001, 6.44572, 6.6783399999999995, 7.408530000000001, 7.09008, 6.614730000000001, 6.72743, 6.17379, 7.03615, 6.05209, 6.6280399999999995, 6.83518, 7.09008, 6.63857, 6.17794, 6.551080000000001, 6.30992, 7.07834, 6.39693, 6.57228, 7.346010000000001, 6.938280000000001, 6.715380000000001, 6.7511, 6.715380000000001, 6.58617, 5.59842, 6.3935900000000006, 7.26193, 6.49072, 6.829789999999999, 6.745239999999999, 6.721430000000001, 6.59715, 6.00389, 6.9828600000000005, 6.62007, 6.85646, 7.04752, 6.23441, 6.551080000000001, 6.63726, 6.14633, 6.563860000000001, 6.73102, 6.2634, 6.3243599999999995, 6.721430000000001, 6.6796, 7.062189999999999, 6.10925, 7.313219999999999, 6.34564, 6.561030000000001, 6.17379, 7.06987, 6.87626, 6.505780000000001, 6.745239999999999, 6.966019999999999, 6.4488900000000005, 7.1309, 6.68461, 6.575080000000001, 6.40192, 6.70073, 6.56808, 6.7334, 6.30992, 7.0775, 6.6796, 6.8384100000000005, 7.03615, 6.85751, 6.745239999999999, 7.313219999999999, 6.86693, 7.08171, 6.85646, 6.47697, 6.47697, 6.28972, 7.46737, 7.2724, 6.61874, 6.30079, 7.0255399999999995, 6.27099, 6.90575, 6.34564, 6.9828600000000005, 7.450080000000001, 6.224559999999999, 6.551080000000001, 6.551080000000001, 6.23441, 6.77422, 7.1309, 6.52209, 7.49332, 6.39192, 6.739339999999999, 7.4832399999999994, 6.16331, 6.68461, 6.90575, 6.715380000000001, 6.90575, 7.1309, 6.86171, 6.715380000000001, 5.70378, 6.551080000000001, 6.802389999999999, 6.33683, 6.9187, 7.0579, 6.35611, 7.02376, 5.4161, 5.5797300000000005, 6.90575, 6.82655, 6.90575, 5.9269300000000005, 7.42833, 5.87212, 6.463030000000001, 7.52833, 6.86797, 6.95655, 6.60665, 6.90575, 6.4677, 7.3651800000000005, 6.748760000000001, 6.77992, 6.975410000000001, 7.43838, 7.82405, 6.5439099999999994, 6.42162, 6.8844899999999996, 7.16085, 6.52209, 6.04025, 5.52146, 6.90575, 7.00307, 6.907760000000001, 6.817830000000001, 7.279319999999999, 6.907760000000001, 7.54961, 7.323169999999999, 6.90575, 6.41017, 6.90575, 6.787839999999999, 6.62007, 7.0967199999999995, 5.9269300000000005, 6.55393, 7.0255399999999995, 6.17379, 7.00307, 7.31122, 7.31122, 6.31355, 6.44572, 6.59578, 6.47697, 7.226210000000001, 6.62007, 6.69332, 6.7511, 6.77422, 7.09008, 5.8579300000000005, 7.183110000000001, 7.728860000000001, 6.54965, 7.04752, 7.25488, 6.9256, 6.907760000000001, 5.65249, 7.041410000000001, 6.4599, 6.96035, 7.1333, 6.99942, 6.38012, 7.200419999999999, 7.18007, 7.1309, 6.461469999999999, 6.85646, 7.17012, 7.03527, 6.19848, 6.62007, 7.313219999999999, 6.907760000000001, 6.90575, 6.05209, 7.1452, 6.02102, 5.82895, 6.33683, 6.04025, 6.2146099999999995, 7.8935699999999995, 6.34564, 6.64249, 6.8977, 6.3699, 6.6567300000000005, 6.813439999999999, 6.53669, 6.90575, 6.47697, 6.05209, 7.21524, 6.551080000000001, 6.66568, 6.57925, 6.2146099999999995, 6.8426800000000005, 6.907760000000001, 6.90575, 7.106610000000001, 6.424869999999999, 6.65415, 6.86693, 6.745239999999999, 6.88346, 6.53669, 6.3207699999999996, 7.696210000000001, 7.64779, 7.313219999999999, 6.95655, 5.95584, 6.715380000000001, 6.44254, 6.8966899999999995, 6.61338, 6.8426800000000005, 6.23245, 6.95655, 6.768489999999999, 7.3981699999999995, 6.68461, 7.12287, 6.813439999999999, 6.752269999999999, 6.551080000000001, 6.86066, 6.7334, 6.318969999999999, 6.79122, 5.95324, 6.745239999999999, 7.1309, 6.54103, 7.06048, 6.24222, 6.68461, 6.9177100000000005, 6.05209, 6.78672, 7.09008, 7.1309, 6.47697, 7.1025, 5.9814099999999994, 7.24423, 6.44254, 7.451239999999999, 7.198180000000001, 7.27101, 7.245660000000001, 6.51471, 7.279319999999999, 6.85646, 7.279319999999999, 7.67322, 6.76273, 6.82437, 6.47697, 6.885510000000001, 7.07918, 7.279319999999999, 7.1309, 6.966019999999999, 6.73102, 6.633319999999999, 7.00307, 5.940169999999999, 7.6009, 6.907760000000001, 6.32615, 6.508769999999999, 6.551080000000001, 7.0884100000000005, 6.829789999999999, 7.31986, 6.21661, 7.11802, 6.77422, 7.26193, 6.90575, 7.17012, 7.00307, 5.99146, 7.46737, 6.57786, 6.3081, 6.90575, 6.311730000000001, 6.39693, 6.95655, 6.62007, 6.3952599999999995, 7.04752, 6.48311, 6.50429, 6.39693, 6.90575, 6.60665, 6.90575, 6.318969999999999, 6.802389999999999, 6.70441, 6.51471, 6.77992, 6.68461, 6.29157, 6.40523, 6.18826, 7.24423, 6.83518, 7.09008, 7.84502, 7.1624, 6.813439999999999, 6.907760000000001, 6.68461, 6.14633, 7.17012, 6.53814, 6.2146099999999995, 6.882439999999999, 6.36647, 6.47697, 7.54697, 6.60665, 6.68461, 7.408530000000001, 7.2724, 6.46614, 6.90575, 6.95655, 5.7462, 6.36303, 7.20786, 7.04752, 7.04316, 6.551080000000001, 6.58064, 6.17379, 6.83195, 6.8533, 5.70378, 7.20786, 6.62007, 6.95655, 6.90575, 6.34564, 7.09008, 7.014810000000001, 6.73815, 6.65028, 7.03878, 6.10032, 7.266830000000001, 6.95655, 6.58617, 7.20786, 6.68461, 6.602589999999999, 6.551080000000001, 6.87626, 5.16479, 7.54961, 6.551080000000001, 6.84055, 6.49224, 6.58893, 5.2983199999999995, 6.60665, 6.907760000000001, 7.64969, 6.9177100000000005, 6.18415, 6.68461, 7.43838, 6.66441, 6.551080000000001, 5.99146, 6.41182, 6.43775, 6.10925, 6.43775, 6.4599, 7.00307, 5.99146, 6.852239999999999, 6.51175, 6.5439099999999994, 6.6515699999999995, 7.522939999999999, 6.16331, 6.551080000000001, 6.907760000000001, 7.04752, 6.44572, 6.3243599999999995, 6.41346, 6.551080000000001, 6.802389999999999, 6.62007, 6.5439099999999994, 6.57925, 6.38012, 6.4151, 6.52209, 6.29157, 6.2146099999999995, 6.97167, 6.75926, 6.73102, 6.66823, 7.37776, 7.1309, 6.90575, 6.10925, 7.408530000000001, 6.39693, 6.04025, 7.0396600000000005, 7.09589, 7.10003, 6.73102, 6.87523, 6.90575, 7.20786, 7.173960000000001, 6.90575, 6.47389, 6.99026, 7.0884100000000005, 6.206580000000001, 6.56526, 6.44572, 6.802389999999999, 6.551080000000001, 6.53379, 6.90575, 6.46614, 6.61338, 6.90575, 6.85646, 6.47389, 6.10925, 6.99118, 6.2441699999999996, 7.1592899999999995, 6.697030000000001, 6.90575, 6.59987, 7.01571, 6.42162, 6.716589999999999, 6.85646, 7.46737, 6.58617, 6.95655, 6.29157, 6.907760000000001, 6.46459, 6.62007, 6.95177, 6.58617, 6.50129, 6.2952699999999995, 6.85646, 6.15698, 6.90575, 7.6009, 7.00307, 6.17379, 6.15273, 7.01392, 6.62007, 7.346010000000001, 6.90575, 6.68461, 6.50429, 7.24423, 7.0942300000000005, 5.78383, 6.54535, 6.3716099999999996, 7.86327, 6.62007, 7.09008, 6.703189999999999, 6.354369999999999, 6.53233, 6.58617, 7.46737, 6.9622399999999995, 6.39693, 6.38012, 6.802389999999999, 6.43935, 7.044910000000001, 6.42162, 6.90575, 6.802389999999999, 6.44413, 7.127689999999999, 6.45677, 6.40192, 6.55393, 6.593039999999999, 7.06902, 6.59987, 6.802389999999999, 6.715380000000001, 6.715380000000001, 6.39693, 6.57786, 6.68461, 7.00307, 6.42972, 6.85435, 6.58893, 6.937310000000001, 6.2106, 6.708080000000001, 6.0845, 6.907760000000001, 6.16331, 6.43775, 6.2146099999999995, 6.2441699999999996, 6.74406, 6.85646, 6.73221, 5.72031, 6.13123, 7.54961, 6.37673, 6.90575, 6.62007, 6.768489999999999, 6.63595, 5.82895, 6.90575, 6.75577, 6.77194, 6.77422, 6.99485, 6.58617, 5.8999, 6.2146099999999995, 6.2146099999999995, 6.6567300000000005, 6.62007, 6.9489, 7.354360000000001, 7.279319999999999, 5.8861, 6.6592899999999995, 7.06305, 6.61338, 7.00307, 6.49224, 6.84588, 6.35611, 6.35611, 6.8977, 7.20786, 6.90575, 7.59287, 7.1309, 7.393260000000001, 6.95655, 6.834110000000001, 6.07993, 7.10988, 6.802389999999999, 6.224559999999999, 6.57925, 6.927560000000001, 6.90575, 7.09008, 7.1309, 6.90575, 6.907760000000001, 6.16542, 6.62007, 7.6009, 6.963189999999999, 6.95655, 6.90575, 6.90575, 6.796819999999999, 6.66568, 6.907760000000001, 6.8533, 6.813439999999999, 7.196689999999999, 6.43615, 6.9147300000000005, 6.551080000000001, 6.77194, 6.90575, 6.90575, 6.66823, 6.47697, 7.0255399999999995, 7.522939999999999, 6.62007, 6.354369999999999, 7.1546199999999995, 6.90575, 6.551080000000001, 5.78383, 6.753439999999999, 6.77422, 7.313219999999999, 6.967910000000001, 6.816739999999999, 7.6009, 6.745239999999999, 6.51471, 7.37588, 6.86485, 6.41346, 6.7093, 6.551080000000001, 6.22654, 7.24423, 6.06146, 6.16331, 7.05359, 6.86171, 6.58617, 7.1309, 6.77422, 7.93737, 6.39693, 6.58617, 7.67322, 6.551080000000001, 6.2146099999999995, 6.77422, 6.2634, 6.99485, 6.45047, 6.66185, 6.94119, 6.90575, 7.21891, 7.57558, 7.495539999999999, 6.10925, 6.59715, 7.09008, 6.03787, 6.556780000000001, 6.354369999999999, 7.6009, 6.83303, 6.551080000000001, 7.279319999999999, 6.354369999999999, 7.925160000000001, 6.77422, 7.183110000000001, 6.1136800000000004, 6.77992, 6.62007, 7.00307, 7.86327, 6.70073, 6.795710000000001, 7.1309, 6.32794, 6.16121, 5.6801699999999995, 6.65286, 6.802389999999999, 6.715380000000001, 6.95655, 6.78333, 6.90575, 6.67582, 6.47697, 6.907760000000001, 6.90575, 6.53233, 6.882439999999999, 7.0255399999999995, 6.23048, 6.715380000000001, 7.872839999999999, 6.49072, 6.90575, 6.4892, 6.63726, 6.12249, 6.3613, 6.79122, 6.53233, 6.05209, 6.907760000000001, 6.697030000000001, 6.8742, 6.08677, 6.6280399999999995, 6.907760000000001, 6.05209, 5.70378, 7.02997, 6.715380000000001, 6.2146099999999995, 6.90575, 7.313219999999999, 6.3699, 6.07074, 6.77992, 6.54822, 6.62007, 6.59987, 6.62007, 6.8966899999999995, 6.802389999999999, 6.7226300000000005, 6.07993, 6.51026, 6.907760000000001, 6.50429, 6.47697, 6.58617, 6.77422, 6.8977, 5.9135, 6.17379, 8.047189999999999, 6.93537, 6.2146099999999995, 6.507280000000001, 7.46737, 5.82895, 7.034389999999999, 6.7569300000000005, 7.2998, 6.95655, 6.17794, 6.68461, 7.495539999999999, 6.62007, 6.88755, 6.45205, 6.802389999999999, 6.32794, 6.68461, 8.03916, 6.829789999999999, 6.6745600000000005, 6.714169999999999, 6.43775, 5.4161, 7.00307, 6.43455, 6.90575, 7.346660000000001, 6.9256, 7.6009, 7.10988, 7.24423, 6.7569300000000005, 6.48004, 6.889589999999999, 7.313219999999999, 6.9256, 6.59167, 6.57786, 6.53669, 6.39693, 6.33328, 6.33328, 7.313219999999999, 6.551080000000001, 7.408530000000001, 6.802389999999999, 7.3908, 6.90575, 6.9256, 6.95655, 6.13123, 6.551080000000001, 7.06561, 6.57925, 6.90575, 6.73102, 7.09008, 6.566669999999999, 6.9966800000000005, 6.43775, 6.62007, 6.68461, 6.424869999999999, 6.646389999999999, 6.2146099999999995, 6.802389999999999, 6.90575, 6.9613, 5.70378, 6.78672, 6.65286, 7.24423, 7.09008, 6.602589999999999, 6.42162, 7.0422899999999995, 7.034389999999999, 6.59987, 6.44572, 6.20456, 6.57925, 6.38012, 6.16331, 7.43838, 6.818919999999999, 6.551080000000001, 6.53669, 6.95655, 5.76832, 7.2100800000000005, 6.48311, 6.507280000000001, 6.45362, 6.765039999999999, 6.2634, 6.2691, 7.18917, 6.2146099999999995, 6.802389999999999, 6.50129, 6.2634, 7.38647, 6.96885, 6.10925, 7.196689999999999, 6.3403599999999996, 6.818919999999999, 6.72623, 6.90575, 7.04752, 6.7569300000000005, 6.62936, 7.09008, 6.62007, 5.9839400000000005, 6.95655, 7.49332, 6.62007, 6.31355, 6.62007, 6.753439999999999, 6.77422, 6.2653, 7.495539999999999, 6.7334, 6.95655, 6.56526, 6.88755, 7.47307, 6.47697, 6.90575, 6.90575, 7.909860000000001, 6.69084, 6.3716099999999996, 6.52209, 7.106610000000001, 6.40523, 6.69084, 5.627619999999999, 6.6567300000000005, 6.68461, 6.697030000000001, 6.22654, 7.740660000000001, 6.907760000000001, 6.43775, 6.43775, 6.813439999999999, 5.76832, 6.9256, 7.64969, 6.47697, 6.10925, 7.1309, 5.89715, 6.907760000000001, 6.745239999999999, 6.43775, 6.85646, 6.77422, 6.768489999999999, 7.029089999999999, 6.62007, 7.06133, 7.24423, 6.95177, 7.54961, 6.354369999999999, 6.87626, 6.318969999999999, 6.570880000000001, 6.62007, 7.61332, 7.09008, 6.7511, 6.8977, 6.551080000000001, 7.40914, 7.034389999999999, 6.49072, 6.30992, 5.70378, 6.55393, 6.72743, 6.05209, 7.0967199999999995, 6.90575, 6.551080000000001, 6.907760000000001, 6.785589999999999, 6.39693, 6.05209, 6.90575, 6.697030000000001, 6.814539999999999, 6.639880000000001, 6.62007, 7.24423, 6.77194, 6.551080000000001, 6.802389999999999, 5.8999, 6.57228, 7.062189999999999, 6.47697, 6.2441699999999996, 6.829789999999999, 6.95655, 6.907760000000001, 6.38012, 7.293019999999999, 6.91175, 6.68461, 6.45834, 6.556780000000001, 6.5582, 6.91175, 6.45362, 7.1309, 6.8773, 6.955589999999999, 7.80588, 6.9613, 5.4161, 6.907760000000001, 6.90575, 7.18992, 7.507689999999999, 6.90575, 6.385190000000001, 7.31122, 6.6107, 6.807930000000001, 6.79794, 6.1717, 6.16331, 6.6592899999999995, 7.0483899999999995, 6.598510000000001, 5.5797300000000005, 7.6009, 6.09131, 7.106610000000001, 6.90575, 7.66153, 7.22548, 6.48768, 6.87213, 7.17012, 6.23245, 6.39693, 6.4677, 7.35244, 7.183110000000001, 6.56948, 8.00637, 7.05272, 6.33328, 6.90575, 6.802389999999999, 6.30992, 6.551080000000001, 6.10925, 6.77422, 6.30992, 7.522939999999999, 6.49979, 6.802389999999999, 7.05704, 7.16858, 6.802389999999999, 6.58617, 6.551080000000001, 7.20564, 6.551080000000001, 7.1507, 6.852239999999999, 7.6009, 6.70564, 5.7525699999999995, 6.90575, 6.802389999999999, 6.11147, 6.95655, 6.84375, 6.95655, 6.8977, 7.34923, 6.93245, 6.34564, 6.79122, 7.03878, 7.400010000000001, 5.8579300000000005, 7.37588, 6.83195, 7.00307, 6.84162, 6.354369999999999, 6.93342, 6.608, 6.85646, 6.61607, 6.056780000000001, 6.90575, 6.697030000000001, 6.5395900000000005, 6.6120399999999995, 6.63726, 7.1309, 6.739339999999999, 7.86327, 6.55393, 6.47697, 6.7511, 6.907760000000001, 6.05912, 6.54535, 6.551080000000001, 7.00307, 6.51471, 6.57925, 6.66823, 7.71869, 5.52146, 7.1309, 6.551080000000001, 6.44572, 7.00307, 6.253830000000001, 7.401839999999999, 5.99146, 7.2724, 6.907760000000001, 6.90575, 6.3315, 6.3699, 6.39693, 7.82405, 6.95655, 6.09582, 6.07535, 6.90575, 6.8426800000000005, 7.0518600000000005, 6.993930000000001, 6.907760000000001, 6.79122, 6.7511, 6.2146099999999995, 6.78897, 6.67203, 7.259119999999999, 7.6811, 6.745239999999999, 7.27031, 6.721430000000001, 6.90575, 6.563860000000001, 6.99485, 7.37776, 7.06048, 7.6009, 6.30992, 6.84375, 7.0282, 6.66696, 6.90575, 6.47235, 6.56244, 8.0229, 6.90575, 6.6592899999999995, 6.80351, 6.92658, 6.4892, 6.28227, 7.06902, 6.08677, 5.958419999999999, 7.1309, 5.68698, 6.62007, 6.33683, 6.984719999999999, 6.753439999999999, 6.354369999999999, 6.52209, 6.52209, 7.362010000000001, 6.8200199999999995, 6.73102, 6.39693, 6.8773, 6.507280000000001, 7.313219999999999, 6.81014, 6.802389999999999, 6.49072, 7.46737, 6.82437, 6.745239999999999, 6.11147, 6.2634, 7.181589999999999, 6.551080000000001, 7.05618, 6.29157, 7.2998, 5.86079, 6.51619, 6.56948, 6.937310000000001, 5.83188, 6.9256, 6.90575, 6.10925, 6.39693, 7.09008, 6.82437, 6.753439999999999, 6.966019999999999, 6.802389999999999, 7.239210000000001, 6.5582, 6.907760000000001, 6.98008, 6.62407, 5.70378, 6.551080000000001, 6.41673, 7.313219999999999, 6.62007, 6.84588, 6.95655, 6.42162, 6.68461, 6.715380000000001, 6.85646, 6.57786, 5.8579300000000005, 6.2146099999999995, 7.313219999999999, 7.37776, 6.07993, 6.30992, 7.1309, 6.69084, 6.70564, 5.7462, 6.16752, 7.279319999999999, 6.73102, 6.53669, 6.24222, 7.03527, 7.04752, 6.507280000000001, 6.93049, 6.59715, 7.09008, 6.45047, 6.33328, 6.68461, 6.62007, 6.6592899999999995, 6.90575, 7.04752, 6.30992, 7.43838, 6.6346300000000005, 6.59167, 6.1181, 6.41836, 7.2724, 6.56526, 6.90575, 7.91936, 6.54103, 6.90575, 7.57558, 6.20456, 6.802389999999999, 6.899719999999999, 7.484369999999999, 6.90575, 6.51471, 5.7462, 6.39693, 6.94698, 7.084230000000001, 6.96885, 6.907760000000001, 7.00307, 7.293019999999999, 7.173189999999999, 6.77422, 6.815639999999999, 6.43294, 6.813439999999999, 6.90575, 6.88857, 6.90575, 7.09008, 6.90575, 7.226210000000001, 5.76832, 5.70378, 7.279319999999999, 6.05912, 6.68461, 6.6592899999999995, 7.91936, 6.507280000000001, 7.00307, 6.47697, 6.551080000000001, 6.90575, 6.2146099999999995, 6.907760000000001, 6.715380000000001, 6.96885, 6.68461, 6.57368, 6.745239999999999, 6.53669, 5.76832, 6.2146099999999995, 6.8426800000000005, 7.520230000000001, 5.5797300000000005, 6.51323, 7.1082399999999994, 6.5582, 7.17012, 6.768489999999999, 6.39693, 7.393260000000001, 6.6958, 6.39693, 6.95177, 6.2146099999999995, 7.09008, 6.5582, 7.09008, 6.9613, 6.4892, 7.676010000000001, 6.715380000000001, 5.70378, 6.907760000000001, 6.3935900000000006, 7.54961, 6.86171, 5.79606, 6.83087, 6.6783399999999995, 6.54535, 6.593039999999999, 6.77422, 6.44572, 7.04752, 6.3716099999999996, 7.37776, 7.17012, 6.8426800000000005, 7.00307, 6.126869999999999, 6.50129, 6.8773, 6.56526, 6.354369999999999, 6.96885, 6.575080000000001, 6.62007, 6.42811, 6.752269999999999, 6.90575, 6.78672, 7.1309, 8.12089, 6.829789999999999, 7.00307, 6.2146099999999995, 6.1944099999999995, 7.740660000000001, 6.551080000000001, 6.907760000000001, 6.2146099999999995, 6.96979, 6.68461, 7.14283, 6.139880000000001, 7.1293, 6.89467, 5.43808, 6.621410000000001, 7.183110000000001, 6.5467900000000006, 6.34388, 6.39024, 7.0255399999999995, 6.424869999999999, 6.68461, 6.49979, 7.37776, 6.7901, 6.17379, 6.4488900000000005, 6.614730000000001, 6.802389999999999, 6.60665, 7.09008, 6.51323, 6.93245, 6.6592899999999995, 6.30992, 6.30992, 6.7226300000000005, 7.37776, 6.09807, 6.8977, 6.35784, 6.37502, 6.57925, 7.7021, 7.46737, 7.6009, 7.36455, 6.59715, 6.639880000000001, 6.36303, 5.82895, 6.59715, 6.62007, 6.551080000000001, 7.09008, 6.78333, 6.563860000000001, 7.0076, 6.880380000000001, 6.745239999999999, 6.82437, 6.4677, 7.127689999999999, 7.1309, 6.62007, 7.82084, 7.288930000000001, 6.72743, 6.39693, 6.68461, 7.10988, 6.563860000000001, 6.354369999999999, 6.7546, 7.196689999999999, 5.99146, 6.74052, 7.24423, 6.67203, 6.86485, 7.1309, 7.6009, 6.6107, 7.24423, 6.9256, 7.11314, 6.86693, 6.85118, 6.58617, 6.85646, 5.70378, 6.2146099999999995, 6.92363, 5.67675, 6.84588, 6.86171, 6.813439999999999, 6.62936, 6.50279, 5.7589, 6.7417, 7.18917, 6.2146099999999995, 6.93245, 6.78897, 6.74759, 7.00307, 6.3935900000000006, 7.09008, 7.84385, 6.802389999999999, 6.57647, 6.78672, 6.39693, 6.9707300000000005, 8.3082, 7.1309, 7.17012, 6.593039999999999, 6.90575, 6.62007, 6.86693, 6.259580000000001, 6.41999, 6.90575, 5.52146, 6.907760000000001, 7.43838, 6.64509, 7.09008, 6.39693, 7.0255399999999995, 7.903969999999999, 6.745239999999999, 6.80461, 7.037030000000001, 7.04752, 6.08904, 6.47697, 6.65286, 6.76388, 6.90575, 6.802389999999999, 6.87626, 6.90575, 7.1507, 7.07834, 7.21082, 6.52942, 6.701960000000001, 6.8426800000000005, 6.3207699999999996, 6.69827, 6.24611, 6.57786, 6.18826, 6.975410000000001, 7.16085, 6.30992, 6.83303, 7.61874, 6.48158, 5.99146, 6.44095, 6.99485, 6.907760000000001, 6.8384100000000005, 6.79122, 6.551080000000001, 6.6695, 7.279319999999999, 6.57925, 6.813439999999999, 6.30992, 6.68461, 6.47389, 6.802389999999999, 6.785589999999999, 6.45362, 7.313219999999999, 6.551080000000001, 7.29097, 5.8861, 6.98008, 6.802389999999999, 7.20786, 6.802389999999999, 6.983789999999999, 6.75926, 6.68461, 6.55962, 6.8977, 6.05912, 6.90575, 7.4570300000000005, 7.1309, 6.566669999999999, 6.829789999999999, 6.85646, 6.643789999999999, 6.77422, 7.90101, 6.32794, 6.25767, 7.81883, 6.966019999999999, 6.33328, 6.2146099999999995, 6.77422, 6.8384100000000005, 6.62007, 6.813439999999999, 6.551080000000001, 6.920669999999999, 7.195189999999999, 6.62007, 6.745239999999999, 6.3315, 6.69332, 6.745239999999999, 6.90575, 7.0396600000000005, 6.90575, 5.8260000000000005, 6.07535, 6.30992, 6.96885, 6.47697, 6.39693, 7.24423, 7.12367, 7.17012, 6.60394, 6.18415, 6.68461, 6.44413, 6.4677, 6.72623, 6.2146099999999995, 6.47697, 6.907760000000001, 6.4552, 7.1546199999999995, 7.37776, 7.18917, 6.10925, 6.5903, 7.136480000000001, 5.95584, 7.03878, 6.461469999999999, 6.697030000000001, 5.9839400000000005, 6.66568, 6.2146099999999995, 6.56526, 6.51471, 5.61677, 6.49375, 7.06048, 6.715380000000001, 6.10925, 6.95655, 7.1309, 6.95655, 6.90575, 6.76273, 6.311730000000001, 7.1507, 7.00307, 6.29157, 6.86693, 6.68461, 6.90575, 6.95655, 7.17012, 7.0255399999999995, 6.86171, 7.495539999999999, 6.49224, 6.90575, 6.8865300000000005, 7.57353, 6.602589999999999, 6.85646, 6.30992, 6.23048, 6.5467900000000006, 6.530880000000001, 6.802389999999999, 7.6009, 6.55962, 6.46459, 6.834110000000001, 7.313219999999999, 6.802389999999999, 6.7334, 6.66441, 7.251339999999999, 5.87774, 6.802389999999999, 7.43838, 6.35957, 6.43775, 6.5820300000000005, 6.768489999999999, 7.17012, 6.68461, 5.6733199999999995, 6.90575, 7.281389999999999, 7.17702, 6.90575, 6.95845, 6.44572, 6.583410000000001, 6.91672, 6.90575, 8.229510000000001, 7.027310000000001, 6.551080000000001, 6.84055, 7.136480000000001, 6.71174, 6.787839999999999, 6.74288, 7.0934, 7.200419999999999, 6.83087, 7.37776, 6.79122, 6.67203, 6.55393, 6.39693, 7.46737, 6.802389999999999, 7.165489999999999, 6.62007, 6.90575, 7.0255399999999995, 7.70661, 6.47389, 6.35957, 6.07535, 6.907760000000001, 7.1107, 6.593039999999999, 6.30992, 7.20786, 6.43775, 6.556780000000001, 6.83518, 6.77878, 6.966019999999999, 6.95273, 6.3716099999999996, 6.43133, 6.907760000000001, 6.68461, 6.64898, 6.28972, 7.00307, 6.2146099999999995, 6.66058, 6.967910000000001, 7.016610000000001, 6.68461, 7.09008, 6.85646, 6.90575, 5.66988, 7.09008, 6.53379, 6.84801, 6.90575, 5.99146, 7.21891, 6.90575, 6.745239999999999, 7.07242, 7.6009, 6.817830000000001, 6.23637, 7.346010000000001, 6.6592899999999995, 7.46737, 6.975410000000001, 6.79122, 6.719010000000001, 6.720219999999999, 6.90575, 6.90575, 6.68336, 6.892639999999999, 6.86485, 6.947939999999999, 6.955589999999999, 6.90575, 5.78383, 6.551080000000001, 5.66988, 7.0255399999999995, 7.04752, 6.3935900000000006, 6.807930000000001, 6.74288, 6.802389999999999, 6.4599, 6.354369999999999, 6.18208, 7.398789999999999, 7.37776, 7.35883, 6.47697, 7.18463, 6.745239999999999, 7.05876, 6.694560000000001, 6.84588, 6.68461, 7.64969, 6.59578, 7.027310000000001, 6.715380000000001, 6.04025, 5.84644, 6.2146099999999995, 6.507280000000001, 6.23441, 7.098380000000001, 6.2804, 7.6256, 6.633319999999999, 6.6346300000000005, 7.195189999999999, 6.43455, 6.52649, 6.49527, 6.51915, 7.54961, 7.09008, 7.00307, 6.36475, 5.7462, 6.77422, 6.10925, 6.73459, 7.1293, 6.49224, 6.28413, 7.17012, 6.90575, 6.6515699999999995, 6.56948, 6.80461, 6.03787, 7.313219999999999, 6.11589, 6.68461, 6.72743, 7.09008, 5.96615, 8.26873, 6.17794, 6.3935900000000006, 7.12287, 6.43775, 5.95324, 6.6796, 6.758089999999999, 6.68461, 5.70378, 6.90575, 7.495539999999999, 6.84588, 6.745239999999999, 6.21261, 7.251339999999999, 6.10032, 8.048789999999999, 7.313219999999999, 6.802389999999999, 6.745239999999999, 6.907760000000001, 6.90575, 5.82305, 6.90575, 7.17012, 6.2441699999999996, 8.08641, 5.59842, 7.08171, 6.9594, 6.97354, 7.30653, 6.55962, 6.58617, 6.74406, 7.56008, 6.1944099999999995, 7.408530000000001, 6.61338, 6.01616, 6.32794, 7.18007, 6.74052, 6.95655, 6.58617, 6.66568, 6.85646, 6.44572, 7.313219999999999, 7.1309, 5.99146, 6.18826, 5.59842, 6.49224, 6.821110000000001, 6.56526, 6.47697, 6.813439999999999, 7.43838, 7.2717, 6.30262, 6.38351, 6.551080000000001, 5.45959, 6.43775, 6.90575, 6.53233, 6.61874, 6.06843, 6.1203, 7.88231, 6.90575, 6.7569300000000005, 5.7651900000000005, 6.938280000000001, 7.08255, 6.41346, 6.882439999999999, 7.37776, 6.44413, 6.90575, 6.51471, 7.2998, 6.5439099999999994, 6.551080000000001, 6.90575, 7.35372, 7.135689999999999, 7.46737, 6.63595, 6.802389999999999, 7.346010000000001, 6.90575, 6.86693, 7.1309, 5.78383, 6.829789999999999, 6.65286, 6.7334, 7.2998, 6.65415, 6.9256, 6.90575, 6.39693, 6.52209, 6.3699, 6.770789999999999, 6.39693, 6.49072, 6.02345, 7.32251, 6.13123, 6.29711, 7.04752, 6.799060000000001, 6.272880000000001, 6.354369999999999, 6.49527, 6.57925, 6.697030000000001, 5.52146, 6.703189999999999, 7.04752, 6.65286, 6.752269999999999, 6.2146099999999995, 6.42162, 6.90575, 7.014810000000001, 6.62007, 6.85646, 6.745239999999999, 6.9256, 6.58617, 6.51471, 5.96615, 6.90575, 6.52942, 6.16331, 6.56526, 6.813439999999999, 7.09008, 5.8141300000000005, 6.49979, 6.769639999999999, 6.08677, 6.7369699999999995, 7.064760000000001, 6.01616, 7.11883, 6.48158, 6.51175, 7.46737, 6.57228, 6.551080000000001, 7.67322, 6.35957, 6.907760000000001, 6.58617, 7.1309, 6.57925, 6.43294, 6.39693, 7.46737, 6.95655, 6.54247, 6.3716099999999996, 7.293019999999999, 6.08677, 7.64969, 6.95655, 8.13153, 6.3613, 6.10925, 6.551080000000001, 6.907760000000001, 6.97261, 6.907760000000001, 6.43775, 6.3243599999999995, 6.83518, 6.993930000000001, 6.6567300000000005, 6.984719999999999, 7.062189999999999, 6.907760000000001, 6.77992, 7.195189999999999, 7.185389999999999, 6.07993, 6.01616, 6.72743, 6.33683, 6.70073, 7.20786, 7.0103100000000005, 6.551080000000001, 7.1309, 6.7334, 7.495539999999999, 6.24028, 6.354369999999999, 6.90575, 6.551080000000001, 7.00307, 6.85013, 7.0255399999999995, 6.39693, 7.495539999999999, 6.768489999999999, 6.23441, 6.461469999999999, 6.5395900000000005, 6.907760000000001, 6.05209, 6.28413, 6.126869999999999, 7.12287, 6.745239999999999, 7.21744, 6.39693, 6.49072, 6.47697, 6.05209, 7.24423, 6.802389999999999, 7.09008, 6.44572, 7.00307, 6.966019999999999, 6.721430000000001, 6.62936, 6.813439999999999, 6.28227, 7.64969, 6.9575, 7.3696, 6.461469999999999, 6.90575, 7.20786, 6.78333, 6.57647, 6.5903, 7.00307, 6.74993, 6.57925, 6.907760000000001, 7.18917, 6.16331, 6.59578, 6.802389999999999, 6.272880000000001, 7.014810000000001, 6.2146099999999995, 6.43615, 6.64509, 6.608, 6.68461, 6.58617, 6.62007, 6.19032, 7.00307, 6.95655, 6.12249, 6.62007, 7.313219999999999, 7.09008, 6.83303, 6.98101, 6.6871100000000006, 7.09008, 6.81014, 7.37776, 6.51767, 6.85435, 7.64969, 7.91936, 6.907760000000001, 6.9256, 6.6733, 7.5574699999999995, 6.13773, 6.67203, 6.30992, 6.47697, 6.8956800000000005, 6.56948, 6.33328, 6.802389999999999, 6.9707300000000005, 8.00637, 6.65286, 6.57368, 5.70711, 6.57786, 6.92363, 6.57368, 7.37776, 6.2146099999999995, 7.408530000000001, 7.1155800000000005, 7.91936, 7.09008, 7.37776, 7.1309, 6.58617, 6.14633, 6.6592899999999995, 6.90575, 7.092569999999999, 6.86485, 7.57558, 7.200419999999999, 6.95655, 6.2146099999999995, 6.05209, 6.44254, 6.35957, 5.72031, 6.4599, 6.60394, 6.51471, 6.975410000000001, 6.39693, 7.400010000000001, 8.537, 6.07993, 7.36645, 6.67708, 6.99942, 6.61338, 7.64969, 6.68461, 6.57925, 7.09008, 7.1082399999999994, 6.83518, 7.09008, 6.58617, 6.90575, 6.43615, 6.84162, 7.313219999999999, 6.55962, 6.07993, 6.3952599999999995, 6.633319999999999, 6.42162, 7.09008, 6.13123, 7.313219999999999, 6.30992, 6.79122, 6.720219999999999, 6.66823, 7.2861899999999995, 6.802389999999999, 6.703189999999999, 5.98896, 7.620710000000001, 6.0822199999999995, 6.77878, 7.09008, 7.6009, 6.28972, 6.48768, 6.68461, 6.41182, 7.37776, 7.525639999999999, 6.74993, 6.72623, 7.09008, 7.25347, 7.585789999999999, 6.45362, 6.354369999999999, 6.984719999999999, 6.90575, 6.937310000000001, 6.907760000000001, 7.0775, 7.346010000000001, 7.027310000000001, 6.907760000000001, 6.9489, 6.907760000000001, 7.495539999999999, 6.01127, 6.802389999999999, 6.745239999999999, 6.58617, 6.90575, 6.633319999999999, 6.80572, 6.2480400000000005, 6.2634, 6.31355, 7.35819, 6.49677, 6.68461, 6.633319999999999, 7.30317, 6.95655, 6.907760000000001, 5.742999999999999, 6.39693, 7.313219999999999, 6.90575, 7.09008, 6.47697, 7.196689999999999, 6.47697, 6.30262, 6.745239999999999, 7.07412, 6.354369999999999, 6.10925, 6.68461, 7.42357, 6.768489999999999, 6.95655, 6.715380000000001, 6.9828600000000005, 7.02465, 6.49224, 6.49979, 6.27099, 5.8861, 7.393260000000001, 6.829789999999999, 6.32794, 6.28786, 5.9839400000000005, 6.68461, 5.84354, 6.62007, 7.12287, 6.2146099999999995, 6.84162, 7.00307, 6.2146099999999995, 6.983789999999999, 6.35611, 6.17379, 6.95655, 6.39693, 6.88755, 7.04316, 6.90575, 6.84162, 6.45362, 6.83518, 6.85646, 6.46925, 5.99146, 6.62007, 7.00307, 5.99146, 6.22654, 6.633319999999999, 6.77308, 7.1107, 6.95655, 6.967910000000001, 6.995769999999999, 6.66568, 6.594410000000001, 6.90575, 6.5439099999999994, 6.62007, 6.60665, 7.04752, 7.062189999999999, 7.313219999999999, 7.04752, 7.0884100000000005, 6.937310000000001, 6.90575, 6.23441, 6.25767, 6.2146099999999995, 6.551080000000001, 6.90575, 7.09008, 6.68461, 6.2146099999999995, 6.386880000000001, 6.44413, 6.58617, 6.10925, 6.90073, 6.745239999999999, 7.2233, 6.8773, 6.813439999999999, 7.037030000000001, 6.40523, 6.2146099999999995, 6.17379, 7.6009, 6.30992, 6.685860000000001, 6.38856, 6.47697, 7.46737, 6.551080000000001, 6.9226399999999995, 6.87213, 6.73102, 6.30992, 7.45298, 5.72359, 7.1309, 6.882439999999999, 5.940169999999999, 6.90675, 6.551080000000001, 6.9147300000000005, 6.85646, 6.563860000000001, 6.381819999999999, 5.78996, 6.769639999999999, 6.73102, 7.06133, 6.68461, 6.2146099999999995, 6.912739999999999, 6.4708, 6.2634, 7.08171, 6.90575, 7.6009, 6.52062, 6.907760000000001, 6.60935, 6.51471, 6.9828600000000005, 6.85646, 6.30992, 7.338889999999999, 6.22654, 6.84055, 6.311730000000001, 7.01392, 6.49224, 6.2205900000000005, 7.44659, 7.388330000000001, 6.85118, 7.24423, 6.632000000000001, 6.90575, 7.10906, 6.944089999999999, 6.83518, 6.222580000000001, 6.84588, 7.17012, 6.52503, 6.2860000000000005, 6.80128, 6.07993 ], "y0": "M/F" }, { "box": { "visible": false }, "fillcolor": "rgba(0, 0, 0, 0)", "hoverinfo": "x", "hoveron": "points", "jitter": 0.3, "legendgroup": "male", "line": { "color": "rgba(0, 0, 0, 0)", "width": 0 }, "marker": { "color": "hsla(328, 70%, 70%,1)", "line": { "color": "hsla(328, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "triangle-down" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": -0.6, "points": "all", "scalegroup": "male", "showlegend": false, "side": "negative", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.99942, 5.99146, 7.67322, 7.09008, 5.61677, 6.646389999999999, 7.02643, 6.4552, 7.32975, 6.95845, 7.06902, 6.04025, 6.907760000000001, 7.91936, 6.745239999999999, 6.30079, 7.068169999999999, 6.07535, 6.7417, 7.71869, 6.882439999999999, 6.47697, 6.77878, 6.907760000000001, 6.93342, 7.06902, 6.57368, 6.829789999999999, 7.557989999999999, 6.892639999999999, 7.0255399999999995, 6.57925, 7.313219999999999, 6.47697, 7.1309, 6.551080000000001, 6.882439999999999, 6.907760000000001, 6.682110000000001, 6.39693, 6.48004, 6.60665, 7.00307, 6.10925, 5.78383, 6.94505, 6.9546399999999995, 7.17012, 7.11477, 6.993930000000001, 6.593039999999999, 6.49979, 6.5439099999999994, 6.39192, 6.51471, 6.30992, 6.30992, 7.116389999999999, 6.46925, 7.554860000000001, 6.90675, 6.85646, 5.94803, 6.90575, 6.90575, 7.408530000000001, 7.0076, 6.88857, 7.35947, 6.39693, 7.041410000000001, 6.66696, 6.30992, 7.313219999999999, 6.787839999999999, 6.90575, 6.802389999999999, 7.00307, 7.074960000000001, 7.5606, 5.99146, 6.16331, 5.94803, 6.43775, 7.282760000000001, 6.39693, 6.813439999999999, 6.694560000000001, 6.29157, 6.23048, 6.67203, 6.16331, 6.88755, 6.95655, 7.56008, 6.28227, 6.30992, 6.05912, 6.602589999999999, 7.47307, 6.2146099999999995, 6.95655, 6.90575, 6.461469999999999, 7.09008, 7.46737, 6.829789999999999, 6.60665, 6.74052, 6.745239999999999, 7.6009, 6.62007, 6.551080000000001, 6.663130000000001, 7.60589, 6.53669, 6.5582, 6.16121, 6.19236, 6.2146099999999995, 7.37776, 6.6995, 6.58617, 6.23832, 6.27476, 6.48311, 6.69084, 6.54965, 6.745239999999999, 6.882439999999999, 6.663130000000001, 5.70378, 6.7226300000000005, 7.20786, 6.802389999999999, 6.79122, 6.62007, 6.42162, 6.12249, 6.90575, 6.28227, 6.745239999999999, 6.206580000000001, 5.99146, 6.682110000000001, 6.49677, 7.408530000000001, 6.10925, 6.317159999999999, 6.2146099999999995, 6.551080000000001, 6.25575, 7.0884100000000005, 6.16331, 6.68461, 5.8999, 7.01392, 7.1107, 6.9363399999999995, 6.90575, 6.1070199999999994, 6.85646, 6.44572, 6.551080000000001, 6.84588, 8.10168, 7.31255, 5.99645, 6.90575, 6.802389999999999, 7.111510000000001, 6.2146099999999995, 6.66696, 6.907760000000001, 6.90575, 6.6592899999999995, 8.047189999999999, 6.62407, 7.0076, 6.30992, 6.17379, 6.55393, 6.24611, 7.78322, 6.563860000000001, 6.60665, 7.12448, 6.507280000000001, 6.461469999999999, 6.8977, 7.82405, 7.75148, 6.62407, 7.346010000000001, 6.2146099999999995, 7.1309, 6.51471, 5.96615, 6.84055, 7.041410000000001, 6.51471, 6.551080000000001, 7.346010000000001, 6.966019999999999, 6.90575, 7.17012, 6.5820300000000005, 7.04752, 6.354369999999999, 6.59578, 7.82405, 6.5467900000000006, 6.551080000000001, 6.39693, 6.88755, 6.39693, 6.39693, 6.65286, 6.36647, 6.622739999999999, 6.90575, 5.7525699999999995, 6.15273, 7.04752, 5.52146, 6.770789999999999, 6.907760000000001, 7.00125, 7.064760000000001, 7.00307, 6.05209, 6.745239999999999, 7.045780000000001, 6.54535, 6.37673, 6.62007, 6.907760000000001, 6.10925, 6.39693, 8.16052, 6.745239999999999, 7.03527, 6.765039999999999, 7.1309, 6.77422, 6.87213, 6.551080000000001, 6.907760000000001, 6.6567300000000005, 6.80017, 7.226210000000001, 6.10925, 6.90575, 6.70073, 7.495539999999999, 8.05516, 6.9256, 7.06987, 6.694560000000001, 6.90575, 6.43775, 6.97261, 7.29709, 7.179310000000001, 7.313219999999999, 6.7226300000000005, 6.82437, 6.715380000000001, 7.173189999999999, 6.62007, 6.77878, 6.7226300000000005, 6.85118, 6.49224, 7.313219999999999, 6.62007, 7.158510000000001, 6.818919999999999, 6.68461, 6.57647, 6.43455, 5.89715, 6.34564, 6.556780000000001, 6.7093, 6.93925, 7.00307, 6.551080000000001, 6.90575, 6.53669, 6.69084, 7.313219999999999, 6.05209, 6.90575, 6.62007, 6.4552, 6.77422, 6.87005, 6.65544, 6.42162, 5.9269300000000005, 6.317159999999999, 6.42972, 6.62007, 6.96508, 6.19236, 6.61607, 5.5606800000000005, 6.57368, 6.2634, 6.715380000000001, 7.408530000000001, 6.17379, 7.333019999999999, 6.37502, 6.16331, 6.317159999999999, 7.04752, 6.68461, 6.98008, 6.912739999999999, 6.86693, 7.3670800000000005, 6.68461, 6.90575, 6.90575, 6.62007, 6.45362, 6.49072, 6.47697, 6.9431199999999995, 6.90575, 6.10925, 6.67203, 6.7334, 7.34278, 6.802389999999999, 6.90575, 6.658010000000001, 6.9256, 6.90575, 6.91075, 6.6592899999999995, 5.8579300000000005, 6.6592899999999995, 6.16331, 7.441319999999999, 6.47851, 7.07834, 6.745239999999999, 7.20786, 6.36475, 6.63857, 7.475910000000001, 6.62007, 6.4892, 7.00307, 6.56948, 7.43838, 7.15383, 7.064760000000001, 6.88755, 7.26193, 6.23245, 6.30445, 6.715380000000001, 7.313219999999999, 7.37776, 5.8579300000000005, 6.85646, 6.2441699999999996, 7.26193, 6.90575, 6.907760000000001, 6.272880000000001, 6.66568, 7.481560000000001, 7.04752, 6.61338, 6.40688, 6.73815, 5.8579300000000005, 7.57558, 6.83518, 6.38856, 6.768489999999999, 6.90575, 6.86693, 6.39693, 6.34739, 7.1507, 6.58617, 7.282760000000001, 7.00307, 6.66058, 6.58064, 6.90575, 6.10925, 6.64249, 6.715380000000001 ], "y0": "M/F" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(328, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(328, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "male", "line": { "width": 0 }, "marker": { "color": "hsla(328, 50%, 50%,0.9)", "line": { "color": "hsla(328, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "triangle-down" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "male", "showlegend": false, "side": "negative", "span": [ 6.715560709099306, 6.743751581410066 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 6.99942, 5.99146, 7.67322, 7.09008, 5.61677, 6.646389999999999, 7.02643, 6.4552, 7.32975, 6.95845, 7.06902, 6.04025, 6.907760000000001, 7.91936, 6.745239999999999, 6.30079, 7.068169999999999, 6.07535, 6.7417, 7.71869, 6.882439999999999, 6.47697, 6.77878, 6.907760000000001, 6.93342, 7.06902, 6.57368, 6.829789999999999, 7.557989999999999, 6.892639999999999, 7.0255399999999995, 6.57925, 7.313219999999999, 6.47697, 7.1309, 6.551080000000001, 6.882439999999999, 6.907760000000001, 6.682110000000001, 6.39693, 6.48004, 6.60665, 7.00307, 6.10925, 5.78383, 6.94505, 6.9546399999999995, 7.17012, 7.11477, 6.993930000000001, 6.593039999999999, 6.49979, 6.5439099999999994, 6.39192, 6.51471, 6.30992, 6.30992, 7.116389999999999, 6.46925, 7.554860000000001, 6.90675, 6.85646, 5.94803, 6.90575, 6.90575, 7.408530000000001, 7.0076, 6.88857, 7.35947, 6.39693, 7.041410000000001, 6.66696, 6.30992, 7.313219999999999, 6.787839999999999, 6.90575, 6.802389999999999, 7.00307, 7.074960000000001, 7.5606, 5.99146, 6.16331, 5.94803, 6.43775, 7.282760000000001, 6.39693, 6.813439999999999, 6.694560000000001, 6.29157, 6.23048, 6.67203, 6.16331, 6.88755, 6.95655, 7.56008, 6.28227, 6.30992, 6.05912, 6.602589999999999, 7.47307, 6.2146099999999995, 6.95655, 6.90575, 6.461469999999999, 7.09008, 7.46737, 6.829789999999999, 6.60665, 6.74052, 6.745239999999999, 7.6009, 6.62007, 6.551080000000001, 6.663130000000001, 7.60589, 6.53669, 6.5582, 6.16121, 6.19236, 6.2146099999999995, 7.37776, 6.6995, 6.58617, 6.23832, 6.27476, 6.48311, 6.69084, 6.54965, 6.745239999999999, 6.882439999999999, 6.663130000000001, 5.70378, 6.7226300000000005, 7.20786, 6.802389999999999, 6.79122, 6.62007, 6.42162, 6.12249, 6.90575, 6.28227, 6.745239999999999, 6.206580000000001, 5.99146, 6.682110000000001, 6.49677, 7.408530000000001, 6.10925, 6.317159999999999, 6.2146099999999995, 6.551080000000001, 6.25575, 7.0884100000000005, 6.16331, 6.68461, 5.8999, 7.01392, 7.1107, 6.9363399999999995, 6.90575, 6.1070199999999994, 6.85646, 6.44572, 6.551080000000001, 6.84588, 8.10168, 7.31255, 5.99645, 6.90575, 6.802389999999999, 7.111510000000001, 6.2146099999999995, 6.66696, 6.907760000000001, 6.90575, 6.6592899999999995, 8.047189999999999, 6.62407, 7.0076, 6.30992, 6.17379, 6.55393, 6.24611, 7.78322, 6.563860000000001, 6.60665, 7.12448, 6.507280000000001, 6.461469999999999, 6.8977, 7.82405, 7.75148, 6.62407, 7.346010000000001, 6.2146099999999995, 7.1309, 6.51471, 5.96615, 6.84055, 7.041410000000001, 6.51471, 6.551080000000001, 7.346010000000001, 6.966019999999999, 6.90575, 7.17012, 6.5820300000000005, 7.04752, 6.354369999999999, 6.59578, 7.82405, 6.5467900000000006, 6.551080000000001, 6.39693, 6.88755, 6.39693, 6.39693, 6.65286, 6.36647, 6.622739999999999, 6.90575, 5.7525699999999995, 6.15273, 7.04752, 5.52146, 6.770789999999999, 6.907760000000001, 7.00125, 7.064760000000001, 7.00307, 6.05209, 6.745239999999999, 7.045780000000001, 6.54535, 6.37673, 6.62007, 6.907760000000001, 6.10925, 6.39693, 8.16052, 6.745239999999999, 7.03527, 6.765039999999999, 7.1309, 6.77422, 6.87213, 6.551080000000001, 6.907760000000001, 6.6567300000000005, 6.80017, 7.226210000000001, 6.10925, 6.90575, 6.70073, 7.495539999999999, 8.05516, 6.9256, 7.06987, 6.694560000000001, 6.90575, 6.43775, 6.97261, 7.29709, 7.179310000000001, 7.313219999999999, 6.7226300000000005, 6.82437, 6.715380000000001, 7.173189999999999, 6.62007, 6.77878, 6.7226300000000005, 6.85118, 6.49224, 7.313219999999999, 6.62007, 7.158510000000001, 6.818919999999999, 6.68461, 6.57647, 6.43455, 5.89715, 6.34564, 6.556780000000001, 6.7093, 6.93925, 7.00307, 6.551080000000001, 6.90575, 6.53669, 6.69084, 7.313219999999999, 6.05209, 6.90575, 6.62007, 6.4552, 6.77422, 6.87005, 6.65544, 6.42162, 5.9269300000000005, 6.317159999999999, 6.42972, 6.62007, 6.96508, 6.19236, 6.61607, 5.5606800000000005, 6.57368, 6.2634, 6.715380000000001, 7.408530000000001, 6.17379, 7.333019999999999, 6.37502, 6.16331, 6.317159999999999, 7.04752, 6.68461, 6.98008, 6.912739999999999, 6.86693, 7.3670800000000005, 6.68461, 6.90575, 6.90575, 6.62007, 6.45362, 6.49072, 6.47697, 6.9431199999999995, 6.90575, 6.10925, 6.67203, 6.7334, 7.34278, 6.802389999999999, 6.90575, 6.658010000000001, 6.9256, 6.90575, 6.91075, 6.6592899999999995, 5.8579300000000005, 6.6592899999999995, 6.16331, 7.441319999999999, 6.47851, 7.07834, 6.745239999999999, 7.20786, 6.36475, 6.63857, 7.475910000000001, 6.62007, 6.4892, 7.00307, 6.56948, 7.43838, 7.15383, 7.064760000000001, 6.88755, 7.26193, 6.23245, 6.30445, 6.715380000000001, 7.313219999999999, 7.37776, 5.8579300000000005, 6.85646, 6.2441699999999996, 7.26193, 6.90575, 6.907760000000001, 6.272880000000001, 6.66568, 7.481560000000001, 7.04752, 6.61338, 6.40688, 6.73815, 5.8579300000000005, 7.57558, 6.83518, 6.38856, 6.768489999999999, 6.90575, 6.86693, 6.39693, 6.34739, 7.1507, 6.58617, 7.282760000000001, 7.00307, 6.66058, 6.58064, 6.90575, 6.10925, 6.64249, 6.715380000000001, 6.62007, 7.1309, 6.51471, 5.99146, 6.95655, 6.65286, 6.16331, 6.24611, 7.1309, 7.1333, 7.24423, 6.04025, 6.86901, 6.802389999999999, 6.70073, 6.1203, 6.90575, 7.313219999999999, 6.54822, 6.95655, 7.50108, 6.39693, 6.551080000000001, 7.07918, 5.8579300000000005, 5.70378, 6.7369699999999995, 7.745, 6.87213, 5.89715, 6.39693, 6.30628, 6.8773, 6.708080000000001, 6.52942, 6.818919999999999, 7.041410000000001, 6.06611, 6.882439999999999, 6.94986, 6.703189999999999, 6.37502, 5.70378, 7.03615, 7.37776, 5.66988, 6.907760000000001, 6.882439999999999, 6.752269999999999, 6.48158, 6.47697, 7.04752, 6.802389999999999, 6.984719999999999, 5.9269300000000005, 6.49224, 6.385190000000001, 7.1309, 7.663880000000001, 7.07242, 6.907760000000001, 6.43775, 8.05516, 6.807930000000001, 6.785589999999999, 6.907760000000001, 6.403569999999999, 6.035480000000001, 7.24423, 6.05209, 7.338889999999999, 7.0255399999999995, 7.00307, 5.99146, 6.33683, 6.07993, 7.488289999999999, 6.51175, 5.7365699999999995, 5.7365699999999995, 6.90575, 6.697030000000001, 6.354369999999999, 6.802389999999999, 6.62007, 6.68461, 6.68835, 5.8260000000000005, 6.85646, 6.44572, 6.95655, 7.20786, 6.3716099999999996, 6.8977, 6.47697, 6.802389999999999, 6.90575, 6.84055, 7.676010000000001, 6.85646, 6.43775, 7.20786, 6.89163, 7.0121199999999995, 6.85646, 6.77422, 6.54965, 6.05209, 6.697030000000001, 6.90575, 6.68461, 6.62007, 7.24423, 6.36819, 6.8844899999999996, 6.62007, 6.745239999999999, 6.19236, 6.39693, 6.85646, 6.7334, 5.9269300000000005, 5.98896, 6.48004, 6.55393, 6.5903, 7.02643, 7.15305, 6.19236, 6.43615, 6.6871100000000006, 6.42162, 6.06379, 6.93537, 7.09008, 6.802389999999999, 6.47697, 6.2634, 7.79028, 6.10032, 6.0282800000000005, 7.408530000000001, 6.6174, 6.907760000000001, 6.90575, 5.99146, 6.2441699999999996, 6.00141, 6.39693, 6.79122, 6.9196800000000005, 6.9147300000000005, 6.90575, 6.408530000000001, 6.646389999999999, 6.746410000000001, 6.30992, 6.42972, 6.18826, 6.5467900000000006, 7.522939999999999, 6.7334, 6.07993, 6.907760000000001, 6.90575, 7.04752, 6.66185, 6.47697, 7.23418, 6.54247, 6.753439999999999, 6.51471, 7.034389999999999, 6.65286, 7.262630000000001, 6.47697, 7.20786, 6.90575, 6.30992, 6.984719999999999, 6.30445, 6.05209, 6.34564, 6.95655, 6.49224, 6.62007, 5.82895, 6.39693, 6.06146, 6.43775, 6.03787, 6.3952599999999995, 6.22654, 7.144410000000001, 6.90575, 6.91374, 5.70378, 7.6009, 6.5903, 7.1592899999999995, 6.57786, 6.6783399999999995, 6.72383, 6.41182, 6.53233, 6.907760000000001, 6.7334, 7.236339999999999, 6.20456, 6.10925, 6.715380000000001, 6.72743, 6.551080000000001, 7.084230000000001, 6.97635, 7.20786, 6.685860000000001, 6.8977, 7.00307, 6.35089, 5.70378, 6.59167, 6.461469999999999, 6.984719999999999, 6.53233, 6.646389999999999, 6.39693, 7.459910000000001, 6.19848, 7.0255399999999995, 7.1309, 6.745239999999999, 6.22654, 6.10925, 7.08171, 6.64249, 7.49332, 7.495539999999999, 7.1546199999999995, 7.1309, 6.745239999999999, 6.18415, 5.82895, 6.10925, 6.58617, 6.48158, 6.20456, 7.313219999999999, 6.94022, 6.90575, 6.41836, 6.10925, 7.48717, 7.0193, 6.983789999999999, 6.633319999999999, 6.29157, 7.49109, 6.91672, 6.90575, 6.51323, 6.715380000000001, 5.8141300000000005, 6.47697, 7.37212, 6.646389999999999, 7.0184, 6.84055, 7.24423, 6.834110000000001, 7.09008, 6.52942, 7.4553, 7.00307, 6.37502, 7.24423, 6.48158, 6.68461, 6.10925, 6.90575, 6.90575, 7.24423, 7.75577, 6.82437, 6.43775, 6.18415, 6.43775, 6.90575, 7.1107, 6.44572, 6.42162, 6.769639999999999, 6.93245, 6.818919999999999, 6.551080000000001, 6.58617, 6.96508, 6.44572, 6.7093, 6.83195, 6.28972, 7.1082399999999994, 7.135689999999999, 6.49072, 7.251339999999999, 8.51719, 6.807930000000001, 7.14756, 7.33368, 6.77422, 6.60394, 6.68461, 7.1309, 5.99146, 7.201169999999999, 5.99146, 6.10925, 6.68461, 6.39693, 6.927560000000001, 6.85751, 6.95655, 6.08677, 7.24423, 7.1309, 6.17587, 6.802389999999999, 6.30992, 6.36303, 5.8999, 6.77422, 6.2860000000000005, 6.828710000000001, 6.47697, 6.72743, 6.55251, 6.29157, 5.59842, 6.62407, 5.9814099999999994, 6.76273, 7.06902, 5.9269300000000005, 6.80128, 7.313219999999999, 6.966019999999999, 6.6592899999999995, 6.39693, 6.57786, 6.62007, 6.65286, 6.293419999999999, 5.4161, 5.87493, 6.79122, 6.987489999999999, 6.30992, 6.55536, 7.09008, 6.2146099999999995, 7.04752, 6.90575, 6.10925, 6.6783399999999995, 6.39693, 7.259119999999999, 7.43838, 6.47697, 7.1309, 6.77422, 6.2634, 6.739339999999999, 7.46737, 6.47697, 6.90575, 7.279319999999999, 6.815639999999999, 7.1309, 6.65028, 6.27099, 7.17012, 6.354369999999999, 6.29157, 6.802389999999999, 6.602589999999999, 6.47697, 6.63857, 6.58755, 6.77422, 6.907760000000001, 7.09589, 6.882439999999999, 5.45959, 6.05209, 7.67322, 6.85646, 5.8579300000000005, 5.78074, 6.2146099999999995, 7.2957399999999994, 5.84354, 6.802389999999999, 6.58064, 6.2634, 7.00307, 6.90575, 7.21891, 7.503839999999999, 6.45677, 6.950810000000001, 5.97126, 6.23048, 6.15273, 7.57558, 6.96035, 6.3716099999999996, 6.2146099999999995, 6.7334, 6.86066, 6.378430000000001, 6.48004, 7.00307, 6.8200199999999995, 6.47697, 6.90575, 7.39388, 7.4787300000000005, 6.2146099999999995, 6.802389999999999, 6.43775, 7.24065, 5.70378, 6.13773, 6.3952599999999995, 7.1025, 7.04752, 7.09008, 6.77992, 6.9256, 6.035480000000001, 7.22766, 7.475339999999999, 6.62007, 5.72031, 6.272880000000001, 6.01616, 6.27099, 7.91936, 6.2146099999999995, 6.85646, 6.354369999999999, 6.2634, 6.51471, 6.92166, 6.253830000000001, 5.9269300000000005, 6.745239999999999, 6.30992, 7.3651800000000005, 6.24998, 6.893660000000001, 6.53669, 6.43615, 7.04752, 6.30992, 6.39693, 6.1334, 6.765039999999999, 6.85646, 6.892639999999999, 6.95655, 5.99146, 6.43775, 6.90575, 6.81124, 6.966019999999999, 6.8865300000000005, 6.62007, 7.334980000000001, 6.72743, 6.93245, 7.27031, 7.03878, 7.0255399999999995, 6.83518, 6.77992, 6.68461, 7.696210000000001, 6.53669, 6.52942, 6.126869999999999, 6.54965, 6.715380000000001, 7.31122, 5.8693, 6.90575, 6.0282800000000005, 6.30992, 6.23245, 6.31536, 7.486610000000001, 6.52942, 6.8426800000000005, 6.14204, 6.88755, 6.62007, 6.34564, 6.44413, 6.62007, 5.99146, 6.93245, 7.37776, 6.907760000000001, 5.99146, 7.18917, 6.7093, 6.75926, 6.3315, 6.5439099999999994, 6.1717, 7.9459100000000005, 6.77422, 7.424760000000001, 6.45362, 5.70378, 6.43775, 6.90575, 7.6009, 6.90575, 7.46737, 6.694560000000001, 6.907760000000001, 8.16052, 6.98008, 6.984719999999999, 6.802389999999999, 5.99146, 6.802389999999999, 7.32647, 7.1309, 5.96101, 6.62007, 6.84055, 6.58617, 7.1309, 7.00307, 7.78322, 6.62007, 5.7525699999999995, 6.62407, 6.795710000000001, 7.212289999999999, 6.05209, 6.38856, 6.93925, 6.47697, 6.8773, 6.354369999999999, 7.9724699999999995, 7.64969, 6.703189999999999, 6.658010000000001, 6.47697, 6.50429, 6.58617, 6.893660000000001, 6.51471, 6.06611, 6.68461, 6.65544, 7.331060000000001, 6.64118, 6.47697, 7.475910000000001, 6.72743, 7.20786, 6.81124, 7.0201899999999995, 7.279319999999999, 8.02027, 6.80461, 5.99645, 7.10906, 6.40523, 6.77422, 7.01571, 6.54822, 6.14204, 6.57786, 6.47697, 7.24423, 5.93225, 5.9269300000000005, 7.46737, 6.69084, 6.47697, 6.85646, 6.88755, 7.24423, 6.2634, 6.95655, 6.67077, 6.85646, 7.313219999999999, 6.98008, 6.75577, 6.566669999999999, 7.09008, 6.697030000000001, 5.78383, 6.79794, 6.2634, 6.61874, 6.64118, 7.1309, 6.98101, 6.90575, 5.90263, 6.17794, 6.77422, 6.96035, 6.6515699999999995, 6.35957, 6.829789999999999, 6.66568, 7.09008, 6.10925, 6.85646, 6.90575, 6.95655, 6.126869999999999, 7.1309, 6.4552, 6.58617, 7.23778, 6.66568, 6.21261, 6.57925, 6.907760000000001, 6.802389999999999, 6.88755, 7.08171, 6.6567300000000005, 7.696210000000001, 6.68461, 6.43775, 6.802389999999999, 6.6592899999999995, 5.4161, 6.48311, 6.408530000000001, 6.84055, 7.17778, 6.2634, 6.4892, 6.62007, 6.95177, 6.785589999999999, 7.033510000000001, 7.1107, 6.57647, 6.85646, 6.23637, 6.530880000000001, 6.43775, 6.90575, 6.30992, 6.85646, 6.62007, 6.04025, 6.79122, 6.30992, 6.62007, 5.76832, 6.81014, 6.551080000000001, 6.56526, 6.551080000000001, 7.09008, 6.86693, 6.9613, 6.7901, 6.95655, 6.65286, 5.9814099999999994, 6.28227, 7.46737, 7.18007, 7.46737, 6.90575, 6.52209, 7.37776, 6.90575, 5.99146, 7.46737, 5.99146, 6.18826, 6.4552, 6.59987, 7.346010000000001, 6.68461, 7.6009, 7.14913, 7.27031, 6.317159999999999, 6.72503, 5.8861, 5.99146, 6.62007, 6.6871100000000006, 7.17012, 6.802389999999999, 5.93754, 6.995769999999999, 6.802389999999999, 6.52356, 6.55251, 6.56526, 6.72383, 7.09008, 6.68461, 6.52209, 7.313219999999999, 6.94698, 6.561030000000001, 6.907760000000001, 7.71869, 5.96615, 7.143619999999999, 6.41673, 6.907760000000001, 6.29157, 6.354369999999999, 7.00307, 6.802389999999999, 6.90375, 6.1944099999999995, 7.09008, 6.90575, 6.47697, 7.26193, 6.60665, 6.424869999999999, 6.745239999999999, 7.37776, 6.13773, 6.882439999999999, 6.907760000000001, 6.858569999999999, 6.745239999999999, 7.495539999999999, 7.1546199999999995, 6.68461, 6.2804, 6.6592899999999995, 6.77422, 6.893660000000001, 6.86693, 7.408530000000001, 6.72743, 6.42972, 6.633319999999999, 7.0579, 6.68461, 7.185389999999999, 7.26543, 7.05099, 6.10925, 6.60123, 7.233460000000001, 6.90575, 6.77194, 6.6567300000000005, 6.3243599999999995, 6.55393, 6.90575, 6.10925, 6.9613, 6.90575, 6.907760000000001, 6.90975, 7.64969, 7.1309, 6.745239999999999, 5.99146, 6.354369999999999, 5.4161, 6.55536, 6.02102, 6.7334, 6.47697, 6.47697, 6.53669, 6.95655, 6.551080000000001, 6.16331, 7.6009, 6.90575, 7.17242, 6.3421199999999995, 6.9196800000000005, 6.51471, 7.24423, 6.85646, 6.551080000000001, 6.86693, 6.35611, 6.90575, 6.34914, 7.696210000000001, 7.17012, 6.802389999999999, 6.253830000000001, 6.90575, 6.48464, 6.49224, 6.82763, 6.90575, 7.014810000000001, 6.2634, 7.04752, 6.90575, 7.20786, 7.02997, 7.803839999999999, 6.31355, 6.89467, 6.829789999999999, 7.17012, 7.54961, 7.28207, 6.69084, 7.1929300000000005, 6.33328, 5.84354, 6.85646, 6.912739999999999, 6.80017, 6.97635, 6.2653, 6.07535, 7.1309, 7.17012, 6.59715, 7.0884100000000005, 6.77992, 7.16627, 6.19644, 6.39693, 5.9814099999999994, 6.90575, 6.90575, 6.6958, 5.01728, 7.279319999999999, 7.136480000000001, 6.608, 6.68461, 7.9831, 6.9828600000000005, 6.30992, 6.2146099999999995, 7.09506, 6.44572, 6.2634, 6.90575, 6.90575, 7.08339, 5.96615, 6.9622399999999995, 7.11233, 6.912739999999999, 6.68461, 6.85646, 6.8254600000000005, 7.346010000000001, 6.68085, 7.24423, 6.8426800000000005, 6.62007, 6.1070199999999994, 6.33328, 6.15698, 6.893660000000001, 6.43775, 6.30262, 6.253830000000001, 7.30317, 6.829789999999999, 6.56808, 6.36303, 7.20786, 6.752269999999999, 6.95655, 6.02102, 6.633319999999999, 6.2634, 7.183110000000001, 6.907760000000001, 6.6174, 7.43838, 6.45047, 6.9707300000000005, 6.3952599999999995, 7.09008, 6.49979, 6.94986, 7.06902, 6.68461, 7.22766, 6.68461, 7.1309, 6.975410000000001, 6.2672, 6.50279, 6.551080000000001, 6.59987, 6.7334, 6.16331, 6.2146099999999995, 6.95655, 6.694560000000001, 6.44572, 6.6783399999999995, 7.408530000000001, 7.09008, 6.614730000000001, 6.72743, 6.17379, 7.03615, 6.05209, 6.6280399999999995, 6.83518, 7.09008, 6.63857, 6.17794, 6.551080000000001, 6.30992, 7.07834, 6.39693, 6.57228, 7.346010000000001, 6.938280000000001, 6.715380000000001, 6.7511, 6.715380000000001, 6.58617, 5.59842, 6.3935900000000006, 7.26193, 6.49072, 6.829789999999999, 6.745239999999999, 6.721430000000001, 6.59715, 6.00389, 6.9828600000000005, 6.62007, 6.85646, 7.04752, 6.23441, 6.551080000000001, 6.63726, 6.14633, 6.563860000000001, 6.73102, 6.2634, 6.3243599999999995, 6.721430000000001, 6.6796, 7.062189999999999, 6.10925, 7.313219999999999, 6.34564, 6.561030000000001, 6.17379, 7.06987, 6.87626, 6.505780000000001, 6.745239999999999, 6.966019999999999, 6.4488900000000005, 7.1309, 6.68461, 6.575080000000001, 6.40192, 6.70073, 6.56808, 6.7334, 6.30992, 7.0775, 6.6796, 6.8384100000000005, 7.03615, 6.85751, 6.745239999999999, 7.313219999999999, 6.86693, 7.08171, 6.85646, 6.47697, 6.47697, 6.28972, 7.46737, 7.2724, 6.61874, 6.30079, 7.0255399999999995, 6.27099, 6.90575, 6.34564, 6.9828600000000005, 7.450080000000001, 6.224559999999999, 6.551080000000001, 6.551080000000001, 6.23441, 6.77422, 7.1309, 6.52209, 7.49332, 6.39192, 6.739339999999999, 7.4832399999999994, 6.16331, 6.68461, 6.90575, 6.715380000000001, 6.90575, 7.1309, 6.86171, 6.715380000000001, 5.70378, 6.551080000000001, 6.802389999999999, 6.33683, 6.9187, 7.0579, 6.35611, 7.02376, 5.4161, 5.5797300000000005, 6.90575, 6.82655, 6.90575, 5.9269300000000005, 7.42833, 5.87212, 6.463030000000001, 7.52833, 6.86797, 6.95655, 6.60665, 6.90575, 6.4677, 7.3651800000000005, 6.748760000000001, 6.77992, 6.975410000000001, 7.43838, 7.82405, 6.5439099999999994, 6.42162, 6.8844899999999996, 7.16085, 6.52209, 6.04025, 5.52146, 6.90575, 7.00307, 6.907760000000001, 6.817830000000001, 7.279319999999999, 6.907760000000001, 7.54961, 7.323169999999999, 6.90575, 6.41017, 6.90575, 6.787839999999999, 6.62007, 7.0967199999999995, 5.9269300000000005, 6.55393, 7.0255399999999995, 6.17379, 7.00307, 7.31122, 7.31122, 6.31355, 6.44572, 6.59578, 6.47697, 7.226210000000001, 6.62007, 6.69332, 6.7511, 6.77422, 7.09008, 5.8579300000000005, 7.183110000000001, 7.728860000000001, 6.54965, 7.04752, 7.25488, 6.9256, 6.907760000000001, 5.65249, 7.041410000000001, 6.4599, 6.96035, 7.1333, 6.99942, 6.38012, 7.200419999999999, 7.18007, 7.1309, 6.461469999999999, 6.85646, 7.17012, 7.03527, 6.19848, 6.62007, 7.313219999999999, 6.907760000000001, 6.90575, 6.05209, 7.1452, 6.02102, 5.82895, 6.33683, 6.04025, 6.2146099999999995, 7.8935699999999995, 6.34564, 6.64249, 6.8977, 6.3699, 6.6567300000000005, 6.813439999999999, 6.53669, 6.90575, 6.47697, 6.05209, 7.21524, 6.551080000000001, 6.66568, 6.57925, 6.2146099999999995, 6.8426800000000005, 6.907760000000001, 6.90575, 7.106610000000001, 6.424869999999999, 6.65415, 6.86693, 6.745239999999999, 6.88346, 6.53669, 6.3207699999999996, 7.696210000000001, 7.64779, 7.313219999999999, 6.95655, 5.95584, 6.715380000000001, 6.44254, 6.8966899999999995, 6.61338, 6.8426800000000005, 6.23245, 6.95655, 6.768489999999999, 7.3981699999999995, 6.68461, 7.12287, 6.813439999999999, 6.752269999999999, 6.551080000000001, 6.86066, 6.7334, 6.318969999999999, 6.79122, 5.95324, 6.745239999999999, 7.1309, 6.54103, 7.06048, 6.24222, 6.68461, 6.9177100000000005, 6.05209, 6.78672, 7.09008, 7.1309, 6.47697, 7.1025, 5.9814099999999994, 7.24423, 6.44254, 7.451239999999999, 7.198180000000001, 7.27101, 7.245660000000001, 6.51471, 7.279319999999999, 6.85646, 7.279319999999999, 7.67322, 6.76273, 6.82437, 6.47697, 6.885510000000001, 7.07918, 7.279319999999999, 7.1309, 6.966019999999999, 6.73102, 6.633319999999999, 7.00307, 5.940169999999999, 7.6009, 6.907760000000001, 6.32615, 6.508769999999999, 6.551080000000001, 7.0884100000000005, 6.829789999999999, 7.31986, 6.21661, 7.11802, 6.77422, 7.26193, 6.90575, 7.17012, 7.00307, 5.99146, 7.46737, 6.57786, 6.3081, 6.90575, 6.311730000000001, 6.39693, 6.95655, 6.62007, 6.3952599999999995, 7.04752, 6.48311, 6.50429, 6.39693, 6.90575, 6.60665, 6.90575, 6.318969999999999, 6.802389999999999, 6.70441, 6.51471, 6.77992, 6.68461, 6.29157, 6.40523, 6.18826, 7.24423, 6.83518, 7.09008, 7.84502, 7.1624, 6.813439999999999, 6.907760000000001, 6.68461, 6.14633, 7.17012, 6.53814, 6.2146099999999995, 6.882439999999999, 6.36647, 6.47697, 7.54697, 6.60665, 6.68461, 7.408530000000001, 7.2724, 6.46614, 6.90575, 6.95655, 5.7462, 6.36303, 7.20786, 7.04752, 7.04316, 6.551080000000001, 6.58064, 6.17379, 6.83195, 6.8533, 5.70378, 7.20786, 6.62007, 6.95655, 6.90575, 6.34564, 7.09008, 7.014810000000001, 6.73815, 6.65028, 7.03878, 6.10032, 7.266830000000001, 6.95655, 6.58617, 7.20786, 6.68461, 6.602589999999999, 6.551080000000001, 6.87626, 5.16479, 7.54961, 6.551080000000001, 6.84055, 6.49224, 6.58893, 5.2983199999999995, 6.60665, 6.907760000000001, 7.64969, 6.9177100000000005, 6.18415, 6.68461, 7.43838, 6.66441, 6.551080000000001, 5.99146, 6.41182, 6.43775, 6.10925, 6.43775, 6.4599, 7.00307, 5.99146, 6.852239999999999, 6.51175, 6.5439099999999994, 6.6515699999999995, 7.522939999999999, 6.16331, 6.551080000000001, 6.907760000000001, 7.04752, 6.44572, 6.3243599999999995, 6.41346, 6.551080000000001, 6.802389999999999, 6.62007, 6.5439099999999994, 6.57925, 6.38012, 6.4151, 6.52209, 6.29157, 6.2146099999999995, 6.97167, 6.75926, 6.73102, 6.66823, 7.37776, 7.1309, 6.90575, 6.10925, 7.408530000000001, 6.39693, 6.04025, 7.0396600000000005, 7.09589, 7.10003, 6.73102, 6.87523, 6.90575, 7.20786, 7.173960000000001, 6.90575, 6.47389, 6.99026, 7.0884100000000005, 6.206580000000001, 6.56526, 6.44572, 6.802389999999999, 6.551080000000001, 6.53379, 6.90575, 6.46614, 6.61338, 6.90575, 6.85646, 6.47389, 6.10925, 6.99118, 6.2441699999999996, 7.1592899999999995, 6.697030000000001, 6.90575, 6.59987, 7.01571, 6.42162, 6.716589999999999, 6.85646, 7.46737, 6.58617, 6.95655, 6.29157, 6.907760000000001, 6.46459, 6.62007, 6.95177, 6.58617, 6.50129, 6.2952699999999995, 6.85646, 6.15698, 6.90575, 7.6009, 7.00307, 6.17379, 6.15273, 7.01392, 6.62007, 7.346010000000001, 6.90575, 6.68461, 6.50429, 7.24423, 7.0942300000000005, 5.78383, 6.54535, 6.3716099999999996, 7.86327, 6.62007, 7.09008, 6.703189999999999, 6.354369999999999, 6.53233, 6.58617, 7.46737, 6.9622399999999995, 6.39693, 6.38012, 6.802389999999999, 6.43935, 7.044910000000001, 6.42162, 6.90575, 6.802389999999999, 6.44413, 7.127689999999999, 6.45677, 6.40192, 6.55393, 6.593039999999999, 7.06902, 6.59987, 6.802389999999999, 6.715380000000001, 6.715380000000001, 6.39693, 6.57786, 6.68461, 7.00307, 6.42972, 6.85435, 6.58893, 6.937310000000001, 6.2106, 6.708080000000001, 6.0845, 6.907760000000001, 6.16331, 6.43775, 6.2146099999999995, 6.2441699999999996, 6.74406, 6.85646, 6.73221, 5.72031, 6.13123, 7.54961, 6.37673, 6.90575, 6.62007, 6.768489999999999, 6.63595, 5.82895, 6.90575, 6.75577, 6.77194, 6.77422, 6.99485, 6.58617, 5.8999, 6.2146099999999995, 6.2146099999999995, 6.6567300000000005, 6.62007, 6.9489, 7.354360000000001, 7.279319999999999, 5.8861, 6.6592899999999995, 7.06305, 6.61338, 7.00307, 6.49224, 6.84588, 6.35611, 6.35611, 6.8977, 7.20786, 6.90575, 7.59287, 7.1309, 7.393260000000001, 6.95655, 6.834110000000001, 6.07993, 7.10988, 6.802389999999999, 6.224559999999999, 6.57925, 6.927560000000001, 6.90575, 7.09008, 7.1309, 6.90575, 6.907760000000001, 6.16542, 6.62007, 7.6009, 6.963189999999999, 6.95655, 6.90575, 6.90575, 6.796819999999999, 6.66568, 6.907760000000001, 6.8533, 6.813439999999999, 7.196689999999999, 6.43615, 6.9147300000000005, 6.551080000000001, 6.77194, 6.90575, 6.90575, 6.66823, 6.47697, 7.0255399999999995, 7.522939999999999, 6.62007, 6.354369999999999, 7.1546199999999995, 6.90575, 6.551080000000001, 5.78383, 6.753439999999999, 6.77422, 7.313219999999999, 6.967910000000001, 6.816739999999999, 7.6009, 6.745239999999999, 6.51471, 7.37588, 6.86485, 6.41346, 6.7093, 6.551080000000001, 6.22654, 7.24423, 6.06146, 6.16331, 7.05359, 6.86171, 6.58617, 7.1309, 6.77422, 7.93737, 6.39693, 6.58617, 7.67322, 6.551080000000001, 6.2146099999999995, 6.77422, 6.2634, 6.99485, 6.45047, 6.66185, 6.94119, 6.90575, 7.21891, 7.57558, 7.495539999999999, 6.10925, 6.59715, 7.09008, 6.03787, 6.556780000000001, 6.354369999999999, 7.6009, 6.83303, 6.551080000000001, 7.279319999999999, 6.354369999999999, 7.925160000000001, 6.77422, 7.183110000000001, 6.1136800000000004, 6.77992, 6.62007, 7.00307, 7.86327, 6.70073, 6.795710000000001, 7.1309, 6.32794, 6.16121, 5.6801699999999995, 6.65286, 6.802389999999999, 6.715380000000001, 6.95655, 6.78333, 6.90575, 6.67582, 6.47697, 6.907760000000001, 6.90575, 6.53233, 6.882439999999999, 7.0255399999999995, 6.23048, 6.715380000000001, 7.872839999999999, 6.49072, 6.90575, 6.4892, 6.63726, 6.12249, 6.3613, 6.79122, 6.53233, 6.05209, 6.907760000000001, 6.697030000000001, 6.8742, 6.08677, 6.6280399999999995, 6.907760000000001, 6.05209, 5.70378, 7.02997, 6.715380000000001, 6.2146099999999995, 6.90575, 7.313219999999999, 6.3699, 6.07074, 6.77992, 6.54822, 6.62007, 6.59987, 6.62007, 6.8966899999999995, 6.802389999999999, 6.7226300000000005, 6.07993, 6.51026, 6.907760000000001, 6.50429, 6.47697, 6.58617, 6.77422, 6.8977, 5.9135, 6.17379, 8.047189999999999, 6.93537, 6.2146099999999995, 6.507280000000001, 7.46737, 5.82895, 7.034389999999999, 6.7569300000000005, 7.2998, 6.95655, 6.17794, 6.68461, 7.495539999999999, 6.62007, 6.88755, 6.45205, 6.802389999999999, 6.32794, 6.68461, 8.03916, 6.829789999999999, 6.6745600000000005, 6.714169999999999, 6.43775, 5.4161, 7.00307, 6.43455, 6.90575, 7.346660000000001, 6.9256, 7.6009, 7.10988, 7.24423, 6.7569300000000005, 6.48004, 6.889589999999999, 7.313219999999999, 6.9256, 6.59167, 6.57786, 6.53669, 6.39693, 6.33328, 6.33328, 7.313219999999999, 6.551080000000001, 7.408530000000001, 6.802389999999999, 7.3908, 6.90575, 6.9256, 6.95655, 6.13123, 6.551080000000001, 7.06561, 6.57925, 6.90575, 6.73102, 7.09008, 6.566669999999999, 6.9966800000000005, 6.43775, 6.62007, 6.68461, 6.424869999999999, 6.646389999999999, 6.2146099999999995, 6.802389999999999, 6.90575, 6.9613, 5.70378, 6.78672, 6.65286, 7.24423, 7.09008, 6.602589999999999, 6.42162, 7.0422899999999995, 7.034389999999999, 6.59987, 6.44572, 6.20456, 6.57925, 6.38012, 6.16331, 7.43838, 6.818919999999999, 6.551080000000001, 6.53669, 6.95655, 5.76832, 7.2100800000000005, 6.48311, 6.507280000000001, 6.45362, 6.765039999999999, 6.2634, 6.2691, 7.18917, 6.2146099999999995, 6.802389999999999, 6.50129, 6.2634, 7.38647, 6.96885, 6.10925, 7.196689999999999, 6.3403599999999996, 6.818919999999999, 6.72623, 6.90575, 7.04752, 6.7569300000000005, 6.62936, 7.09008, 6.62007, 5.9839400000000005, 6.95655, 7.49332, 6.62007, 6.31355, 6.62007, 6.753439999999999, 6.77422, 6.2653, 7.495539999999999, 6.7334, 6.95655, 6.56526, 6.88755, 7.47307, 6.47697, 6.90575, 6.90575, 7.909860000000001, 6.69084, 6.3716099999999996, 6.52209, 7.106610000000001, 6.40523, 6.69084, 5.627619999999999, 6.6567300000000005, 6.68461, 6.697030000000001, 6.22654, 7.740660000000001, 6.907760000000001, 6.43775, 6.43775, 6.813439999999999, 5.76832, 6.9256, 7.64969, 6.47697, 6.10925, 7.1309, 5.89715, 6.907760000000001, 6.745239999999999, 6.43775, 6.85646, 6.77422, 6.768489999999999, 7.029089999999999, 6.62007, 7.06133, 7.24423, 6.95177, 7.54961, 6.354369999999999, 6.87626, 6.318969999999999, 6.570880000000001, 6.62007, 7.61332, 7.09008, 6.7511, 6.8977, 6.551080000000001, 7.40914, 7.034389999999999, 6.49072, 6.30992, 5.70378, 6.55393, 6.72743, 6.05209, 7.0967199999999995, 6.90575, 6.551080000000001, 6.907760000000001, 6.785589999999999, 6.39693, 6.05209, 6.90575, 6.697030000000001, 6.814539999999999, 6.639880000000001, 6.62007, 7.24423, 6.77194, 6.551080000000001, 6.802389999999999, 5.8999, 6.57228, 7.062189999999999, 6.47697, 6.2441699999999996, 6.829789999999999, 6.95655, 6.907760000000001, 6.38012, 7.293019999999999, 6.91175, 6.68461, 6.45834, 6.556780000000001, 6.5582, 6.91175, 6.45362, 7.1309, 6.8773, 6.955589999999999, 7.80588, 6.9613, 5.4161, 6.907760000000001, 6.90575, 7.18992, 7.507689999999999, 6.90575, 6.385190000000001, 7.31122, 6.6107, 6.807930000000001, 6.79794, 6.1717, 6.16331, 6.6592899999999995, 7.0483899999999995, 6.598510000000001, 5.5797300000000005, 7.6009, 6.09131, 7.106610000000001, 6.90575, 7.66153, 7.22548, 6.48768, 6.87213, 7.17012, 6.23245, 6.39693, 6.4677, 7.35244, 7.183110000000001, 6.56948, 8.00637, 7.05272, 6.33328, 6.90575, 6.802389999999999, 6.30992, 6.551080000000001, 6.10925, 6.77422, 6.30992, 7.522939999999999, 6.49979, 6.802389999999999, 7.05704, 7.16858, 6.802389999999999, 6.58617, 6.551080000000001, 7.20564, 6.551080000000001, 7.1507, 6.852239999999999, 7.6009, 6.70564, 5.7525699999999995, 6.90575, 6.802389999999999, 6.11147, 6.95655, 6.84375, 6.95655, 6.8977, 7.34923, 6.93245, 6.34564, 6.79122, 7.03878, 7.400010000000001, 5.8579300000000005, 7.37588, 6.83195, 7.00307, 6.84162, 6.354369999999999, 6.93342, 6.608, 6.85646, 6.61607, 6.056780000000001, 6.90575, 6.697030000000001, 6.5395900000000005, 6.6120399999999995, 6.63726, 7.1309, 6.739339999999999, 7.86327, 6.55393, 6.47697, 6.7511, 6.907760000000001, 6.05912, 6.54535, 6.551080000000001, 7.00307, 6.51471, 6.57925, 6.66823, 7.71869, 5.52146, 7.1309, 6.551080000000001, 6.44572, 7.00307, 6.253830000000001, 7.401839999999999, 5.99146, 7.2724, 6.907760000000001, 6.90575, 6.3315, 6.3699, 6.39693, 7.82405, 6.95655, 6.09582, 6.07535, 6.90575, 6.8426800000000005, 7.0518600000000005, 6.993930000000001, 6.907760000000001, 6.79122, 6.7511, 6.2146099999999995, 6.78897, 6.67203, 7.259119999999999, 7.6811, 6.745239999999999, 7.27031, 6.721430000000001, 6.90575, 6.563860000000001, 6.99485, 7.37776, 7.06048, 7.6009, 6.30992, 6.84375, 7.0282, 6.66696, 6.90575, 6.47235, 6.56244, 8.0229, 6.90575, 6.6592899999999995, 6.80351, 6.92658, 6.4892, 6.28227, 7.06902, 6.08677, 5.958419999999999, 7.1309, 5.68698, 6.62007, 6.33683, 6.984719999999999, 6.753439999999999, 6.354369999999999, 6.52209, 6.52209, 7.362010000000001, 6.8200199999999995, 6.73102, 6.39693, 6.8773, 6.507280000000001, 7.313219999999999, 6.81014, 6.802389999999999, 6.49072, 7.46737, 6.82437, 6.745239999999999, 6.11147, 6.2634, 7.181589999999999, 6.551080000000001, 7.05618, 6.29157, 7.2998, 5.86079, 6.51619, 6.56948, 6.937310000000001, 5.83188, 6.9256, 6.90575, 6.10925, 6.39693, 7.09008, 6.82437, 6.753439999999999, 6.966019999999999, 6.802389999999999, 7.239210000000001, 6.5582, 6.907760000000001, 6.98008, 6.62407, 5.70378, 6.551080000000001, 6.41673, 7.313219999999999, 6.62007, 6.84588, 6.95655, 6.42162, 6.68461, 6.715380000000001, 6.85646, 6.57786, 5.8579300000000005, 6.2146099999999995, 7.313219999999999, 7.37776, 6.07993, 6.30992, 7.1309, 6.69084, 6.70564, 5.7462, 6.16752, 7.279319999999999, 6.73102, 6.53669, 6.24222, 7.03527, 7.04752, 6.507280000000001, 6.93049, 6.59715, 7.09008, 6.45047, 6.33328, 6.68461, 6.62007, 6.6592899999999995, 6.90575, 7.04752, 6.30992, 7.43838, 6.6346300000000005, 6.59167, 6.1181, 6.41836, 7.2724, 6.56526, 6.90575, 7.91936, 6.54103, 6.90575, 7.57558, 6.20456, 6.802389999999999, 6.899719999999999, 7.484369999999999, 6.90575, 6.51471, 5.7462, 6.39693, 6.94698, 7.084230000000001, 6.96885, 6.907760000000001, 7.00307, 7.293019999999999, 7.173189999999999, 6.77422, 6.815639999999999, 6.43294, 6.813439999999999, 6.90575, 6.88857, 6.90575, 7.09008, 6.90575, 7.226210000000001, 5.76832, 5.70378, 7.279319999999999, 6.05912, 6.68461, 6.6592899999999995, 7.91936, 6.507280000000001, 7.00307, 6.47697, 6.551080000000001, 6.90575, 6.2146099999999995, 6.907760000000001, 6.715380000000001, 6.96885, 6.68461, 6.57368, 6.745239999999999, 6.53669, 5.76832, 6.2146099999999995, 6.8426800000000005, 7.520230000000001, 5.5797300000000005, 6.51323, 7.1082399999999994, 6.5582, 7.17012, 6.768489999999999, 6.39693, 7.393260000000001, 6.6958, 6.39693, 6.95177, 6.2146099999999995, 7.09008, 6.5582, 7.09008, 6.9613, 6.4892, 7.676010000000001, 6.715380000000001, 5.70378, 6.907760000000001, 6.3935900000000006, 7.54961, 6.86171, 5.79606, 6.83087, 6.6783399999999995, 6.54535, 6.593039999999999, 6.77422, 6.44572, 7.04752, 6.3716099999999996, 7.37776, 7.17012, 6.8426800000000005, 7.00307, 6.126869999999999, 6.50129, 6.8773, 6.56526, 6.354369999999999, 6.96885, 6.575080000000001, 6.62007, 6.42811, 6.752269999999999, 6.90575, 6.78672, 7.1309, 8.12089, 6.829789999999999, 7.00307, 6.2146099999999995, 6.1944099999999995, 7.740660000000001, 6.551080000000001, 6.907760000000001, 6.2146099999999995, 6.96979, 6.68461, 7.14283, 6.139880000000001, 7.1293, 6.89467, 5.43808, 6.621410000000001, 7.183110000000001, 6.5467900000000006, 6.34388, 6.39024, 7.0255399999999995, 6.424869999999999, 6.68461, 6.49979, 7.37776, 6.7901, 6.17379, 6.4488900000000005, 6.614730000000001, 6.802389999999999, 6.60665, 7.09008, 6.51323, 6.93245, 6.6592899999999995, 6.30992, 6.30992, 6.7226300000000005, 7.37776, 6.09807, 6.8977, 6.35784, 6.37502, 6.57925, 7.7021, 7.46737, 7.6009, 7.36455, 6.59715, 6.639880000000001, 6.36303, 5.82895, 6.59715, 6.62007, 6.551080000000001, 7.09008, 6.78333, 6.563860000000001, 7.0076, 6.880380000000001, 6.745239999999999, 6.82437, 6.4677, 7.127689999999999, 7.1309, 6.62007, 7.82084, 7.288930000000001, 6.72743, 6.39693, 6.68461, 7.10988, 6.563860000000001, 6.354369999999999, 6.7546, 7.196689999999999, 5.99146, 6.74052, 7.24423, 6.67203, 6.86485, 7.1309, 7.6009, 6.6107, 7.24423, 6.9256, 7.11314, 6.86693, 6.85118, 6.58617, 6.85646, 5.70378, 6.2146099999999995, 6.92363, 5.67675, 6.84588, 6.86171, 6.813439999999999, 6.62936, 6.50279, 5.7589, 6.7417, 7.18917, 6.2146099999999995, 6.93245, 6.78897, 6.74759, 7.00307, 6.3935900000000006, 7.09008, 7.84385, 6.802389999999999, 6.57647, 6.78672, 6.39693, 6.9707300000000005, 8.3082, 7.1309, 7.17012, 6.593039999999999, 6.90575, 6.62007, 6.86693, 6.259580000000001, 6.41999, 6.90575, 5.52146, 6.907760000000001, 7.43838, 6.64509, 7.09008, 6.39693, 7.0255399999999995, 7.903969999999999, 6.745239999999999, 6.80461, 7.037030000000001, 7.04752, 6.08904, 6.47697, 6.65286, 6.76388, 6.90575, 6.802389999999999, 6.87626, 6.90575, 7.1507, 7.07834, 7.21082, 6.52942, 6.701960000000001, 6.8426800000000005, 6.3207699999999996, 6.69827, 6.24611, 6.57786, 6.18826, 6.975410000000001, 7.16085, 6.30992, 6.83303, 7.61874, 6.48158, 5.99146, 6.44095, 6.99485, 6.907760000000001, 6.8384100000000005, 6.79122, 6.551080000000001, 6.6695, 7.279319999999999, 6.57925, 6.813439999999999, 6.30992, 6.68461, 6.47389, 6.802389999999999, 6.785589999999999, 6.45362, 7.313219999999999, 6.551080000000001, 7.29097, 5.8861, 6.98008, 6.802389999999999, 7.20786, 6.802389999999999, 6.983789999999999, 6.75926, 6.68461, 6.55962, 6.8977, 6.05912, 6.90575, 7.4570300000000005, 7.1309, 6.566669999999999, 6.829789999999999, 6.85646, 6.643789999999999, 6.77422, 7.90101, 6.32794, 6.25767, 7.81883, 6.966019999999999, 6.33328, 6.2146099999999995, 6.77422, 6.8384100000000005, 6.62007, 6.813439999999999, 6.551080000000001, 6.920669999999999, 7.195189999999999, 6.62007, 6.745239999999999, 6.3315, 6.69332, 6.745239999999999, 6.90575, 7.0396600000000005, 6.90575, 5.8260000000000005, 6.07535, 6.30992, 6.96885, 6.47697, 6.39693, 7.24423, 7.12367, 7.17012, 6.60394, 6.18415, 6.68461, 6.44413, 6.4677, 6.72623, 6.2146099999999995, 6.47697, 6.907760000000001, 6.4552, 7.1546199999999995, 7.37776, 7.18917, 6.10925, 6.5903, 7.136480000000001, 5.95584, 7.03878, 6.461469999999999, 6.697030000000001, 5.9839400000000005, 6.66568, 6.2146099999999995, 6.56526, 6.51471, 5.61677, 6.49375, 7.06048, 6.715380000000001, 6.10925, 6.95655, 7.1309, 6.95655, 6.90575, 6.76273, 6.311730000000001, 7.1507, 7.00307, 6.29157, 6.86693, 6.68461, 6.90575, 6.95655, 7.17012, 7.0255399999999995, 6.86171, 7.495539999999999, 6.49224, 6.90575, 6.8865300000000005, 7.57353, 6.602589999999999, 6.85646, 6.30992, 6.23048, 6.5467900000000006, 6.530880000000001, 6.802389999999999, 7.6009, 6.55962, 6.46459, 6.834110000000001, 7.313219999999999, 6.802389999999999, 6.7334, 6.66441, 7.251339999999999, 5.87774, 6.802389999999999, 7.43838, 6.35957, 6.43775, 6.5820300000000005, 6.768489999999999, 7.17012, 6.68461, 5.6733199999999995, 6.90575, 7.281389999999999, 7.17702, 6.90575, 6.95845, 6.44572, 6.583410000000001, 6.91672, 6.90575, 8.229510000000001, 7.027310000000001, 6.551080000000001, 6.84055, 7.136480000000001, 6.71174, 6.787839999999999, 6.74288, 7.0934, 7.200419999999999, 6.83087, 7.37776, 6.79122, 6.67203, 6.55393, 6.39693, 7.46737, 6.802389999999999, 7.165489999999999, 6.62007, 6.90575, 7.0255399999999995, 7.70661, 6.47389, 6.35957, 6.07535, 6.907760000000001, 7.1107, 6.593039999999999, 6.30992, 7.20786, 6.43775, 6.556780000000001, 6.83518, 6.77878, 6.966019999999999, 6.95273, 6.3716099999999996, 6.43133, 6.907760000000001, 6.68461, 6.64898, 6.28972, 7.00307, 6.2146099999999995, 6.66058, 6.967910000000001, 7.016610000000001, 6.68461, 7.09008, 6.85646, 6.90575, 5.66988, 7.09008, 6.53379, 6.84801, 6.90575, 5.99146, 7.21891, 6.90575, 6.745239999999999, 7.07242, 7.6009, 6.817830000000001, 6.23637, 7.346010000000001, 6.6592899999999995, 7.46737, 6.975410000000001, 6.79122, 6.719010000000001, 6.720219999999999, 6.90575, 6.90575, 6.68336, 6.892639999999999, 6.86485, 6.947939999999999, 6.955589999999999, 6.90575, 5.78383, 6.551080000000001, 5.66988, 7.0255399999999995, 7.04752, 6.3935900000000006, 6.807930000000001, 6.74288, 6.802389999999999, 6.4599, 6.354369999999999, 6.18208, 7.398789999999999, 7.37776, 7.35883, 6.47697, 7.18463, 6.745239999999999, 7.05876, 6.694560000000001, 6.84588, 6.68461, 7.64969, 6.59578, 7.027310000000001, 6.715380000000001, 6.04025, 5.84644, 6.2146099999999995, 6.507280000000001, 6.23441, 7.098380000000001, 6.2804, 7.6256, 6.633319999999999, 6.6346300000000005, 7.195189999999999, 6.43455, 6.52649, 6.49527, 6.51915, 7.54961, 7.09008, 7.00307, 6.36475, 5.7462, 6.77422, 6.10925, 6.73459, 7.1293, 6.49224, 6.28413, 7.17012, 6.90575, 6.6515699999999995, 6.56948, 6.80461, 6.03787, 7.313219999999999, 6.11589, 6.68461, 6.72743, 7.09008, 5.96615, 8.26873, 6.17794, 6.3935900000000006, 7.12287, 6.43775, 5.95324, 6.6796, 6.758089999999999, 6.68461, 5.70378, 6.90575, 7.495539999999999, 6.84588, 6.745239999999999, 6.21261, 7.251339999999999, 6.10032, 8.048789999999999, 7.313219999999999, 6.802389999999999, 6.745239999999999, 6.907760000000001, 6.90575, 5.82305, 6.90575, 7.17012, 6.2441699999999996, 8.08641, 5.59842, 7.08171, 6.9594, 6.97354, 7.30653, 6.55962, 6.58617, 6.74406, 7.56008, 6.1944099999999995, 7.408530000000001, 6.61338, 6.01616, 6.32794, 7.18007, 6.74052, 6.95655, 6.58617, 6.66568, 6.85646, 6.44572, 7.313219999999999, 7.1309, 5.99146, 6.18826, 5.59842, 6.49224, 6.821110000000001, 6.56526, 6.47697, 6.813439999999999, 7.43838, 7.2717, 6.30262, 6.38351, 6.551080000000001, 5.45959, 6.43775, 6.90575, 6.53233, 6.61874, 6.06843, 6.1203, 7.88231, 6.90575, 6.7569300000000005, 5.7651900000000005, 6.938280000000001, 7.08255, 6.41346, 6.882439999999999, 7.37776, 6.44413, 6.90575, 6.51471, 7.2998, 6.5439099999999994, 6.551080000000001, 6.90575, 7.35372, 7.135689999999999, 7.46737, 6.63595, 6.802389999999999, 7.346010000000001, 6.90575, 6.86693, 7.1309, 5.78383, 6.829789999999999, 6.65286, 6.7334, 7.2998, 6.65415, 6.9256, 6.90575, 6.39693, 6.52209, 6.3699, 6.770789999999999, 6.39693, 6.49072, 6.02345, 7.32251, 6.13123, 6.29711, 7.04752, 6.799060000000001, 6.272880000000001, 6.354369999999999, 6.49527, 6.57925, 6.697030000000001, 5.52146, 6.703189999999999, 7.04752, 6.65286, 6.752269999999999, 6.2146099999999995, 6.42162, 6.90575, 7.014810000000001, 6.62007, 6.85646, 6.745239999999999, 6.9256, 6.58617, 6.51471, 5.96615, 6.90575, 6.52942, 6.16331, 6.56526, 6.813439999999999, 7.09008, 5.8141300000000005, 6.49979, 6.769639999999999, 6.08677, 6.7369699999999995, 7.064760000000001, 6.01616, 7.11883, 6.48158, 6.51175, 7.46737, 6.57228, 6.551080000000001, 7.67322, 6.35957, 6.907760000000001, 6.58617, 7.1309, 6.57925, 6.43294, 6.39693, 7.46737, 6.95655, 6.54247, 6.3716099999999996, 7.293019999999999, 6.08677, 7.64969, 6.95655, 8.13153, 6.3613, 6.10925, 6.551080000000001, 6.907760000000001, 6.97261, 6.907760000000001, 6.43775, 6.3243599999999995, 6.83518, 6.993930000000001, 6.6567300000000005, 6.984719999999999, 7.062189999999999, 6.907760000000001, 6.77992, 7.195189999999999, 7.185389999999999, 6.07993, 6.01616, 6.72743, 6.33683, 6.70073, 7.20786, 7.0103100000000005, 6.551080000000001, 7.1309, 6.7334, 7.495539999999999, 6.24028, 6.354369999999999, 6.90575, 6.551080000000001, 7.00307, 6.85013, 7.0255399999999995, 6.39693, 7.495539999999999, 6.768489999999999, 6.23441, 6.461469999999999, 6.5395900000000005, 6.907760000000001, 6.05209, 6.28413, 6.126869999999999, 7.12287, 6.745239999999999, 7.21744, 6.39693, 6.49072, 6.47697, 6.05209, 7.24423, 6.802389999999999, 7.09008, 6.44572, 7.00307, 6.966019999999999, 6.721430000000001, 6.62936, 6.813439999999999, 6.28227, 7.64969, 6.9575, 7.3696, 6.461469999999999, 6.90575, 7.20786, 6.78333, 6.57647, 6.5903, 7.00307, 6.74993, 6.57925, 6.907760000000001, 7.18917, 6.16331, 6.59578, 6.802389999999999, 6.272880000000001, 7.014810000000001, 6.2146099999999995, 6.43615, 6.64509, 6.608, 6.68461, 6.58617, 6.62007, 6.19032, 7.00307, 6.95655, 6.12249, 6.62007, 7.313219999999999, 7.09008, 6.83303, 6.98101, 6.6871100000000006, 7.09008, 6.81014, 7.37776, 6.51767, 6.85435, 7.64969, 7.91936, 6.907760000000001, 6.9256, 6.6733, 7.5574699999999995, 6.13773, 6.67203, 6.30992, 6.47697, 6.8956800000000005, 6.56948, 6.33328, 6.802389999999999, 6.9707300000000005, 8.00637, 6.65286, 6.57368, 5.70711, 6.57786, 6.92363, 6.57368, 7.37776, 6.2146099999999995, 7.408530000000001, 7.1155800000000005, 7.91936, 7.09008, 7.37776, 7.1309, 6.58617, 6.14633, 6.6592899999999995, 6.90575, 7.092569999999999, 6.86485, 7.57558, 7.200419999999999, 6.95655, 6.2146099999999995, 6.05209, 6.44254, 6.35957, 5.72031, 6.4599, 6.60394, 6.51471, 6.975410000000001, 6.39693, 7.400010000000001, 8.537, 6.07993, 7.36645, 6.67708, 6.99942, 6.61338, 7.64969, 6.68461, 6.57925, 7.09008, 7.1082399999999994, 6.83518, 7.09008, 6.58617, 6.90575, 6.43615, 6.84162, 7.313219999999999, 6.55962, 6.07993, 6.3952599999999995, 6.633319999999999, 6.42162, 7.09008, 6.13123, 7.313219999999999, 6.30992, 6.79122, 6.720219999999999, 6.66823, 7.2861899999999995, 6.802389999999999, 6.703189999999999, 5.98896, 7.620710000000001, 6.0822199999999995, 6.77878, 7.09008, 7.6009, 6.28972, 6.48768, 6.68461, 6.41182, 7.37776, 7.525639999999999, 6.74993, 6.72623, 7.09008, 7.25347, 7.585789999999999, 6.45362, 6.354369999999999, 6.984719999999999, 6.90575, 6.937310000000001, 6.907760000000001, 7.0775, 7.346010000000001, 7.027310000000001, 6.907760000000001, 6.9489, 6.907760000000001, 7.495539999999999, 6.01127, 6.802389999999999, 6.745239999999999, 6.58617, 6.90575, 6.633319999999999, 6.80572, 6.2480400000000005, 6.2634, 6.31355, 7.35819, 6.49677, 6.68461, 6.633319999999999, 7.30317, 6.95655, 6.907760000000001, 5.742999999999999, 6.39693, 7.313219999999999, 6.90575, 7.09008, 6.47697, 7.196689999999999, 6.47697, 6.30262, 6.745239999999999, 7.07412, 6.354369999999999, 6.10925, 6.68461, 7.42357, 6.768489999999999, 6.95655, 6.715380000000001, 6.9828600000000005, 7.02465, 6.49224, 6.49979, 6.27099, 5.8861, 7.393260000000001, 6.829789999999999, 6.32794, 6.28786, 5.9839400000000005, 6.68461, 5.84354, 6.62007, 7.12287, 6.2146099999999995, 6.84162, 7.00307, 6.2146099999999995, 6.983789999999999, 6.35611, 6.17379, 6.95655, 6.39693, 6.88755, 7.04316, 6.90575, 6.84162, 6.45362, 6.83518, 6.85646, 6.46925, 5.99146, 6.62007, 7.00307, 5.99146, 6.22654, 6.633319999999999, 6.77308, 7.1107, 6.95655, 6.967910000000001, 6.995769999999999, 6.66568, 6.594410000000001, 6.90575, 6.5439099999999994, 6.62007, 6.60665, 7.04752, 7.062189999999999, 7.313219999999999, 7.04752, 7.0884100000000005, 6.937310000000001, 6.90575, 6.23441, 6.25767, 6.2146099999999995, 6.551080000000001, 6.90575, 7.09008, 6.68461, 6.2146099999999995, 6.386880000000001, 6.44413, 6.58617, 6.10925, 6.90073, 6.745239999999999, 7.2233, 6.8773, 6.813439999999999, 7.037030000000001, 6.40523, 6.2146099999999995, 6.17379, 7.6009, 6.30992, 6.685860000000001, 6.38856, 6.47697, 7.46737, 6.551080000000001, 6.9226399999999995, 6.87213, 6.73102, 6.30992, 7.45298, 5.72359, 7.1309, 6.882439999999999, 5.940169999999999, 6.90675, 6.551080000000001, 6.9147300000000005, 6.85646, 6.563860000000001, 6.381819999999999, 5.78996, 6.769639999999999, 6.73102, 7.06133, 6.68461, 6.2146099999999995, 6.912739999999999, 6.4708, 6.2634, 7.08171, 6.90575, 7.6009, 6.52062, 6.907760000000001, 6.60935, 6.51471, 6.9828600000000005, 6.85646, 6.30992, 7.338889999999999, 6.22654, 6.84055, 6.311730000000001, 7.01392, 6.49224, 6.2205900000000005, 7.44659, 7.388330000000001, 6.85118, 7.24423, 6.632000000000001, 6.90575, 7.10906, 6.944089999999999, 6.83518, 6.222580000000001, 6.84588, 7.17012, 6.52503, 6.2860000000000005, 6.80128, 6.07993 ], "y0": "M/F" }, { "fillcolor": "hsla(82, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(82, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "no", "line": { "color": "hsla(82, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(82, 70%, 70%,1)", "line": { "color": "hsla(82, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "triangle-left" }, "meanline": { "color": "hsla(82, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage no", "orientation": "h", "pointpos": 0.6, "points": false, "scalegroup": "no", "scalemode": "count", "showlegend": true, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.55536, 6.39693, 6.907760000000001, 6.50279, 7.313219999999999, 6.10925, 6.993930000000001, 6.614730000000001, 6.30992, 6.62007, 6.17379, 5.99146, 6.2146099999999995, 6.65286, 6.67203, 6.30992, 6.48158, 6.907760000000001, 5.8999, 6.6995, 6.745239999999999, 6.05209, 6.745239999999999, 5.73334, 7.111510000000001, 6.563860000000001, 6.43775, 7.346010000000001, 6.907760000000001, 5.463830000000001, 5.43808, 6.77422, 6.77878, 6.47697, 6.818919999999999, 6.43455, 5.68358, 6.2146099999999995, 6.10925, 6.6783399999999995, 7.1309, 6.39693, 6.77422, 5.96615, 5.90808, 6.39693, 6.16331, 5.0814, 6.49072, 4.605169999999999, 6.802389999999999, 5.8579300000000005, 6.7901, 6.65286, 6.86485, 6.92461, 7.26193, 5.99146, 6.85646, 6.73815, 6.86693, 5.4161, 6.30079, 5.76832, 6.51471, 6.16542, 5.93489, 7.04752, 6.19644, 6.551080000000001, 5.7525699999999995, 6.318969999999999, 5.89715, 5.9454199999999995, 6.52942, 6.4677, 6.06611, 5.70378, 7.04752, 6.768489999999999, 6.2480400000000005, 6.33328, 6.48311, 6.785589999999999, 7.338889999999999, 7.0255399999999995, 7.00307, 5.8999, 5.7365699999999995, 6.62007, 6.36475, 6.90575, 6.65286, 5.7525699999999995, 6.025869999999999, 5.9269300000000005, 6.20456, 6.31536, 5.95324, 6.1070199999999994, 6.05209, 6.39693, 6.408530000000001, 5.9269300000000005, 5.51745, 6.715380000000001, 6.47697, 6.85646, 6.85646, 6.32972, 7.6009, 6.802389999999999, 6.551080000000001, 6.685860000000001, 6.8977, 5.70378, 6.16331, 6.95655, 7.1309, 6.2634, 6.3716099999999996, 6.10925, 6.93537, 6.51323, 5.8141300000000005, 6.56244, 6.834110000000001, 6.23245, 7.1309, 6.57925, 6.30992, 6.34388, 7.24423, 6.43775, 5.34711, 7.279319999999999, 6.83195, 6.58064, 5.99146, 6.33683, 6.802389999999999, 5.8999, 6.29157, 5.59842, 6.5582, 6.354369999999999, 5.95324, 6.62007, 5.9454199999999995, 5.4161, 5.64545, 5.7525699999999995, 6.28972, 6.2952699999999995, 7.46737, 7.1309, 6.05209, 6.551080000000001, 6.63857, 6.621410000000001, 5.82305, 6.85646, 5.78074, 6.12905, 6.02345, 5.70378, 5.883319999999999, 6.62007, 6.2146099999999995, 6.907760000000001, 5.9269300000000005, 5.59842, 6.58617, 6.901739999999999, 5.8579300000000005, 6.8426800000000005, 6.62007, 5.99146, 6.45362, 6.907760000000001, 6.17379, 6.98008, 5.81711, 6.44254, 6.30079, 6.745239999999999, 6.7901, 6.51471, 6.17379, 6.07993, 6.11589, 7.64969, 6.658010000000001, 5.74939, 6.893660000000001, 6.33328, 8.02027, 6.57786, 6.386880000000001, 7.0255399999999995, 5.9269300000000005, 5.8141300000000005, 6.2634, 6.85646, 5.86647, 6.01616, 5.78383, 6.278519999999999, 6.907760000000001, 6.30992, 6.10925, 6.785589999999999, 6.47697, 7.04752, 5.4161, 6.62007, 6.04025, 7.1107, 6.85646, 6.39693, 6.36819, 6.62007, 6.04025, 6.86693, 6.43775, 5.940169999999999, 6.35957, 6.2146099999999995, 6.253830000000001, 6.1025599999999995, 6.1025599999999995, 6.4552, 6.15698, 7.346010000000001, 6.96885, 5.8861, 6.885510000000001, 6.1717, 7.143619999999999, 6.907760000000001, 6.354369999999999, 5.958419999999999, 5.98645, 6.745239999999999, 5.8579300000000005, 6.882439999999999, 6.68461, 6.715380000000001, 5.8861, 6.90575, 6.10925, 6.16331, 6.10925, 6.65286, 7.24423, 6.39693, 6.86693, 5.65948, 5.940169999999999, 6.26149, 6.551080000000001, 6.29157, 6.07535, 6.59715, 6.77992, 5.50126, 6.77422, 6.2634, 5.82008, 6.85646, 6.4708, 6.8426800000000005, 6.15698, 6.893660000000001, 6.43775, 5.8999, 5.99146, 6.33328, 6.9707300000000005, 6.6567300000000005, 6.745239999999999, 6.93049, 6.16331, 6.95655, 6.694560000000001, 6.6783399999999995, 6.849069999999999, 6.72743, 6.6280399999999995, 6.1070199999999994, 6.712960000000001, 7.346010000000001, 5.97635, 6.29157, 6.86901, 6.63726, 6.0282800000000005, 6.39859, 5.42935, 6.6592899999999995, 6.907760000000001, 6.47697, 6.551080000000001, 6.551080000000001, 6.77422, 6.715380000000001, 6.68461, 5.70378, 6.802389999999999, 6.45834, 5.8141300000000005, 5.4161, 6.95655, 6.88755, 6.23441, 6.463030000000001, 6.65286, 7.0255399999999995, 6.39693, 5.8141300000000005, 7.226210000000001, 6.62007, 6.3952599999999995, 6.06379, 5.42053, 5.8861, 6.52209, 5.8861, 7.20786, 6.05209, 6.02102, 6.05209, 5.52146, 5.95584, 6.8966899999999995, 6.8426800000000005, 5.52146, 6.06379, 6.2205900000000005, 6.86066, 6.0822199999999995, 6.9177100000000005, 7.04752, 6.51471, 6.3952599999999995, 6.70073, 6.07993, 6.46925, 5.940169999999999, 6.22654, 6.39693, 7.17012, 6.58755, 6.8254600000000005, 7.04752, 6.50429, 5.99146, 6.62007, 6.62007, 6.2146099999999995, 6.29895, 6.95655, 5.8579300000000005, 6.745239999999999, 7.20786, 7.04316, 6.8533, 5.70378, 5.93225, 6.58617, 6.49072, 6.68461, 5.78383, 6.84055, 5.2983199999999995, 6.35957, 5.99146, 5.82008, 6.10925, 6.04025, 6.51175, 6.39693, 6.59715, 5.01064, 6.73102, 6.77422, 6.30992, 5.5606800000000005, 6.802389999999999, 6.697030000000001, 6.8426800000000005, 6.30992, 7.01392, 7.24423, 6.354369999999999, 6.602589999999999, 6.9622399999999995, 6.424869999999999, 6.259580000000001, 6.593039999999999, 6.802389999999999, 6.58893, 6.43775, 6.2146099999999995, 6.2634, 5.97635, 6.13123, 6.04025, 6.99485, 6.58617, 6.6567300000000005, 6.07993, 6.551080000000001, 7.59287, 6.17587, 5.8693, 6.963189999999999, 6.43775, 6.73459, 6.551080000000001, 6.66823, 5.78383, 6.51471, 5.70378, 6.2634, 6.90575, 6.29157, 7.09008, 6.2146099999999995, 6.63068, 6.795710000000001, 6.682110000000001, 6.19236, 6.12249, 6.907760000000001, 5.68698, 6.12249, 6.14847, 6.77992, 6.62007, 6.8966899999999995, 6.802389999999999, 6.07993, 5.88053, 7.2998, 6.10925, 5.4161, 6.9256, 6.38856, 6.802389999999999, 5.86079, 5.99894, 6.9966800000000005, 6.68461, 5.39363, 5.96615, 5.70378, 6.52209, 5.96615, 7.43838, 5.9135, 6.6896, 6.14419, 7.04752, 6.692080000000001, 6.013719999999999, 6.31355, 6.224559999999999, 6.07304, 6.2146099999999995, 6.802389999999999, 5.95324, 5.8579300000000005, 6.33683, 5.97889, 6.2146099999999995, 6.34388, 6.62007, 6.8977, 7.40914, 7.18917, 5.70378, 6.1070199999999994, 6.30992, 6.36819, 6.23637, 5.52146, 6.47697, 6.68461, 6.36303, 7.507689999999999, 6.748760000000001, 5.5797300000000005, 6.633319999999999, 7.6009, 6.04025, 6.4677, 7.522939999999999, 5.7525699999999995, 6.551080000000001, 6.47697, 6.0330900000000005, 6.802389999999999, 6.79122, 5.8861, 5.82305, 7.71869, 5.52146, 5.39363, 7.401839999999999, 5.43808, 5.95324, 5.8999, 6.2146099999999995, 6.2804, 7.6009, 6.39693, 5.958419999999999, 6.62007, 5.89715, 6.06611, 6.2146099999999995, 7.313219999999999, 6.0845, 6.82437, 5.48064, 6.29157, 7.2998, 5.83188, 6.3952599999999995, 6.95655, 6.07993, 6.27099, 6.6592899999999995, 6.30992, 6.58617, 7.43838, 6.1181, 6.90575, 6.2146099999999995, 6.899719999999999, 5.76832, 5.70378, 6.035480000000001, 6.206580000000001, 6.39859, 6.551080000000001, 6.39693, 7.09008, 7.09008, 5.70378, 6.43775, 6.02345, 5.9269300000000005, 6.3716099999999996, 6.72743, 7.1309, 6.551080000000001, 6.2634, 6.646389999999999, 6.621410000000001, 5.5797300000000005, 6.07993, 6.802389999999999, 6.30992, 6.7226300000000005, 5.4161, 6.47697, 5.50126, 6.72743, 6.583410000000001, 6.44731, 7.24423, 5.82895, 6.85118, 5.67675, 6.62936, 6.2146099999999995, 6.73815, 6.90575, 6.802389999999999, 6.77422, 6.1944099999999995, 6.08904, 6.70073, 6.802389999999999, 6.69827, 6.593039999999999, 5.99146, 6.85646, 5.01064, 6.45362, 6.745239999999999, 6.85646, 6.79347, 6.2146099999999995, 5.65249, 6.745239999999999, 5.8260000000000005, 6.60394, 6.72623, 6.2146099999999995, 6.39693, 7.1507, 6.317159999999999, 7.00307, 6.35611, 6.85646, 5.8579300000000005, 6.55962, 6.7334, 6.18415, 6.05209, 6.802389999999999, 6.68461, 5.84354, 6.46925, 6.84055, 6.787839999999999, 5.99894, 7.1107, 6.593039999999999, 6.30992, 6.83518, 6.77878, 6.967910000000001, 6.68461, 6.77765, 6.90575, 6.30992, 5.8999, 5.8861, 6.23637, 7.216710000000001, 6.65286, 5.78383, 6.2146099999999995, 6.694560000000001, 7.027310000000001, 5.84644, 6.2146099999999995, 6.88857, 7.195189999999999, 5.76205, 5.68698, 6.49527, 6.51915, 6.1203, 7.00307, 5.7365699999999995, 5.7365699999999995, 6.2146099999999995, 5.47227, 6.2146099999999995, 6.72743, 7.04752, 6.30992, 5.70378, 7.251339999999999, 7.17012, 6.551080000000001, 5.7365699999999995, 5.64191, 6.21261, 6.47697, 6.95655, 5.61313, 6.62672, 6.23441, 7.2717, 5.7462, 6.056780000000001, 5.8944, 5.84932, 6.06843, 5.53339, 7.2998, 6.49375, 5.7365699999999995, 5.76832, 5.5797300000000005, 6.23832, 5.79606, 6.354369999999999, 5.52146, 6.19644, 6.19236, 6.49979, 6.6253899999999994, 6.01616, 6.48158, 5.7525699999999995, 6.14633, 6.97261, 6.712960000000001, 6.16331, 6.3716099999999996, 6.62007, 6.30992, 6.47697, 6.62007, 6.551080000000001, 6.18002, 7.18917, 6.745239999999999, 6.19032, 5.96358, 7.313219999999999, 6.39693, 7.09008, 6.14204, 5.5797300000000005, 6.11147, 5.66988, 6.35957, 5.72031, 6.51471, 5.73334, 6.39693, 5.90808, 5.9269300000000005, 6.2186, 6.68461, 6.13123, 6.643789999999999, 5.66988, 6.39693, 6.06611, 6.0822199999999995, 6.77878, 6.57786, 5.43808, 5.8141300000000005, 6.907760000000001, 6.3315, 6.58617, 6.86485, 6.04025, 6.90575, 6.768489999999999, 6.7901, 6.56244, 6.253830000000001, 6.57228, 6.05209, 5.93225, 5.273, 6.2186, 6.1717, 6.47697, 6.05209, 6.2146099999999995, 5.8579300000000005, 6.86693, 6.36303, 5.19296, 6.39693, 7.1309, 5.95584, 6.7093, 6.62007, 6.912739999999999, 6.2634, 6.41017, 6.556780000000001, 5.8141300000000005, 6.30992, 6.39693, 6.26149, 6.84055, 5.94803, 6.65544, 6.3081 ], "y0": "married?" }, { "box": { "visible": false }, "fillcolor": "rgba(0, 0, 0, 0)", "hoverinfo": "x", "hoveron": "points", "jitter": 0.3, "legendgroup": "no", "line": { "color": "rgba(0, 0, 0, 0)", "width": 0 }, "marker": { "color": "hsla(82, 70%, 70%,1)", "line": { "color": "hsla(82, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "triangle-left" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0.6, "points": "all", "scalegroup": "no", "showlegend": false, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.55536, 6.39693, 6.907760000000001, 6.50279, 7.313219999999999, 6.10925, 6.993930000000001, 6.614730000000001, 6.30992, 6.62007, 6.17379, 5.99146, 6.2146099999999995, 6.65286, 6.67203, 6.30992, 6.48158, 6.907760000000001, 5.8999, 6.6995, 6.745239999999999, 6.05209, 6.745239999999999, 5.73334, 7.111510000000001, 6.563860000000001, 6.43775, 7.346010000000001, 6.907760000000001, 5.463830000000001, 5.43808, 6.77422, 6.77878, 6.47697, 6.818919999999999, 6.43455, 5.68358, 6.2146099999999995, 6.10925, 6.6783399999999995, 7.1309, 6.39693, 6.77422, 5.96615, 5.90808, 6.39693, 6.16331, 5.0814, 6.49072, 4.605169999999999, 6.802389999999999, 5.8579300000000005, 6.7901, 6.65286, 6.86485, 6.92461, 7.26193, 5.99146, 6.85646, 6.73815, 6.86693, 5.4161, 6.30079, 5.76832, 6.51471, 6.16542, 5.93489, 7.04752, 6.19644, 6.551080000000001, 5.7525699999999995, 6.318969999999999, 5.89715, 5.9454199999999995, 6.52942, 6.4677, 6.06611, 5.70378, 7.04752, 6.768489999999999, 6.2480400000000005, 6.33328, 6.48311, 6.785589999999999, 7.338889999999999, 7.0255399999999995, 7.00307, 5.8999, 5.7365699999999995, 6.62007, 6.36475, 6.90575, 6.65286, 5.7525699999999995, 6.025869999999999, 5.9269300000000005, 6.20456, 6.31536, 5.95324, 6.1070199999999994, 6.05209, 6.39693, 6.408530000000001, 5.9269300000000005, 5.51745, 6.715380000000001, 6.47697, 6.85646, 6.85646, 6.32972, 7.6009, 6.802389999999999, 6.551080000000001, 6.685860000000001, 6.8977, 5.70378, 6.16331, 6.95655, 7.1309, 6.2634, 6.3716099999999996, 6.10925, 6.93537, 6.51323, 5.8141300000000005, 6.56244, 6.834110000000001, 6.23245, 7.1309, 6.57925, 6.30992, 6.34388, 7.24423, 6.43775, 5.34711, 7.279319999999999, 6.83195, 6.58064, 5.99146, 6.33683, 6.802389999999999, 5.8999, 6.29157, 5.59842, 6.5582, 6.354369999999999, 5.95324, 6.62007, 5.9454199999999995, 5.4161, 5.64545, 5.7525699999999995, 6.28972, 6.2952699999999995, 7.46737, 7.1309, 6.05209, 6.551080000000001, 6.63857, 6.621410000000001, 5.82305, 6.85646, 5.78074, 6.12905, 6.02345, 5.70378, 5.883319999999999, 6.62007, 6.2146099999999995, 6.907760000000001, 5.9269300000000005, 5.59842, 6.58617, 6.901739999999999, 5.8579300000000005, 6.8426800000000005, 6.62007, 5.99146, 6.45362, 6.907760000000001, 6.17379, 6.98008, 5.81711, 6.44254, 6.30079, 6.745239999999999, 6.7901, 6.51471, 6.17379, 6.07993, 6.11589, 7.64969, 6.658010000000001, 5.74939, 6.893660000000001, 6.33328, 8.02027, 6.57786, 6.386880000000001, 7.0255399999999995, 5.9269300000000005, 5.8141300000000005, 6.2634, 6.85646, 5.86647, 6.01616, 5.78383, 6.278519999999999, 6.907760000000001, 6.30992, 6.10925, 6.785589999999999, 6.47697, 7.04752, 5.4161, 6.62007, 6.04025, 7.1107, 6.85646, 6.39693, 6.36819, 6.62007, 6.04025, 6.86693, 6.43775, 5.940169999999999, 6.35957, 6.2146099999999995, 6.253830000000001, 6.1025599999999995, 6.1025599999999995, 6.4552, 6.15698, 7.346010000000001, 6.96885, 5.8861, 6.885510000000001, 6.1717, 7.143619999999999, 6.907760000000001, 6.354369999999999, 5.958419999999999, 5.98645, 6.745239999999999, 5.8579300000000005, 6.882439999999999, 6.68461, 6.715380000000001, 5.8861, 6.90575, 6.10925, 6.16331, 6.10925, 6.65286, 7.24423, 6.39693, 6.86693, 5.65948, 5.940169999999999, 6.26149, 6.551080000000001, 6.29157, 6.07535, 6.59715, 6.77992, 5.50126, 6.77422, 6.2634, 5.82008, 6.85646, 6.4708, 6.8426800000000005, 6.15698, 6.893660000000001, 6.43775, 5.8999, 5.99146, 6.33328, 6.9707300000000005, 6.6567300000000005, 6.745239999999999, 6.93049, 6.16331, 6.95655, 6.694560000000001, 6.6783399999999995, 6.849069999999999, 6.72743, 6.6280399999999995, 6.1070199999999994, 6.712960000000001, 7.346010000000001, 5.97635, 6.29157, 6.86901, 6.63726, 6.0282800000000005, 6.39859, 5.42935, 6.6592899999999995, 6.907760000000001, 6.47697, 6.551080000000001, 6.551080000000001, 6.77422, 6.715380000000001, 6.68461, 5.70378, 6.802389999999999, 6.45834, 5.8141300000000005, 5.4161, 6.95655, 6.88755, 6.23441, 6.463030000000001, 6.65286, 7.0255399999999995, 6.39693, 5.8141300000000005, 7.226210000000001, 6.62007, 6.3952599999999995, 6.06379, 5.42053, 5.8861, 6.52209, 5.8861, 7.20786, 6.05209, 6.02102, 6.05209, 5.52146, 5.95584, 6.8966899999999995, 6.8426800000000005, 5.52146, 6.06379, 6.2205900000000005, 6.86066, 6.0822199999999995, 6.9177100000000005, 7.04752, 6.51471, 6.3952599999999995, 6.70073, 6.07993, 6.46925, 5.940169999999999, 6.22654, 6.39693, 7.17012, 6.58755, 6.8254600000000005, 7.04752, 6.50429, 5.99146, 6.62007, 6.62007, 6.2146099999999995, 6.29895, 6.95655, 5.8579300000000005, 6.745239999999999, 7.20786, 7.04316, 6.8533, 5.70378, 5.93225, 6.58617, 6.49072, 6.68461, 5.78383, 6.84055, 5.2983199999999995, 6.35957, 5.99146, 5.82008, 6.10925, 6.04025, 6.51175, 6.39693, 6.59715, 5.01064, 6.73102, 6.77422, 6.30992, 5.5606800000000005, 6.802389999999999, 6.697030000000001, 6.8426800000000005, 6.30992, 7.01392, 7.24423, 6.354369999999999, 6.602589999999999, 6.9622399999999995, 6.424869999999999, 6.259580000000001, 6.593039999999999 ], "y0": "married?" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(82, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(82, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "no", "line": { "width": 0 }, "marker": { "color": "hsla(82, 50%, 50%,0.9)", "line": { "color": "hsla(82, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "triangle-left" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "no", "showlegend": false, "side": "positive", "span": [ 6.364698296975629, 6.432691886589439 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 6.55536, 6.39693, 6.907760000000001, 6.50279, 7.313219999999999, 6.10925, 6.993930000000001, 6.614730000000001, 6.30992, 6.62007, 6.17379, 5.99146, 6.2146099999999995, 6.65286, 6.67203, 6.30992, 6.48158, 6.907760000000001, 5.8999, 6.6995, 6.745239999999999, 6.05209, 6.745239999999999, 5.73334, 7.111510000000001, 6.563860000000001, 6.43775, 7.346010000000001, 6.907760000000001, 5.463830000000001, 5.43808, 6.77422, 6.77878, 6.47697, 6.818919999999999, 6.43455, 5.68358, 6.2146099999999995, 6.10925, 6.6783399999999995, 7.1309, 6.39693, 6.77422, 5.96615, 5.90808, 6.39693, 6.16331, 5.0814, 6.49072, 4.605169999999999, 6.802389999999999, 5.8579300000000005, 6.7901, 6.65286, 6.86485, 6.92461, 7.26193, 5.99146, 6.85646, 6.73815, 6.86693, 5.4161, 6.30079, 5.76832, 6.51471, 6.16542, 5.93489, 7.04752, 6.19644, 6.551080000000001, 5.7525699999999995, 6.318969999999999, 5.89715, 5.9454199999999995, 6.52942, 6.4677, 6.06611, 5.70378, 7.04752, 6.768489999999999, 6.2480400000000005, 6.33328, 6.48311, 6.785589999999999, 7.338889999999999, 7.0255399999999995, 7.00307, 5.8999, 5.7365699999999995, 6.62007, 6.36475, 6.90575, 6.65286, 5.7525699999999995, 6.025869999999999, 5.9269300000000005, 6.20456, 6.31536, 5.95324, 6.1070199999999994, 6.05209, 6.39693, 6.408530000000001, 5.9269300000000005, 5.51745, 6.715380000000001, 6.47697, 6.85646, 6.85646, 6.32972, 7.6009, 6.802389999999999, 6.551080000000001, 6.685860000000001, 6.8977, 5.70378, 6.16331, 6.95655, 7.1309, 6.2634, 6.3716099999999996, 6.10925, 6.93537, 6.51323, 5.8141300000000005, 6.56244, 6.834110000000001, 6.23245, 7.1309, 6.57925, 6.30992, 6.34388, 7.24423, 6.43775, 5.34711, 7.279319999999999, 6.83195, 6.58064, 5.99146, 6.33683, 6.802389999999999, 5.8999, 6.29157, 5.59842, 6.5582, 6.354369999999999, 5.95324, 6.62007, 5.9454199999999995, 5.4161, 5.64545, 5.7525699999999995, 6.28972, 6.2952699999999995, 7.46737, 7.1309, 6.05209, 6.551080000000001, 6.63857, 6.621410000000001, 5.82305, 6.85646, 5.78074, 6.12905, 6.02345, 5.70378, 5.883319999999999, 6.62007, 6.2146099999999995, 6.907760000000001, 5.9269300000000005, 5.59842, 6.58617, 6.901739999999999, 5.8579300000000005, 6.8426800000000005, 6.62007, 5.99146, 6.45362, 6.907760000000001, 6.17379, 6.98008, 5.81711, 6.44254, 6.30079, 6.745239999999999, 6.7901, 6.51471, 6.17379, 6.07993, 6.11589, 7.64969, 6.658010000000001, 5.74939, 6.893660000000001, 6.33328, 8.02027, 6.57786, 6.386880000000001, 7.0255399999999995, 5.9269300000000005, 5.8141300000000005, 6.2634, 6.85646, 5.86647, 6.01616, 5.78383, 6.278519999999999, 6.907760000000001, 6.30992, 6.10925, 6.785589999999999, 6.47697, 7.04752, 5.4161, 6.62007, 6.04025, 7.1107, 6.85646, 6.39693, 6.36819, 6.62007, 6.04025, 6.86693, 6.43775, 5.940169999999999, 6.35957, 6.2146099999999995, 6.253830000000001, 6.1025599999999995, 6.1025599999999995, 6.4552, 6.15698, 7.346010000000001, 6.96885, 5.8861, 6.885510000000001, 6.1717, 7.143619999999999, 6.907760000000001, 6.354369999999999, 5.958419999999999, 5.98645, 6.745239999999999, 5.8579300000000005, 6.882439999999999, 6.68461, 6.715380000000001, 5.8861, 6.90575, 6.10925, 6.16331, 6.10925, 6.65286, 7.24423, 6.39693, 6.86693, 5.65948, 5.940169999999999, 6.26149, 6.551080000000001, 6.29157, 6.07535, 6.59715, 6.77992, 5.50126, 6.77422, 6.2634, 5.82008, 6.85646, 6.4708, 6.8426800000000005, 6.15698, 6.893660000000001, 6.43775, 5.8999, 5.99146, 6.33328, 6.9707300000000005, 6.6567300000000005, 6.745239999999999, 6.93049, 6.16331, 6.95655, 6.694560000000001, 6.6783399999999995, 6.849069999999999, 6.72743, 6.6280399999999995, 6.1070199999999994, 6.712960000000001, 7.346010000000001, 5.97635, 6.29157, 6.86901, 6.63726, 6.0282800000000005, 6.39859, 5.42935, 6.6592899999999995, 6.907760000000001, 6.47697, 6.551080000000001, 6.551080000000001, 6.77422, 6.715380000000001, 6.68461, 5.70378, 6.802389999999999, 6.45834, 5.8141300000000005, 5.4161, 6.95655, 6.88755, 6.23441, 6.463030000000001, 6.65286, 7.0255399999999995, 6.39693, 5.8141300000000005, 7.226210000000001, 6.62007, 6.3952599999999995, 6.06379, 5.42053, 5.8861, 6.52209, 5.8861, 7.20786, 6.05209, 6.02102, 6.05209, 5.52146, 5.95584, 6.8966899999999995, 6.8426800000000005, 5.52146, 6.06379, 6.2205900000000005, 6.86066, 6.0822199999999995, 6.9177100000000005, 7.04752, 6.51471, 6.3952599999999995, 6.70073, 6.07993, 6.46925, 5.940169999999999, 6.22654, 6.39693, 7.17012, 6.58755, 6.8254600000000005, 7.04752, 6.50429, 5.99146, 6.62007, 6.62007, 6.2146099999999995, 6.29895, 6.95655, 5.8579300000000005, 6.745239999999999, 7.20786, 7.04316, 6.8533, 5.70378, 5.93225, 6.58617, 6.49072, 6.68461, 5.78383, 6.84055, 5.2983199999999995, 6.35957, 5.99146, 5.82008, 6.10925, 6.04025, 6.51175, 6.39693, 6.59715, 5.01064, 6.73102, 6.77422, 6.30992, 5.5606800000000005, 6.802389999999999, 6.697030000000001, 6.8426800000000005, 6.30992, 7.01392, 7.24423, 6.354369999999999, 6.602589999999999, 6.9622399999999995, 6.424869999999999, 6.259580000000001, 6.593039999999999, 6.802389999999999, 6.58893, 6.43775, 6.2146099999999995, 6.2634, 5.97635, 6.13123, 6.04025, 6.99485, 6.58617, 6.6567300000000005, 6.07993, 6.551080000000001, 7.59287, 6.17587, 5.8693, 6.963189999999999, 6.43775, 6.73459, 6.551080000000001, 6.66823, 5.78383, 6.51471, 5.70378, 6.2634, 6.90575, 6.29157, 7.09008, 6.2146099999999995, 6.63068, 6.795710000000001, 6.682110000000001, 6.19236, 6.12249, 6.907760000000001, 5.68698, 6.12249, 6.14847, 6.77992, 6.62007, 6.8966899999999995, 6.802389999999999, 6.07993, 5.88053, 7.2998, 6.10925, 5.4161, 6.9256, 6.38856, 6.802389999999999, 5.86079, 5.99894, 6.9966800000000005, 6.68461, 5.39363, 5.96615, 5.70378, 6.52209, 5.96615, 7.43838, 5.9135, 6.6896, 6.14419, 7.04752, 6.692080000000001, 6.013719999999999, 6.31355, 6.224559999999999, 6.07304, 6.2146099999999995, 6.802389999999999, 5.95324, 5.8579300000000005, 6.33683, 5.97889, 6.2146099999999995, 6.34388, 6.62007, 6.8977, 7.40914, 7.18917, 5.70378, 6.1070199999999994, 6.30992, 6.36819, 6.23637, 5.52146, 6.47697, 6.68461, 6.36303, 7.507689999999999, 6.748760000000001, 5.5797300000000005, 6.633319999999999, 7.6009, 6.04025, 6.4677, 7.522939999999999, 5.7525699999999995, 6.551080000000001, 6.47697, 6.0330900000000005, 6.802389999999999, 6.79122, 5.8861, 5.82305, 7.71869, 5.52146, 5.39363, 7.401839999999999, 5.43808, 5.95324, 5.8999, 6.2146099999999995, 6.2804, 7.6009, 6.39693, 5.958419999999999, 6.62007, 5.89715, 6.06611, 6.2146099999999995, 7.313219999999999, 6.0845, 6.82437, 5.48064, 6.29157, 7.2998, 5.83188, 6.3952599999999995, 6.95655, 6.07993, 6.27099, 6.6592899999999995, 6.30992, 6.58617, 7.43838, 6.1181, 6.90575, 6.2146099999999995, 6.899719999999999, 5.76832, 5.70378, 6.035480000000001, 6.206580000000001, 6.39859, 6.551080000000001, 6.39693, 7.09008, 7.09008, 5.70378, 6.43775, 6.02345, 5.9269300000000005, 6.3716099999999996, 6.72743, 7.1309, 6.551080000000001, 6.2634, 6.646389999999999, 6.621410000000001, 5.5797300000000005, 6.07993, 6.802389999999999, 6.30992, 6.7226300000000005, 5.4161, 6.47697, 5.50126, 6.72743, 6.583410000000001, 6.44731, 7.24423, 5.82895, 6.85118, 5.67675, 6.62936, 6.2146099999999995, 6.73815, 6.90575, 6.802389999999999, 6.77422, 6.1944099999999995, 6.08904, 6.70073, 6.802389999999999, 6.69827, 6.593039999999999, 5.99146, 6.85646, 5.01064, 6.45362, 6.745239999999999, 6.85646, 6.79347, 6.2146099999999995, 5.65249, 6.745239999999999, 5.8260000000000005, 6.60394, 6.72623, 6.2146099999999995, 6.39693, 7.1507, 6.317159999999999, 7.00307, 6.35611, 6.85646, 5.8579300000000005, 6.55962, 6.7334, 6.18415, 6.05209, 6.802389999999999, 6.68461, 5.84354, 6.46925, 6.84055, 6.787839999999999, 5.99894, 7.1107, 6.593039999999999, 6.30992, 6.83518, 6.77878, 6.967910000000001, 6.68461, 6.77765, 6.90575, 6.30992, 5.8999, 5.8861, 6.23637, 7.216710000000001, 6.65286, 5.78383, 6.2146099999999995, 6.694560000000001, 7.027310000000001, 5.84644, 6.2146099999999995, 6.88857, 7.195189999999999, 5.76205, 5.68698, 6.49527, 6.51915, 6.1203, 7.00307, 5.7365699999999995, 5.7365699999999995, 6.2146099999999995, 5.47227, 6.2146099999999995, 6.72743, 7.04752, 6.30992, 5.70378, 7.251339999999999, 7.17012, 6.551080000000001, 5.7365699999999995, 5.64191, 6.21261, 6.47697, 6.95655, 5.61313, 6.62672, 6.23441, 7.2717, 5.7462, 6.056780000000001, 5.8944, 5.84932, 6.06843, 5.53339, 7.2998, 6.49375, 5.7365699999999995, 5.76832, 5.5797300000000005, 6.23832, 5.79606, 6.354369999999999, 5.52146, 6.19644, 6.19236, 6.49979, 6.6253899999999994, 6.01616, 6.48158, 5.7525699999999995, 6.14633, 6.97261, 6.712960000000001, 6.16331, 6.3716099999999996, 6.62007, 6.30992, 6.47697, 6.62007, 6.551080000000001, 6.18002, 7.18917, 6.745239999999999, 6.19032, 5.96358, 7.313219999999999, 6.39693, 7.09008, 6.14204, 5.5797300000000005, 6.11147, 5.66988, 6.35957, 5.72031, 6.51471, 5.73334, 6.39693, 5.90808, 5.9269300000000005, 6.2186, 6.68461, 6.13123, 6.643789999999999, 5.66988, 6.39693, 6.06611, 6.0822199999999995, 6.77878, 6.57786, 5.43808, 5.8141300000000005, 6.907760000000001, 6.3315, 6.58617, 6.86485, 6.04025, 6.90575, 6.768489999999999, 6.7901, 6.56244, 6.253830000000001, 6.57228, 6.05209, 5.93225, 5.273, 6.2186, 6.1717, 6.47697, 6.05209, 6.2146099999999995, 5.8579300000000005, 6.86693, 6.36303, 5.19296, 6.39693, 7.1309, 5.95584, 6.7093, 6.62007, 6.912739999999999, 6.2634, 6.41017, 6.556780000000001, 5.8141300000000005, 6.30992, 6.39693, 6.26149, 6.84055, 5.94803, 6.65544, 6.3081 ], "y0": "married?" }, { "fillcolor": "hsla(164, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(164, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "yes", "line": { "color": "hsla(164, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(164, 70%, 70%,1)", "line": { "color": "hsla(164, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "triangle-right" }, "meanline": { "color": "hsla(164, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage yes", "orientation": "h", "pointpos": -0.6, "points": false, "scalegroup": "yes", "scalemode": "count", "showlegend": true, "side": "negative", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.99942, 5.99146, 7.67322, 7.09008, 5.61677, 6.646389999999999, 7.02643, 6.4552, 7.32975, 6.95845, 7.06902, 6.04025, 6.907760000000001, 7.91936, 6.745239999999999, 6.30079, 7.068169999999999, 6.07535, 6.7417, 7.71869, 6.882439999999999, 6.47697, 6.77878, 6.907760000000001, 6.93342, 7.06902, 6.57368, 6.829789999999999, 7.557989999999999, 6.892639999999999, 7.0255399999999995, 6.57925, 6.47697, 7.1309, 6.551080000000001, 6.882439999999999, 6.907760000000001, 6.682110000000001, 6.39693, 6.48004, 6.60665, 7.00307, 5.78383, 6.94505, 6.9546399999999995, 7.17012, 7.11477, 6.593039999999999, 6.49979, 6.5439099999999994, 6.39192, 6.51471, 6.30992, 6.30992, 7.116389999999999, 6.46925, 7.554860000000001, 6.90675, 6.85646, 5.94803, 6.90575, 6.90575, 7.408530000000001, 7.0076, 6.88857, 7.35947, 6.39693, 7.041410000000001, 6.66696, 6.30992, 7.313219999999999, 6.787839999999999, 6.90575, 6.802389999999999, 7.00307, 7.074960000000001, 7.5606, 6.16331, 5.94803, 6.43775, 7.282760000000001, 6.39693, 6.813439999999999, 6.694560000000001, 6.29157, 6.23048, 6.16331, 6.88755, 6.95655, 7.56008, 6.28227, 6.30992, 6.05912, 6.602589999999999, 7.47307, 6.2146099999999995, 6.95655, 6.90575, 6.461469999999999, 7.09008, 7.46737, 6.829789999999999, 6.60665, 6.74052, 6.745239999999999, 7.6009, 6.62007, 6.551080000000001, 6.663130000000001, 7.60589, 6.53669, 6.5582, 6.16121, 6.19236, 6.2146099999999995, 7.37776, 6.58617, 6.23832, 6.27476, 6.48311, 6.69084, 6.54965, 6.882439999999999, 6.663130000000001, 5.70378, 6.7226300000000005, 7.20786, 6.802389999999999, 6.79122, 6.62007, 6.42162, 6.12249, 6.90575, 6.28227, 6.206580000000001, 5.99146, 6.682110000000001, 6.49677, 7.408530000000001, 6.10925, 6.317159999999999, 6.2146099999999995, 6.551080000000001, 6.25575, 7.0884100000000005, 6.16331, 6.68461, 5.8999, 7.01392, 7.1107, 6.9363399999999995, 6.90575, 6.1070199999999994, 6.85646, 6.44572, 6.551080000000001, 6.84588, 8.10168, 7.31255, 5.99645, 6.90575, 6.802389999999999, 6.2146099999999995, 6.66696, 6.907760000000001, 6.90575, 6.6592899999999995, 8.047189999999999, 6.62407, 7.0076, 6.30992, 6.17379, 6.55393, 6.3952599999999995, 6.24611, 7.78322, 6.60665, 7.12448, 6.507280000000001, 6.461469999999999, 6.8977, 7.82405, 7.75148, 6.62407, 6.2146099999999995, 7.1309, 6.51471, 5.96615, 6.84055, 7.041410000000001, 6.51471, 6.551080000000001, 7.346010000000001, 6.966019999999999, 6.90575, 7.17012, 6.5820300000000005, 7.04752, 6.354369999999999, 6.59578, 7.82405, 6.5467900000000006, 6.551080000000001, 6.39693, 6.88755, 6.39693, 6.39693, 6.65286, 6.36647, 6.622739999999999, 6.90575, 5.7525699999999995, 6.15273, 7.04752, 5.52146, 6.770789999999999, 6.907760000000001, 7.00125, 7.064760000000001, 7.00307, 6.05209, 6.745239999999999, 7.045780000000001, 6.54535, 6.37673, 6.62007, 6.907760000000001, 6.10925, 6.39693, 8.16052, 6.745239999999999, 7.03527, 6.765039999999999, 7.1309, 6.77422, 6.87213, 6.551080000000001, 6.907760000000001, 6.6567300000000005, 6.80017, 7.226210000000001, 6.10925, 6.90575, 6.70073, 7.495539999999999, 8.05516, 6.9256, 7.06987, 6.694560000000001, 6.90575, 6.43775, 6.97261, 7.29709, 7.179310000000001, 7.313219999999999, 6.7226300000000005, 6.82437, 6.715380000000001, 7.173189999999999, 6.62007, 6.7226300000000005, 6.85118, 6.49224, 7.313219999999999, 6.62007, 7.158510000000001, 6.68461, 6.57647, 5.89715, 6.34564, 6.556780000000001, 6.7093, 6.93925, 7.00307, 6.551080000000001, 6.90575, 6.53669, 6.69084, 7.313219999999999, 6.05209, 6.90575, 6.62007, 6.4552, 6.77422, 6.87005, 6.65544, 6.42162, 5.9269300000000005, 6.317159999999999, 6.42972, 6.62007, 6.96508, 6.19236, 6.61607, 5.5606800000000005, 6.57368, 6.2634, 6.715380000000001, 7.408530000000001, 6.17379, 7.333019999999999, 6.37502, 6.317159999999999, 7.04752, 6.68461, 6.98008, 6.912739999999999, 6.86693, 7.3670800000000005, 6.68461, 7.09008, 6.90575, 6.90575, 6.62007, 6.45362, 6.47697, 6.9431199999999995, 6.90575, 6.10925, 6.67203, 6.7334, 7.34278, 6.90575, 6.658010000000001, 6.9256, 6.90575, 6.91075, 6.6592899999999995, 6.6592899999999995, 6.16331, 7.441319999999999, 6.47851, 7.07834, 6.745239999999999, 7.20786, 6.36475, 6.63857, 7.475910000000001, 6.62007, 6.4892, 7.00307, 6.56948, 7.43838, 7.15383, 7.064760000000001, 6.88755, 7.26193, 6.23245, 6.30445, 6.715380000000001, 7.313219999999999, 7.37776, 5.8579300000000005, 6.85646, 6.2441699999999996, 6.90575, 6.907760000000001, 6.272880000000001, 6.66568, 7.481560000000001, 7.04752, 6.61338, 6.40688, 5.8579300000000005, 7.57558, 6.83518, 6.38856, 6.768489999999999, 6.90575, 6.39693, 6.34739, 7.1507, 6.58617, 7.282760000000001, 7.00307, 6.66058, 6.58064, 6.90575, 6.10925, 6.64249, 6.715380000000001, 6.62007, 7.1309, 5.99146, 6.95655, 6.65286, 6.16331, 6.24611, 7.1309, 7.1333, 7.24423, 6.04025, 6.86901, 6.802389999999999, 6.70073, 6.1203, 6.90575, 7.313219999999999, 6.54822, 6.95655, 7.50108, 6.39693, 7.07918, 5.8579300000000005, 5.70378, 6.7369699999999995, 7.745, 6.87213, 6.39693, 6.30628, 6.8773, 6.708080000000001, 6.818919999999999, 7.041410000000001, 6.882439999999999, 6.94986, 6.703189999999999, 6.37502, 7.03615, 7.37776, 5.66988, 6.907760000000001, 6.882439999999999, 6.752269999999999, 6.48158, 6.47697, 6.802389999999999, 6.984719999999999, 5.9269300000000005, 6.49224, 6.385190000000001, 7.1309, 7.663880000000001, 7.07242, 6.907760000000001, 6.43775, 8.05516, 6.807930000000001, 6.907760000000001, 6.403569999999999, 6.035480000000001, 7.24423, 6.05209, 7.00307, 5.99146, 6.33683, 6.07993, 7.488289999999999, 6.51175, 5.7365699999999995, 6.90575, 6.697030000000001, 6.354369999999999, 6.802389999999999, 6.62007, 6.68461, 6.68835, 5.8260000000000005, 6.85646, 6.44572, 6.95655, 7.20786, 6.3716099999999996, 6.8977, 6.47697, 6.802389999999999, 6.84055, 7.676010000000001, 6.85646, 6.43775, 7.20786, 6.89163, 7.0121199999999995, 6.85646, 6.77422, 6.54965, 6.05209, 6.697030000000001, 6.90575, 6.68461, 6.62007, 7.24423, 6.36819, 6.8844899999999996, 6.62007, 6.745239999999999, 6.19236, 6.39693, 6.85646, 6.7334, 5.98896, 6.48004, 6.55393, 6.5903, 7.02643, 7.15305, 6.19236, 6.43615, 6.6871100000000006, 6.42162, 6.06379, 6.93537, 7.09008, 6.802389999999999, 6.47697, 6.2634, 7.79028, 6.10032, 6.0282800000000005, 7.408530000000001, 6.6174, 6.907760000000001, 6.90575, 5.99146, 6.2441699999999996, 6.00141, 6.79122, 6.9196800000000005, 6.9147300000000005, 6.90575, 6.646389999999999, 6.746410000000001, 6.30992, 6.42972, 6.18826, 6.5467900000000006, 7.522939999999999, 6.7334, 6.07993, 6.907760000000001, 6.90575, 7.04752, 6.66185, 6.47697, 7.23418, 6.54247, 6.753439999999999, 6.51471, 7.034389999999999, 6.65286, 7.262630000000001, 7.20786, 6.90575, 6.30992, 6.984719999999999, 6.30445, 6.05209, 6.34564, 6.95655, 6.49224, 6.62007, 5.82895, 6.39693, 6.06146, 6.43775, 6.03787, 6.3952599999999995, 6.22654, 7.144410000000001, 6.90575, 6.91374, 5.70378, 6.5903, 7.1592899999999995, 6.57786, 6.6783399999999995, 6.72383, 6.41182, 6.53233, 6.907760000000001, 6.7334, 7.236339999999999, 6.20456, 6.10925, 6.715380000000001, 6.72743, 7.084230000000001, 6.97635, 7.20786, 7.00307, 6.35089, 6.59167, 6.461469999999999, 6.984719999999999, 6.53233, 6.646389999999999, 6.39693, 7.459910000000001, 6.19848, 7.0255399999999995, 6.745239999999999, 6.22654, 6.10925, 7.08171, 6.64249, 7.49332, 7.495539999999999, 7.1546199999999995, 7.1309, 6.745239999999999, 6.18415, 5.82895, 6.10925, 6.58617, 6.48158, 6.20456, 7.313219999999999, 6.94022, 6.90575, 6.41836, 6.10925, 7.48717, 7.0193, 6.983789999999999, 6.633319999999999, 6.29157, 7.49109, 6.91672, 6.90575, 6.715380000000001, 6.47697, 7.37212, 6.646389999999999, 7.0184, 6.84055, 7.24423, 7.09008, 6.52942, 7.4553, 7.00307, 6.37502, 7.24423, 6.48158, 6.68461, 6.10925, 6.90575, 6.90575, 7.75577, 6.82437, 6.18415, 6.43775, 6.90575, 7.1107, 6.44572, 6.42162, 6.769639999999999, 6.93245, 6.818919999999999, 6.551080000000001, 6.58617, 6.96508, 6.44572, 6.7093, 6.28972, 7.1082399999999994, 7.135689999999999, 6.49072, 7.251339999999999, 8.51719, 6.807930000000001, 7.14756, 7.33368, 6.77422, 6.60394, 6.68461, 7.1309, 5.99146, 7.201169999999999, 6.10925, 6.68461, 6.39693, 6.927560000000001, 6.85751, 6.95655, 6.08677, 7.24423, 7.1309, 6.17587, 6.30992, 6.36303, 6.77422, 6.2860000000000005, 6.828710000000001, 6.47697, 6.72743, 6.55251, 6.62407, 5.9814099999999994, 6.76273, 7.06902, 5.9269300000000005, 6.80128, 7.313219999999999, 6.966019999999999, 6.6592899999999995, 6.39693, 6.57786, 6.65286, 6.293419999999999, 5.87493, 6.79122, 6.987489999999999, 6.30992, 6.55536, 7.09008, 6.2146099999999995, 7.04752, 6.90575, 6.10925, 6.6783399999999995, 6.39693, 7.259119999999999, 7.43838, 6.47697, 7.1309, 6.77422, 6.2634, 6.739339999999999, 6.47697, 6.90575, 7.279319999999999, 6.815639999999999, 6.65028, 6.27099, 7.17012, 6.354369999999999, 6.29157, 6.802389999999999, 6.602589999999999, 6.47697, 6.58755, 6.77422, 6.907760000000001, 7.09589, 6.882439999999999, 5.45959, 6.05209, 7.67322, 5.8579300000000005, 6.2146099999999995, 7.2957399999999994, 5.84354, 6.802389999999999, 6.58064, 6.2634, 7.00307, 6.90575, 7.21891, 7.503839999999999, 6.45677, 6.950810000000001, 5.97126, 6.23048, 6.15273, 7.57558, 6.96035, 6.3716099999999996, 6.2146099999999995, 6.7334, 6.86066, 6.378430000000001, 6.48004, 7.00307, 6.8200199999999995, 6.47697, 6.90575, 7.39388, 7.4787300000000005, 6.2146099999999995, 6.802389999999999, 6.43775, 7.24065, 6.13773, 6.3952599999999995, 7.1025, 7.04752, 7.09008, 6.77992, 6.9256, 6.035480000000001, 7.22766, 7.475339999999999, 5.72031, 6.272880000000001, 6.01616, 6.27099, 7.91936, 6.85646, 6.354369999999999, 6.2634, 6.51471, 6.92166, 6.253830000000001, 6.745239999999999, 6.30992, 7.3651800000000005, 6.24998, 6.893660000000001, 6.53669, 6.43615, 7.04752, 6.30992, 6.39693, 6.1334, 6.765039999999999, 6.85646, 6.892639999999999, 6.95655, 5.99146, 6.43775, 6.90575, 6.81124, 6.966019999999999, 6.8865300000000005, 6.62007, 7.334980000000001, 6.72743, 6.93245, 7.27031, 7.03878, 7.0255399999999995, 6.10925, 6.83518, 6.77992, 6.68461, 7.696210000000001, 6.53669, 6.52942, 6.126869999999999, 6.54965, 6.715380000000001, 7.31122, 5.8693, 6.90575, 6.0282800000000005, 6.30992, 6.23245, 6.31536, 7.486610000000001, 6.52942, 6.14204, 6.88755, 6.62007, 6.34564, 6.44413, 5.99146, 6.93245, 7.37776, 6.907760000000001, 7.18917, 6.7093, 6.75926, 6.3315, 6.5439099999999994, 6.1717, 7.9459100000000005, 6.77422, 7.424760000000001, 5.70378, 6.43775, 6.90575, 7.6009, 6.90575, 7.46737, 6.694560000000001, 8.16052, 6.984719999999999, 6.802389999999999, 5.99146, 6.802389999999999, 7.32647, 7.1309, 5.96101, 6.62007, 6.84055, 6.58617, 7.1309, 7.00307, 7.78322, 6.62007, 5.7525699999999995, 6.62407, 6.795710000000001, 7.212289999999999, 6.05209, 6.38856, 6.93925, 6.47697, 6.8773, 6.354369999999999, 7.9724699999999995, 6.703189999999999, 6.47697, 6.50429, 6.58617, 6.51471, 6.06611, 6.68461, 6.65544, 7.331060000000001, 6.64118, 6.47697, 7.475910000000001, 6.72743, 7.20786, 6.81124, 7.0201899999999995, 7.279319999999999, 6.80461, 5.99645, 7.10906, 6.40523, 6.77422, 7.01571, 6.54822, 6.14204, 6.47697, 7.24423, 5.93225, 7.46737, 6.69084, 6.47697, 6.85646, 6.88755, 7.24423, 6.95655, 6.67077, 7.313219999999999, 6.98008, 6.75577, 6.566669999999999, 7.09008, 6.697030000000001, 6.79794, 6.2634, 6.61874, 6.64118, 7.1309, 6.98101, 6.90575, 5.90263, 6.17794, 6.77422, 6.96035, 6.6515699999999995, 6.35957, 6.829789999999999, 6.66568, 7.09008, 6.10925, 6.85646, 6.90575, 6.95655, 6.126869999999999, 7.1309, 6.4552, 6.58617, 7.23778, 6.66568, 6.21261, 6.57925, 6.802389999999999, 6.88755, 7.08171, 6.6567300000000005, 7.696210000000001, 6.68461, 6.43775, 6.802389999999999, 6.6592899999999995, 6.48311, 6.408530000000001, 6.84055, 7.17778, 6.2634, 6.4892, 6.95177, 6.785589999999999, 7.033510000000001, 6.57647, 6.23637, 6.530880000000001, 6.43775, 6.90575, 6.30992, 6.85646, 6.79122, 6.30992, 6.62007, 5.76832, 6.81014, 6.551080000000001, 6.56526, 6.551080000000001, 7.09008, 6.9613, 6.7901, 6.95655, 6.65286, 5.9814099999999994, 6.28227, 7.46737, 7.18007, 7.46737, 6.90575, 6.52209, 7.37776, 6.90575, 5.99146, 7.46737, 5.99146, 6.18826, 6.59987, 6.68461, 7.6009, 7.14913, 7.27031, 6.317159999999999, 6.72503, 5.99146, 6.62007, 6.6871100000000006, 7.17012, 6.802389999999999, 5.93754, 6.995769999999999, 6.802389999999999, 6.52356, 6.55251, 6.56526, 6.72383, 7.09008, 6.68461, 6.52209, 7.313219999999999, 6.94698, 6.561030000000001, 6.907760000000001, 7.71869, 5.96615, 6.41673, 6.29157, 7.00307, 6.802389999999999, 6.90375, 6.1944099999999995, 7.09008, 6.90575, 6.47697, 7.26193, 6.60665, 6.424869999999999, 7.37776, 6.13773, 6.907760000000001, 6.858569999999999, 6.745239999999999, 7.495539999999999, 7.1546199999999995, 6.2804, 6.6592899999999995, 6.77422, 6.893660000000001, 6.86693, 7.408530000000001, 6.72743, 6.42972, 6.633319999999999, 7.0579, 6.68461, 7.185389999999999, 7.26543, 7.05099, 6.10925, 6.60123, 7.233460000000001, 6.90575, 6.77194, 6.6567300000000005, 6.3243599999999995, 6.55393, 6.9613, 6.90575, 6.907760000000001, 6.90975, 7.64969, 7.1309, 6.745239999999999, 5.99146, 6.354369999999999, 5.4161, 6.55536, 6.02102, 6.7334, 6.47697, 6.47697, 6.53669, 6.95655, 6.551080000000001, 7.6009, 6.90575, 7.17242, 6.3421199999999995, 6.9196800000000005, 6.51471, 6.85646, 6.551080000000001, 6.35611, 6.90575, 6.34914, 7.696210000000001, 7.17012, 6.802389999999999, 6.253830000000001, 6.90575, 6.48464, 6.49224, 6.82763, 6.90575, 7.014810000000001, 6.2634, 7.04752, 6.90575, 7.20786, 7.02997, 7.803839999999999, 6.31355, 6.89467, 6.829789999999999, 7.17012, 7.54961, 7.28207, 6.69084, 7.1929300000000005, 6.33328, 5.84354, 6.85646, 6.912739999999999, 6.80017, 6.97635, 6.2653, 7.1309, 7.17012, 7.0884100000000005, 7.16627, 6.19644, 6.39693, 5.9814099999999994, 6.90575, 6.90575, 6.6958, 5.01728, 7.279319999999999, 7.136480000000001, 6.608, 6.68461, 7.9831, 6.9828600000000005, 6.30992, 6.2146099999999995, 7.09506, 6.44572, 6.90575, 6.90575, 7.08339, 5.96615, 6.9622399999999995, 7.11233, 6.912739999999999, 6.68461, 6.8254600000000005, 7.346010000000001, 6.68085, 7.24423, 6.62007, 6.1070199999999994, 6.33328, 6.15698, 6.30262, 6.253830000000001, 7.30317, 6.829789999999999, 6.56808, 6.36303, 7.20786, 6.752269999999999, 6.95655, 6.02102, 6.633319999999999, 6.2634, 7.183110000000001, 6.907760000000001, 6.6174, 7.43838, 6.45047, 6.9707300000000005, 6.3952599999999995, 7.09008, 6.49979, 6.94986, 7.06902, 6.68461, 7.22766, 6.68461, 7.1309, 6.975410000000001, 6.2672, 6.50279, 6.551080000000001, 6.59987, 6.7334, 6.2146099999999995, 6.44572, 7.408530000000001, 7.09008, 6.614730000000001, 6.17379, 7.03615, 6.05209, 6.83518, 7.09008, 6.63857, 6.17794, 6.551080000000001, 6.30992, 7.07834, 6.39693, 6.57228, 6.938280000000001, 6.715380000000001, 6.7511, 6.715380000000001, 6.58617, 5.59842, 6.3935900000000006, 7.26193, 6.49072, 6.829789999999999, 6.745239999999999, 6.721430000000001, 6.59715, 6.00389, 6.9828600000000005, 6.62007, 6.85646, 7.04752, 6.23441, 6.551080000000001, 6.14633, 6.563860000000001, 6.73102, 6.2634, 6.3243599999999995, 6.721430000000001, 6.6796, 7.062189999999999, 6.10925, 7.313219999999999, 6.34564, 6.561030000000001, 6.17379, 7.06987, 6.87626, 6.505780000000001, 6.745239999999999, 6.966019999999999, 6.4488900000000005, 7.1309, 6.68461, 6.575080000000001, 6.40192, 6.70073, 6.56808, 6.7334, 6.30992, 7.0775, 6.6796, 6.8384100000000005, 7.03615, 6.85751, 6.745239999999999, 7.313219999999999, 6.86693, 7.08171, 6.85646, 6.47697, 6.47697, 6.28972, 7.46737, 7.2724, 6.61874, 6.30079, 7.0255399999999995, 6.27099, 6.90575, 6.34564, 6.9828600000000005, 7.450080000000001, 6.224559999999999, 6.551080000000001, 6.23441, 7.1309, 6.52209, 7.49332, 6.39192, 6.739339999999999, 7.4832399999999994, 6.16331, 6.68461, 6.90575, 6.90575, 7.1309, 6.86171, 6.715380000000001, 6.551080000000001, 6.33683, 6.9187, 7.0579, 6.35611, 7.02376, 5.5797300000000005, 6.90575, 6.82655, 6.90575, 5.9269300000000005, 7.42833, 5.87212, 6.463030000000001, 7.52833, 6.86797, 6.60665, 6.90575, 6.4677, 7.3651800000000005, 6.748760000000001, 6.77992, 6.975410000000001, 7.43838, 7.82405, 6.5439099999999994, 6.42162, 6.8844899999999996, 7.16085, 6.52209, 6.04025, 5.52146, 6.90575, 7.00307, 6.907760000000001, 6.817830000000001, 7.279319999999999, 6.907760000000001, 7.54961, 7.323169999999999, 6.90575, 6.41017, 6.90575, 6.787839999999999, 6.62007, 7.0967199999999995, 5.9269300000000005, 6.55393, 6.17379, 7.00307, 7.31122, 7.31122, 6.31355, 6.44572, 6.59578, 6.47697, 6.69332, 6.7511, 6.77422, 7.09008, 5.8579300000000005, 7.183110000000001, 7.728860000000001, 6.54965, 7.04752, 7.25488, 6.9256, 6.907760000000001, 5.65249, 7.041410000000001, 6.4599, 6.96035, 7.1333, 6.99942, 6.38012, 7.200419999999999, 7.18007, 7.1309, 6.461469999999999, 6.85646, 7.17012, 7.03527, 6.19848, 6.62007, 7.313219999999999, 6.907760000000001, 6.90575, 7.1452, 5.82895, 6.33683, 6.04025, 6.2146099999999995, 7.8935699999999995, 6.34564, 6.64249, 6.8977, 6.3699, 6.6567300000000005, 6.813439999999999, 6.53669, 6.90575, 6.47697, 6.05209, 7.21524, 6.551080000000001, 6.66568, 6.57925, 6.2146099999999995, 6.8426800000000005, 6.907760000000001, 6.90575, 7.106610000000001, 6.424869999999999, 6.65415, 6.86693, 6.745239999999999, 6.88346, 6.53669, 6.3207699999999996, 7.696210000000001, 7.64779, 7.313219999999999, 6.95655, 6.715380000000001, 6.44254, 6.61338, 6.23245, 6.95655, 6.768489999999999, 7.3981699999999995, 6.68461, 7.12287, 6.813439999999999, 6.752269999999999, 6.551080000000001, 6.7334, 6.318969999999999, 6.79122, 5.95324, 6.745239999999999, 7.1309, 6.54103, 7.06048, 6.24222, 6.68461, 6.05209, 6.78672, 7.09008, 7.1309, 6.47697, 7.1025, 5.9814099999999994, 7.24423, 6.44254, 7.451239999999999, 7.198180000000001, 7.27101, 7.245660000000001, 7.279319999999999, 6.85646, 7.279319999999999, 7.67322, 6.76273, 6.82437, 6.47697, 6.885510000000001, 7.07918, 7.279319999999999, 7.1309, 6.966019999999999, 6.73102, 6.633319999999999, 7.00307, 7.6009, 6.907760000000001, 6.32615, 6.508769999999999, 6.551080000000001, 7.0884100000000005, 6.829789999999999, 7.31986, 6.21661, 7.11802, 6.77422, 7.26193, 6.90575, 7.00307, 5.99146, 7.46737, 6.57786, 6.3081, 6.90575, 6.311730000000001, 6.39693, 6.95655, 6.62007, 6.3952599999999995, 6.48311, 6.39693, 6.90575, 6.60665, 6.90575, 6.318969999999999, 6.802389999999999, 6.70441, 6.51471, 6.77992, 6.68461, 6.29157, 6.40523, 6.18826, 7.24423, 6.83518, 7.09008, 7.84502, 7.1624, 6.813439999999999, 6.907760000000001, 6.68461, 6.14633, 7.17012, 6.53814, 6.882439999999999, 6.36647, 6.47697, 7.54697, 6.60665, 6.68461, 7.408530000000001, 7.2724, 6.46614, 6.90575, 5.7462, 6.36303, 7.04752, 6.551080000000001, 6.58064, 6.17379, 6.83195, 7.20786, 6.62007, 6.95655, 6.90575, 6.34564, 7.09008, 7.014810000000001, 6.73815, 6.65028, 7.03878, 6.10032, 7.266830000000001, 6.95655, 7.20786, 6.602589999999999, 6.551080000000001, 6.87626, 5.16479, 7.54961, 6.551080000000001, 6.49224, 6.58893, 6.60665, 6.907760000000001, 7.64969, 6.9177100000000005, 6.18415, 6.68461, 7.43838, 6.66441, 6.551080000000001, 6.41182, 6.43775, 6.43775, 6.4599, 7.00307, 5.99146, 6.852239999999999, 6.5439099999999994, 6.6515699999999995, 7.522939999999999, 6.16331, 6.551080000000001, 6.907760000000001, 7.04752, 6.44572, 6.3243599999999995, 6.41346, 6.551080000000001, 6.802389999999999, 6.62007, 6.5439099999999994, 6.57925, 6.38012, 6.4151, 6.52209, 6.29157, 6.2146099999999995, 6.97167, 6.75926, 6.66823, 7.37776, 7.1309, 6.90575, 6.10925, 7.408530000000001, 6.39693, 6.04025, 7.0396600000000005, 7.09589, 7.10003, 6.73102, 6.87523, 6.90575, 7.20786, 7.173960000000001, 6.90575, 6.47389, 6.99026, 7.0884100000000005, 6.206580000000001, 6.56526, 6.44572, 6.551080000000001, 6.53379, 6.90575, 6.46614, 6.61338, 6.90575, 6.85646, 6.47389, 6.10925, 6.99118, 6.2441699999999996, 7.1592899999999995, 6.90575, 6.59987, 7.01571, 6.42162, 6.716589999999999, 6.85646, 7.46737, 6.58617, 6.95655, 6.29157, 6.907760000000001, 6.46459, 6.62007, 6.95177, 6.58617, 6.50129, 6.2952699999999995, 6.85646, 6.15698, 6.90575, 7.6009, 7.00307, 6.17379, 6.15273, 6.62007, 7.346010000000001, 6.90575, 6.68461, 6.50429, 7.0942300000000005, 5.78383, 6.54535, 6.3716099999999996, 7.86327, 6.62007, 7.09008, 6.703189999999999, 6.53233, 6.58617, 7.46737, 6.39693, 6.38012, 6.802389999999999, 6.43935, 7.044910000000001, 6.42162, 6.90575, 6.802389999999999, 6.44413, 7.127689999999999, 6.45677, 6.40192, 6.55393, 7.06902, 6.59987, 6.715380000000001, 6.715380000000001, 6.39693, 6.57786, 6.68461, 7.00307, 6.42972, 6.85435, 6.937310000000001, 6.2106, 6.708080000000001, 6.0845, 6.907760000000001, 6.16331, 6.2441699999999996, 6.74406, 6.85646, 6.73221, 5.72031, 7.54961, 6.37673, 6.90575, 6.62007, 6.768489999999999, 6.63595, 5.82895, 6.90575, 6.75577, 6.77194, 6.77422, 5.8999, 6.2146099999999995, 6.2146099999999995, 6.62007, 6.9489, 7.354360000000001, 7.279319999999999, 5.8861, 6.6592899999999995, 7.06305, 6.61338, 7.00307, 6.49224, 6.84588, 6.35611, 6.35611, 6.8977, 7.20786, 6.90575, 7.1309, 7.393260000000001, 6.95655, 6.834110000000001, 6.07993, 7.10988, 6.802389999999999, 6.224559999999999, 6.57925, 6.927560000000001, 6.90575, 7.09008, 7.1309, 6.90575, 6.907760000000001, 6.16542, 6.62007, 7.6009, 6.95655, 6.90575, 6.90575, 6.796819999999999, 6.66568, 6.907760000000001, 6.8533, 6.813439999999999, 7.196689999999999, 6.43615, 6.9147300000000005, 6.77194, 6.90575, 6.90575, 6.47697, 7.0255399999999995, 7.522939999999999, 6.62007, 6.354369999999999, 7.1546199999999995, 6.90575, 6.551080000000001, 6.753439999999999, 6.77422, 7.313219999999999, 6.967910000000001, 6.816739999999999, 7.6009, 6.745239999999999, 7.37588, 6.86485, 6.41346, 6.7093, 6.551080000000001, 6.22654, 7.24423, 6.06146, 6.16331, 7.05359, 6.49224, 6.86171, 6.58617, 7.1309, 6.77422, 7.93737, 6.39693, 6.58617, 7.67322, 6.551080000000001, 6.2146099999999995, 6.77422, 6.99485, 6.45047, 6.66185, 6.94119, 7.21891, 7.57558, 7.495539999999999, 6.10925, 6.59715, 6.03787, 6.556780000000001, 6.354369999999999, 7.6009, 6.83303, 6.551080000000001, 7.279319999999999, 6.354369999999999, 7.925160000000001, 6.77422, 7.183110000000001, 6.1136800000000004, 6.77992, 6.62007, 7.00307, 7.86327, 6.70073, 7.1309, 6.32794, 6.16121, 5.6801699999999995, 6.65286, 6.802389999999999, 6.715380000000001, 6.95655, 6.78333, 6.90575, 6.67582, 6.47697, 6.907760000000001, 6.90575, 6.53233, 6.882439999999999, 7.0255399999999995, 6.23048, 6.715380000000001, 7.872839999999999, 6.49072, 6.90575, 6.4892, 6.63726, 6.3613, 6.79122, 6.53233, 6.05209, 6.697030000000001, 6.8742, 6.08677, 6.6280399999999995, 6.907760000000001, 6.05209, 5.70378, 7.02997, 6.715380000000001, 6.2146099999999995, 6.90575, 7.313219999999999, 6.3699, 6.07074, 6.54822, 6.62007, 6.59987, 6.7226300000000005, 6.51026, 6.907760000000001, 6.50429, 6.47697, 6.58617, 6.77422, 6.8977, 5.9135, 6.17379, 8.047189999999999, 6.93537, 6.2146099999999995, 6.507280000000001, 7.46737, 5.82895, 7.034389999999999, 6.7569300000000005, 6.95655, 6.17794, 6.68461, 7.495539999999999, 6.62007, 6.88755, 6.45205, 6.802389999999999, 6.32794, 6.68461, 8.03916, 6.829789999999999, 6.6745600000000005, 6.714169999999999, 6.43775, 7.00307, 6.43455, 6.90575, 7.346660000000001, 7.6009, 7.10988, 7.24423, 6.7569300000000005, 6.48004, 6.889589999999999, 7.313219999999999, 6.9256, 6.59167, 6.57786, 6.53669, 6.39693, 6.33328, 6.33328, 7.313219999999999, 6.551080000000001, 7.408530000000001, 7.3908, 6.90575, 6.9256, 6.95655, 6.13123, 6.551080000000001, 7.06561, 6.57925, 6.90575, 6.73102, 7.09008, 6.566669999999999, 6.43775, 6.62007, 6.424869999999999, 6.646389999999999, 6.2146099999999995, 6.802389999999999, 6.90575, 6.9613, 6.78672, 6.65286, 7.24423, 7.09008, 6.602589999999999, 6.42162, 7.0422899999999995, 7.034389999999999, 6.59987, 6.44572, 6.20456, 6.57925, 6.38012, 6.16331, 6.818919999999999, 6.551080000000001, 6.53669, 6.95655, 5.76832, 7.2100800000000005, 6.48311, 6.507280000000001, 6.45362, 6.765039999999999, 6.2634, 6.2691, 7.18917, 6.2146099999999995, 6.802389999999999, 6.50129, 6.2634, 7.38647, 6.96885, 6.10925, 7.196689999999999, 6.3403599999999996, 6.818919999999999, 6.72623, 6.90575, 6.7569300000000005, 6.62936, 7.09008, 6.62007, 5.9839400000000005, 6.95655, 7.49332, 6.62007, 6.62007, 6.753439999999999, 6.77422, 6.2653, 7.495539999999999, 6.7334, 6.95655, 6.56526, 6.88755, 7.47307, 6.47697, 6.90575, 6.90575, 7.909860000000001, 6.69084, 6.3716099999999996, 6.52209, 7.106610000000001, 6.40523, 6.69084, 5.627619999999999, 6.6567300000000005, 6.68461, 6.697030000000001, 6.22654, 7.740660000000001, 6.907760000000001, 6.43775, 6.43775, 6.813439999999999, 5.76832, 6.9256, 7.64969, 6.47697, 6.43615, 6.10925, 7.1309, 5.89715, 6.907760000000001, 6.745239999999999, 6.43775, 6.85646, 6.77422, 6.768489999999999, 7.029089999999999, 6.62007, 7.06133, 7.24423, 6.95177, 7.54961, 6.354369999999999, 6.87626, 6.318969999999999, 6.570880000000001, 7.61332, 7.09008, 6.7511, 6.551080000000001, 7.034389999999999, 6.49072, 6.30992, 6.55393, 6.72743, 6.05209, 7.0967199999999995, 6.90575, 6.551080000000001, 6.907760000000001, 6.785589999999999, 6.39693, 6.05209, 6.90575, 6.697030000000001, 6.814539999999999, 6.639880000000001, 6.62007, 7.24423, 6.77194, 6.551080000000001, 6.802389999999999, 5.8999, 6.57228, 7.062189999999999, 6.47697, 6.2441699999999996, 6.829789999999999, 6.95655, 6.907760000000001, 6.38012, 7.293019999999999, 6.91175, 6.45834, 6.556780000000001, 6.5582, 6.91175, 6.45362, 7.1309, 6.8773, 6.955589999999999, 7.80588, 6.9613, 5.4161, 6.907760000000001, 6.90575, 7.18992, 6.90575, 6.385190000000001, 7.31122, 6.6107, 6.807930000000001, 6.79794, 6.1717, 6.16331, 6.6592899999999995, 7.0483899999999995, 6.598510000000001, 6.09131, 7.106610000000001, 6.90575, 7.66153, 7.22548, 6.48768, 6.87213, 7.17012, 6.23245, 6.39693, 7.35244, 7.183110000000001, 6.56948, 8.00637, 7.05272, 6.33328, 6.90575, 6.802389999999999, 6.30992, 6.551080000000001, 6.10925, 6.77422, 6.30992, 6.49979, 6.802389999999999, 7.05704, 7.16858, 6.802389999999999, 6.58617, 6.551080000000001, 7.20564, 7.1507, 6.852239999999999, 7.6009, 6.70564, 5.7525699999999995, 6.90575, 6.11147, 6.95655, 6.84375, 6.95655, 6.8977, 7.34923, 6.93245, 6.34564, 7.03878, 7.400010000000001, 5.8579300000000005, 7.37588, 6.83195, 7.00307, 6.84162, 6.354369999999999, 6.93342, 6.608, 6.85646, 6.61607, 6.056780000000001, 6.90575, 6.697030000000001, 6.5395900000000005, 6.6120399999999995, 6.63726, 7.1309, 6.739339999999999, 7.86327, 6.55393, 6.47697, 6.7511, 6.907760000000001, 6.05912, 6.54535, 6.551080000000001, 7.00307, 6.51471, 7.0422899999999995, 6.57925, 6.66823, 7.1309, 6.551080000000001, 6.44572, 7.00307, 6.253830000000001, 5.99146, 7.2724, 6.907760000000001, 6.90575, 6.3315, 6.3699, 6.39693, 7.82405, 6.95655, 6.09582, 6.07535, 6.90575, 6.8426800000000005, 7.0518600000000005, 6.993930000000001, 6.907760000000001, 6.79122, 6.7511, 6.2146099999999995, 6.78897, 6.67203, 7.259119999999999, 7.6811, 6.745239999999999, 7.27031, 6.721430000000001, 6.90575, 6.563860000000001, 6.99485, 7.37776, 7.06048, 6.30992, 6.84375, 7.0282, 6.66696, 6.90575, 6.47235, 6.56244, 8.0229, 6.90575, 6.6592899999999995, 6.80351, 6.92658, 6.4892, 6.28227, 7.06902, 6.08677, 7.1309, 5.68698, 6.33683, 6.984719999999999, 6.753439999999999, 6.354369999999999, 6.52209, 6.52209, 7.362010000000001, 6.8200199999999995, 6.73102, 6.39693, 6.8773, 6.507280000000001, 6.81014, 6.802389999999999, 6.49072, 7.46737, 6.745239999999999, 6.11147, 6.2634, 7.181589999999999, 6.551080000000001, 7.05618, 5.86079, 6.51619, 6.56948, 6.937310000000001, 6.9256, 6.90575, 6.10925, 6.39693, 7.09008, 6.82437, 6.753439999999999, 6.966019999999999, 6.802389999999999, 7.239210000000001, 6.5582, 6.907760000000001, 6.98008, 6.62407, 5.70378, 6.551080000000001, 6.41673, 7.313219999999999, 6.62007, 6.84588, 6.42162, 6.68461, 6.715380000000001, 6.85646, 6.57786, 5.8579300000000005, 6.2146099999999995, 7.313219999999999, 7.37776, 6.30992, 7.1309, 6.69084, 6.70564, 5.7462, 6.16752, 7.279319999999999, 6.73102, 6.53669, 6.24222, 7.03527, 7.04752, 6.507280000000001, 6.93049, 6.59715, 7.09008, 6.45047, 6.33328, 6.68461, 6.62007, 6.90575, 7.04752, 6.6346300000000005, 6.59167, 6.41836, 7.2724, 6.56526, 7.91936, 6.54103, 6.90575, 7.57558, 6.20456, 6.802389999999999, 7.484369999999999, 6.90575, 6.51471, 5.7462, 6.39693, 6.94698, 7.084230000000001, 6.96885, 6.907760000000001, 7.00307, 7.293019999999999, 7.173189999999999, 6.77422, 6.815639999999999, 6.43294, 6.813439999999999, 6.90575, 6.88857, 6.90575, 7.09008, 6.90575, 7.226210000000001, 7.279319999999999, 6.73102, 6.05912, 6.68461, 6.6592899999999995, 7.91936, 6.507280000000001, 7.00307, 6.47697, 6.551080000000001, 6.90575, 6.2146099999999995, 6.907760000000001, 6.715380000000001, 6.96885, 6.68461, 6.57368, 6.745239999999999, 6.53669, 5.76832, 6.2146099999999995, 6.8426800000000005, 7.520230000000001, 5.5797300000000005, 6.51323, 7.1082399999999994, 6.5582, 7.17012, 6.768489999999999, 6.39693, 7.393260000000001, 6.6958, 6.95177, 6.2146099999999995, 6.5582, 6.9613, 6.4892, 7.676010000000001, 6.715380000000001, 6.907760000000001, 6.3935900000000006, 7.54961, 6.86171, 5.79606, 6.83087, 6.6783399999999995, 6.54535, 6.593039999999999, 6.77422, 6.44572, 7.04752, 7.37776, 7.17012, 6.8426800000000005, 7.00307, 6.126869999999999, 6.50129, 6.8773, 6.56526, 6.354369999999999, 6.96885, 6.575080000000001, 6.62007, 6.42811, 6.752269999999999, 6.90575, 6.78672, 8.12089, 6.829789999999999, 7.00307, 6.2146099999999995, 6.1944099999999995, 7.740660000000001, 6.907760000000001, 6.2146099999999995, 6.96979, 6.68461, 7.14283, 6.139880000000001, 7.1293, 6.89467, 5.43808, 7.183110000000001, 6.5467900000000006, 6.34388, 6.39024, 7.0255399999999995, 6.424869999999999, 6.68461, 6.49979, 7.37776, 6.7901, 6.17379, 6.4488900000000005, 6.614730000000001, 6.60665, 7.09008, 6.51323, 6.93245, 6.6592899999999995, 6.30992, 7.37776, 6.09807, 6.8977, 6.35784, 6.37502, 6.57925, 7.7021, 7.46737, 7.6009, 7.36455, 6.59715, 6.639880000000001, 6.36303, 5.82895, 6.59715, 6.62007, 6.551080000000001, 7.09008, 6.78333, 6.563860000000001, 7.0076, 6.880380000000001, 6.745239999999999, 6.82437, 6.4677, 7.127689999999999, 7.1309, 6.62007, 7.82084, 7.288930000000001, 6.39693, 6.68461, 7.10988, 6.563860000000001, 6.354369999999999, 6.7546, 7.196689999999999, 5.99146, 6.74052, 6.67203, 6.86485, 7.1309, 7.6009, 6.6107, 7.24423, 6.9256, 7.11314, 6.86693, 6.58617, 6.85646, 5.70378, 6.2146099999999995, 6.92363, 6.84588, 6.86171, 6.813439999999999, 6.50279, 5.7589, 6.7417, 7.18917, 6.2146099999999995, 6.93245, 6.78897, 6.74759, 7.00307, 6.3935900000000006, 7.09008, 7.84385, 6.802389999999999, 6.57647, 6.78672, 6.39693, 6.9707300000000005, 8.3082, 7.1309, 7.17012, 6.593039999999999, 6.90575, 6.62007, 6.86693, 6.259580000000001, 6.41999, 5.52146, 6.907760000000001, 7.43838, 6.64509, 7.09008, 6.39693, 7.0255399999999995, 7.903969999999999, 6.745239999999999, 6.80461, 7.037030000000001, 7.04752, 6.47697, 6.65286, 6.76388, 6.90575, 6.87626, 6.90575, 7.1507, 7.07834, 7.21082, 6.52942, 6.701960000000001, 6.8426800000000005, 6.0282800000000005, 6.3207699999999996, 6.24611, 6.57786, 6.18826, 6.975410000000001, 7.16085, 6.30992, 6.83303, 7.61874, 6.48158, 6.44095, 6.99485, 6.907760000000001, 6.8384100000000005, 6.79122, 6.551080000000001, 6.6695, 7.279319999999999, 6.57925, 6.813439999999999, 6.30992, 6.68461, 6.47389, 6.802389999999999, 6.785589999999999, 7.313219999999999, 6.551080000000001, 7.29097, 5.8861, 6.98008, 6.802389999999999, 7.20786, 6.802389999999999, 6.983789999999999, 6.75926, 6.68461, 6.55962, 6.8977, 6.05912, 6.90575, 7.4570300000000005, 7.1309, 6.566669999999999, 6.829789999999999, 6.85646, 6.643789999999999, 6.77422, 7.90101, 6.32794, 6.25767, 7.81883, 6.966019999999999, 6.33328, 6.77422, 6.8384100000000005, 6.62007, 6.813439999999999, 6.551080000000001, 6.920669999999999, 7.195189999999999, 6.62007, 6.3315, 6.69332, 6.745239999999999, 6.90575, 7.0396600000000005, 6.90575, 6.07535, 6.30992, 6.96885, 6.47697, 6.39693, 7.24423, 7.12367, 7.17012, 6.18415, 6.68461, 6.44413, 6.4677, 6.47697, 6.907760000000001, 6.4552, 7.1546199999999995, 7.37776, 7.18917, 6.10925, 6.5903, 7.136480000000001, 5.95584, 7.03878, 6.461469999999999, 6.697030000000001, 5.9839400000000005, 6.66568, 6.2146099999999995, 6.56526, 6.51471, 5.61677, 6.49375, 7.06048, 6.715380000000001, 6.10925, 6.95655, 7.1309, 6.95655, 6.90575, 6.76273, 6.311730000000001, 6.29157, 6.86693, 6.68461, 6.90575, 6.95655, 7.17012, 7.0255399999999995, 6.86171, 7.495539999999999, 6.49224, 6.90575, 6.8865300000000005, 7.57353, 6.602589999999999, 6.30992, 6.23048, 6.5467900000000006, 6.530880000000001, 6.802389999999999, 7.6009, 6.46459, 6.834110000000001, 7.313219999999999, 6.802389999999999, 6.66441, 7.251339999999999, 5.87774, 7.43838, 6.35957, 6.43775, 6.5820300000000005, 6.768489999999999, 7.17012, 5.6733199999999995, 6.90575, 7.281389999999999, 7.17702, 6.90575, 6.95845, 6.44572, 6.583410000000001, 6.91672, 6.90575, 8.229510000000001, 7.027310000000001, 6.551080000000001, 7.136480000000001, 6.71174, 6.74288, 7.0934, 7.200419999999999, 6.83087, 7.37776, 6.79122, 6.67203, 6.55393, 6.39693, 7.46737, 6.802389999999999, 7.165489999999999, 6.62007, 6.90575, 7.0255399999999995, 7.70661, 6.47389, 6.35957, 6.07535, 6.907760000000001, 7.20786, 6.43775, 6.556780000000001, 6.966019999999999, 6.95273, 6.3716099999999996, 6.745239999999999, 6.43133, 6.907760000000001, 6.68461, 6.64898, 6.28972, 7.00307, 6.2146099999999995, 6.66058, 7.016610000000001, 7.09008, 6.85646, 6.90575, 5.66988, 7.09008, 6.53379, 6.84801, 5.99146, 7.21891, 6.90575, 6.745239999999999, 7.07242, 7.6009, 6.817830000000001, 7.346010000000001, 6.6592899999999995, 7.46737, 6.975410000000001, 6.79122, 6.719010000000001, 6.720219999999999, 6.90575, 6.90575, 6.68336, 6.892639999999999, 6.86485, 6.947939999999999, 6.955589999999999, 6.90575, 6.551080000000001, 5.66988, 7.0255399999999995, 7.04752, 6.3935900000000006, 6.807930000000001, 6.74288, 6.802389999999999, 6.4599, 6.354369999999999, 6.18208, 7.398789999999999, 7.37776, 7.35883, 6.47697, 7.18463, 6.745239999999999, 7.05876, 6.84588, 6.68461, 7.64969, 6.59578, 6.715380000000001, 6.04025, 6.507280000000001, 6.23441, 7.098380000000001, 6.2804, 7.6256, 6.633319999999999, 6.6346300000000005, 6.43455, 6.52649, 7.54961, 7.09008, 6.36475, 5.7462, 6.77422, 6.10925, 6.73459, 7.1293, 6.49224, 6.28413, 7.17012, 6.90575, 6.6515699999999995, 6.56948, 6.80461, 6.03787, 7.313219999999999, 6.11589, 6.68461, 7.09008, 5.96615, 8.26873, 6.17794, 6.3935900000000006, 7.12287, 6.43775, 5.95324, 6.6796, 6.758089999999999, 6.68461, 6.90575, 7.495539999999999, 6.84588, 6.745239999999999, 6.21261, 6.10032, 8.048789999999999, 7.313219999999999, 6.802389999999999, 6.745239999999999, 6.907760000000001, 6.90575, 5.82305, 6.90575, 7.17012, 6.2441699999999996, 8.08641, 5.59842, 7.08171, 6.9594, 6.97354, 7.30653, 6.55962, 6.58617, 6.74406, 7.56008, 6.1944099999999995, 7.408530000000001, 6.61338, 6.01616, 6.32794, 7.18007, 6.74052, 6.95655, 6.58617, 6.66568, 6.85646, 6.44572, 7.313219999999999, 7.1309, 5.99146, 6.18826, 5.59842, 6.49224, 6.821110000000001, 6.56526, 6.47697, 6.813439999999999, 7.43838, 6.30262, 6.38351, 6.551080000000001, 5.45959, 6.43775, 6.90575, 6.53233, 6.61874, 6.06843, 6.1203, 7.88231, 6.90575, 6.7569300000000005, 5.7651900000000005, 6.938280000000001, 7.08255, 6.41346, 6.882439999999999, 7.37776, 6.44413, 6.90575, 6.51471, 6.5439099999999994, 6.551080000000001, 6.90575, 7.35372, 7.135689999999999, 7.46737, 6.63595, 6.802389999999999, 7.346010000000001, 6.90575, 6.86693, 7.1309, 5.78383, 6.829789999999999, 6.65286, 6.7334, 7.2998, 6.65415, 6.9256, 6.90575, 6.39693, 6.52209, 6.3699, 6.770789999999999, 6.39693, 6.49072, 6.02345, 7.32251, 6.13123, 6.29711, 7.04752, 6.799060000000001, 6.272880000000001, 6.49527, 6.57925, 6.697030000000001, 6.703189999999999, 7.04752, 6.65286, 6.752269999999999, 6.2146099999999995, 6.42162, 6.90575, 7.014810000000001, 6.62007, 6.85646, 6.745239999999999, 6.9256, 6.58617, 6.51471, 5.96615, 6.90575, 6.52942, 6.16331, 6.56526, 6.813439999999999, 7.09008, 5.8141300000000005, 6.769639999999999, 6.08677, 6.7369699999999995, 7.064760000000001, 7.11883, 6.51175, 7.46737, 6.57228, 6.551080000000001, 7.67322, 6.35957, 6.907760000000001, 6.58617, 5.8579300000000005, 7.1309, 6.57925, 6.43294, 6.39693, 7.46737, 6.95655, 6.54247, 6.3716099999999996, 7.293019999999999, 6.08677, 7.64969, 6.95655, 8.13153, 6.3613, 6.10925, 6.551080000000001, 6.907760000000001, 6.907760000000001, 6.43775, 6.3243599999999995, 6.83518, 6.993930000000001, 6.6567300000000005, 6.984719999999999, 7.062189999999999, 6.907760000000001, 6.77992, 7.195189999999999, 7.185389999999999, 6.07993, 6.01616, 6.72743, 6.33683, 6.70073, 7.20786, 7.0103100000000005, 6.551080000000001, 7.1309, 6.7334, 7.495539999999999, 6.24028, 6.354369999999999, 6.90575, 6.551080000000001, 7.00307, 6.85013, 7.0255399999999995, 6.39693, 7.495539999999999, 6.768489999999999, 6.23441, 6.461469999999999, 6.5395900000000005, 6.907760000000001, 6.05209, 6.28413, 6.126869999999999, 7.12287, 6.745239999999999, 7.21744, 6.39693, 6.49072, 6.47697, 6.05209, 7.24423, 6.802389999999999, 7.09008, 6.44572, 7.00307, 6.966019999999999, 6.721430000000001, 6.62936, 6.813439999999999, 6.28227, 7.64969, 6.9575, 7.3696, 6.461469999999999, 6.90575, 7.20786, 6.78333, 6.57647, 6.5903, 7.00307, 6.74993, 6.57925, 6.907760000000001, 6.16331, 6.59578, 6.802389999999999, 6.272880000000001, 7.014810000000001, 6.2146099999999995, 6.43615, 6.64509, 6.608, 6.68461, 6.58617, 6.62007, 7.00307, 6.95655, 6.12249, 6.62007, 7.09008, 6.83303, 6.98101, 6.6871100000000006, 6.81014, 7.37776, 6.51767, 6.85435, 7.64969, 7.91936, 6.907760000000001, 6.9256, 6.6733, 7.5574699999999995, 6.13773, 6.67203, 6.30992, 6.47697, 6.8956800000000005, 6.56948, 6.33328, 6.802389999999999, 6.9707300000000005, 8.00637, 6.65286, 6.57368, 5.70711, 6.57786, 6.92363, 6.57368, 7.37776, 6.2146099999999995, 7.408530000000001, 7.1155800000000005, 7.91936, 7.09008, 7.37776, 7.1309, 6.58617, 6.14633, 6.6592899999999995, 6.90575, 7.092569999999999, 6.86485, 7.57558, 7.200419999999999, 6.95655, 6.2146099999999995, 6.05209, 6.44254, 6.4599, 6.60394, 6.975410000000001, 7.400010000000001, 8.537, 6.07993, 7.36645, 6.67708, 6.99942, 6.61338, 7.64969, 6.68461, 6.57925, 7.09008, 7.1082399999999994, 6.83518, 7.09008, 6.58617, 5.8861, 6.90575, 6.43615, 6.84162, 7.313219999999999, 6.55962, 6.07993, 6.3952599999999995, 6.633319999999999, 6.42162, 7.09008, 7.313219999999999, 6.30992, 6.79122, 6.720219999999999, 6.66823, 7.2861899999999995, 6.802389999999999, 6.703189999999999, 5.98896, 7.620710000000001, 7.09008, 7.6009, 6.28972, 6.48768, 6.68461, 6.41182, 7.37776, 7.525639999999999, 6.74993, 6.72623, 7.09008, 7.25347, 7.585789999999999, 6.45362, 6.354369999999999, 6.984719999999999, 6.90575, 6.937310000000001, 7.0775, 7.346010000000001, 7.027310000000001, 6.907760000000001, 6.9489, 6.907760000000001, 7.495539999999999, 6.01127, 6.802389999999999, 6.745239999999999, 6.90575, 6.633319999999999, 6.80572, 6.2480400000000005, 6.2634, 6.31355, 7.35819, 6.49677, 6.68461, 6.633319999999999, 7.30317, 6.95655, 6.907760000000001, 5.742999999999999, 6.39693, 7.313219999999999, 7.09008, 6.47697, 7.196689999999999, 6.47697, 6.30262, 6.745239999999999, 7.07412, 6.354369999999999, 6.10925, 6.68461, 7.42357, 6.95655, 6.715380000000001, 6.9828600000000005, 7.02465, 6.49224, 6.49979, 6.27099, 5.8861, 7.393260000000001, 6.829789999999999, 6.32794, 6.28786, 5.9839400000000005, 6.68461, 5.84354, 6.62007, 7.12287, 6.2146099999999995, 6.84162, 7.00307, 6.2146099999999995, 6.983789999999999, 6.35611, 6.17379, 6.95655, 6.39693, 6.88755, 7.04316, 6.90575, 6.84162, 6.45362, 6.83518, 6.85646, 6.46925, 5.99146, 6.62007, 7.00307, 5.99146, 6.22654, 6.633319999999999, 6.77308, 7.1107, 6.95655, 6.967910000000001, 6.995769999999999, 6.66568, 6.594410000000001, 6.90575, 6.5439099999999994, 6.62007, 6.60665, 7.04752, 7.062189999999999, 7.313219999999999, 7.04752, 7.0884100000000005, 6.937310000000001, 6.90575, 6.23441, 6.25767, 6.551080000000001, 6.90575, 7.09008, 6.68461, 6.2146099999999995, 6.386880000000001, 6.44413, 6.58617, 6.10925, 6.90073, 6.745239999999999, 7.2233, 6.8773, 6.813439999999999, 7.037030000000001, 6.40523, 6.2146099999999995, 6.17379, 7.6009, 6.30992, 6.685860000000001, 5.99146, 6.38856, 6.47697, 7.46737, 6.551080000000001, 6.9226399999999995, 6.87213, 6.73102, 6.30992, 7.45298, 5.72359, 6.882439999999999, 5.940169999999999, 6.90675, 6.551080000000001, 6.9147300000000005, 6.85646, 6.563860000000001, 6.381819999999999, 5.78996, 6.769639999999999, 6.73102, 7.06133, 6.68461, 6.2146099999999995, 6.4708, 7.08171, 6.90575, 7.6009, 6.52062, 6.907760000000001, 6.60935, 6.51471, 6.9828600000000005, 6.85646, 6.30992, 7.338889999999999, 6.22654, 6.311730000000001, 7.01392, 6.49224, 6.2205900000000005, 7.44659, 7.388330000000001, 6.85118, 7.24423, 6.632000000000001, 6.90575, 7.10906, 6.944089999999999, 6.83518, 6.222580000000001, 6.84588, 7.17012, 6.52503, 6.2860000000000005, 6.80128, 6.07993 ], "y0": "married?" }, { "box": { "visible": false }, "fillcolor": "rgba(0, 0, 0, 0)", "hoverinfo": "x", "hoveron": "points", "jitter": 0.3, "legendgroup": "yes", "line": { "color": "rgba(0, 0, 0, 0)", "width": 0 }, "marker": { "color": "hsla(164, 70%, 70%,1)", "line": { "color": "hsla(164, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "triangle-right" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": -0.6, "points": "all", "scalegroup": "yes", "showlegend": false, "side": "negative", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.99942, 5.99146, 7.67322, 7.09008, 5.61677, 6.646389999999999, 7.02643, 6.4552, 7.32975, 6.95845, 7.06902, 6.04025, 6.907760000000001, 7.91936, 6.745239999999999, 6.30079, 7.068169999999999, 6.07535, 6.7417, 7.71869, 6.882439999999999, 6.47697, 6.77878, 6.907760000000001, 6.93342, 7.06902, 6.57368, 6.829789999999999, 7.557989999999999, 6.892639999999999, 7.0255399999999995, 6.57925, 6.47697, 7.1309, 6.551080000000001, 6.882439999999999, 6.907760000000001, 6.682110000000001, 6.39693, 6.48004, 6.60665, 7.00307, 5.78383, 6.94505, 6.9546399999999995, 7.17012, 7.11477, 6.593039999999999, 6.49979, 6.5439099999999994, 6.39192, 6.51471, 6.30992, 6.30992, 7.116389999999999, 6.46925, 7.554860000000001, 6.90675, 6.85646, 5.94803, 6.90575, 6.90575, 7.408530000000001, 7.0076, 6.88857, 7.35947, 6.39693, 7.041410000000001, 6.66696, 6.30992, 7.313219999999999, 6.787839999999999, 6.90575, 6.802389999999999, 7.00307, 7.074960000000001, 7.5606, 6.16331, 5.94803, 6.43775, 7.282760000000001, 6.39693, 6.813439999999999, 6.694560000000001, 6.29157, 6.23048, 6.16331, 6.88755, 6.95655, 7.56008, 6.28227, 6.30992, 6.05912, 6.602589999999999, 7.47307, 6.2146099999999995, 6.95655, 6.90575, 6.461469999999999, 7.09008, 7.46737, 6.829789999999999, 6.60665, 6.74052, 6.745239999999999, 7.6009, 6.62007, 6.551080000000001, 6.663130000000001, 7.60589, 6.53669, 6.5582, 6.16121, 6.19236, 6.2146099999999995, 7.37776, 6.58617, 6.23832, 6.27476, 6.48311, 6.69084, 6.54965, 6.882439999999999, 6.663130000000001, 5.70378, 6.7226300000000005, 7.20786, 6.802389999999999, 6.79122, 6.62007, 6.42162, 6.12249, 6.90575, 6.28227, 6.206580000000001, 5.99146, 6.682110000000001, 6.49677, 7.408530000000001, 6.10925, 6.317159999999999, 6.2146099999999995, 6.551080000000001, 6.25575, 7.0884100000000005, 6.16331, 6.68461, 5.8999, 7.01392, 7.1107, 6.9363399999999995, 6.90575, 6.1070199999999994, 6.85646, 6.44572, 6.551080000000001, 6.84588, 8.10168, 7.31255, 5.99645, 6.90575, 6.802389999999999, 6.2146099999999995, 6.66696, 6.907760000000001, 6.90575, 6.6592899999999995, 8.047189999999999, 6.62407, 7.0076, 6.30992, 6.17379, 6.55393, 6.3952599999999995, 6.24611, 7.78322, 6.60665, 7.12448, 6.507280000000001, 6.461469999999999, 6.8977, 7.82405, 7.75148, 6.62407, 6.2146099999999995, 7.1309, 6.51471, 5.96615, 6.84055, 7.041410000000001, 6.51471, 6.551080000000001, 7.346010000000001, 6.966019999999999, 6.90575, 7.17012, 6.5820300000000005, 7.04752, 6.354369999999999, 6.59578, 7.82405, 6.5467900000000006, 6.551080000000001, 6.39693, 6.88755, 6.39693, 6.39693, 6.65286, 6.36647, 6.622739999999999, 6.90575, 5.7525699999999995, 6.15273, 7.04752, 5.52146, 6.770789999999999, 6.907760000000001, 7.00125, 7.064760000000001, 7.00307, 6.05209, 6.745239999999999, 7.045780000000001, 6.54535, 6.37673, 6.62007, 6.907760000000001, 6.10925, 6.39693, 8.16052, 6.745239999999999, 7.03527, 6.765039999999999, 7.1309, 6.77422, 6.87213, 6.551080000000001, 6.907760000000001, 6.6567300000000005, 6.80017, 7.226210000000001, 6.10925, 6.90575, 6.70073, 7.495539999999999, 8.05516, 6.9256, 7.06987, 6.694560000000001, 6.90575, 6.43775, 6.97261, 7.29709, 7.179310000000001, 7.313219999999999, 6.7226300000000005, 6.82437, 6.715380000000001, 7.173189999999999, 6.62007, 6.7226300000000005, 6.85118, 6.49224, 7.313219999999999, 6.62007, 7.158510000000001, 6.68461, 6.57647, 5.89715, 6.34564, 6.556780000000001, 6.7093, 6.93925, 7.00307, 6.551080000000001, 6.90575, 6.53669, 6.69084, 7.313219999999999, 6.05209, 6.90575, 6.62007, 6.4552, 6.77422, 6.87005, 6.65544, 6.42162, 5.9269300000000005, 6.317159999999999, 6.42972, 6.62007, 6.96508, 6.19236, 6.61607, 5.5606800000000005, 6.57368, 6.2634, 6.715380000000001, 7.408530000000001, 6.17379, 7.333019999999999, 6.37502, 6.317159999999999, 7.04752, 6.68461, 6.98008, 6.912739999999999, 6.86693, 7.3670800000000005, 6.68461, 7.09008, 6.90575, 6.90575, 6.62007, 6.45362, 6.47697, 6.9431199999999995, 6.90575, 6.10925, 6.67203, 6.7334, 7.34278, 6.90575, 6.658010000000001, 6.9256, 6.90575, 6.91075, 6.6592899999999995, 6.6592899999999995, 6.16331, 7.441319999999999, 6.47851, 7.07834, 6.745239999999999, 7.20786, 6.36475, 6.63857, 7.475910000000001, 6.62007, 6.4892, 7.00307, 6.56948, 7.43838, 7.15383, 7.064760000000001, 6.88755, 7.26193, 6.23245, 6.30445, 6.715380000000001, 7.313219999999999, 7.37776, 5.8579300000000005, 6.85646, 6.2441699999999996, 6.90575, 6.907760000000001, 6.272880000000001, 6.66568, 7.481560000000001, 7.04752, 6.61338, 6.40688, 5.8579300000000005, 7.57558, 6.83518, 6.38856, 6.768489999999999, 6.90575, 6.39693, 6.34739, 7.1507, 6.58617, 7.282760000000001, 7.00307, 6.66058, 6.58064, 6.90575, 6.10925, 6.64249, 6.715380000000001, 6.62007, 7.1309, 5.99146, 6.95655, 6.65286, 6.16331, 6.24611, 7.1309, 7.1333, 7.24423, 6.04025, 6.86901, 6.802389999999999, 6.70073, 6.1203, 6.90575, 7.313219999999999, 6.54822, 6.95655 ], "y0": "married?" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(164, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(164, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "yes", "line": { "width": 0 }, "marker": { "color": "hsla(164, 50%, 50%,0.9)", "line": { "color": "hsla(164, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "triangle-right" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "yes", "showlegend": false, "side": "negative", "span": [ 6.724718305450393, 6.753961665731927 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 6.99942, 5.99146, 7.67322, 7.09008, 5.61677, 6.646389999999999, 7.02643, 6.4552, 7.32975, 6.95845, 7.06902, 6.04025, 6.907760000000001, 7.91936, 6.745239999999999, 6.30079, 7.068169999999999, 6.07535, 6.7417, 7.71869, 6.882439999999999, 6.47697, 6.77878, 6.907760000000001, 6.93342, 7.06902, 6.57368, 6.829789999999999, 7.557989999999999, 6.892639999999999, 7.0255399999999995, 6.57925, 6.47697, 7.1309, 6.551080000000001, 6.882439999999999, 6.907760000000001, 6.682110000000001, 6.39693, 6.48004, 6.60665, 7.00307, 5.78383, 6.94505, 6.9546399999999995, 7.17012, 7.11477, 6.593039999999999, 6.49979, 6.5439099999999994, 6.39192, 6.51471, 6.30992, 6.30992, 7.116389999999999, 6.46925, 7.554860000000001, 6.90675, 6.85646, 5.94803, 6.90575, 6.90575, 7.408530000000001, 7.0076, 6.88857, 7.35947, 6.39693, 7.041410000000001, 6.66696, 6.30992, 7.313219999999999, 6.787839999999999, 6.90575, 6.802389999999999, 7.00307, 7.074960000000001, 7.5606, 6.16331, 5.94803, 6.43775, 7.282760000000001, 6.39693, 6.813439999999999, 6.694560000000001, 6.29157, 6.23048, 6.16331, 6.88755, 6.95655, 7.56008, 6.28227, 6.30992, 6.05912, 6.602589999999999, 7.47307, 6.2146099999999995, 6.95655, 6.90575, 6.461469999999999, 7.09008, 7.46737, 6.829789999999999, 6.60665, 6.74052, 6.745239999999999, 7.6009, 6.62007, 6.551080000000001, 6.663130000000001, 7.60589, 6.53669, 6.5582, 6.16121, 6.19236, 6.2146099999999995, 7.37776, 6.58617, 6.23832, 6.27476, 6.48311, 6.69084, 6.54965, 6.882439999999999, 6.663130000000001, 5.70378, 6.7226300000000005, 7.20786, 6.802389999999999, 6.79122, 6.62007, 6.42162, 6.12249, 6.90575, 6.28227, 6.206580000000001, 5.99146, 6.682110000000001, 6.49677, 7.408530000000001, 6.10925, 6.317159999999999, 6.2146099999999995, 6.551080000000001, 6.25575, 7.0884100000000005, 6.16331, 6.68461, 5.8999, 7.01392, 7.1107, 6.9363399999999995, 6.90575, 6.1070199999999994, 6.85646, 6.44572, 6.551080000000001, 6.84588, 8.10168, 7.31255, 5.99645, 6.90575, 6.802389999999999, 6.2146099999999995, 6.66696, 6.907760000000001, 6.90575, 6.6592899999999995, 8.047189999999999, 6.62407, 7.0076, 6.30992, 6.17379, 6.55393, 6.3952599999999995, 6.24611, 7.78322, 6.60665, 7.12448, 6.507280000000001, 6.461469999999999, 6.8977, 7.82405, 7.75148, 6.62407, 6.2146099999999995, 7.1309, 6.51471, 5.96615, 6.84055, 7.041410000000001, 6.51471, 6.551080000000001, 7.346010000000001, 6.966019999999999, 6.90575, 7.17012, 6.5820300000000005, 7.04752, 6.354369999999999, 6.59578, 7.82405, 6.5467900000000006, 6.551080000000001, 6.39693, 6.88755, 6.39693, 6.39693, 6.65286, 6.36647, 6.622739999999999, 6.90575, 5.7525699999999995, 6.15273, 7.04752, 5.52146, 6.770789999999999, 6.907760000000001, 7.00125, 7.064760000000001, 7.00307, 6.05209, 6.745239999999999, 7.045780000000001, 6.54535, 6.37673, 6.62007, 6.907760000000001, 6.10925, 6.39693, 8.16052, 6.745239999999999, 7.03527, 6.765039999999999, 7.1309, 6.77422, 6.87213, 6.551080000000001, 6.907760000000001, 6.6567300000000005, 6.80017, 7.226210000000001, 6.10925, 6.90575, 6.70073, 7.495539999999999, 8.05516, 6.9256, 7.06987, 6.694560000000001, 6.90575, 6.43775, 6.97261, 7.29709, 7.179310000000001, 7.313219999999999, 6.7226300000000005, 6.82437, 6.715380000000001, 7.173189999999999, 6.62007, 6.7226300000000005, 6.85118, 6.49224, 7.313219999999999, 6.62007, 7.158510000000001, 6.68461, 6.57647, 5.89715, 6.34564, 6.556780000000001, 6.7093, 6.93925, 7.00307, 6.551080000000001, 6.90575, 6.53669, 6.69084, 7.313219999999999, 6.05209, 6.90575, 6.62007, 6.4552, 6.77422, 6.87005, 6.65544, 6.42162, 5.9269300000000005, 6.317159999999999, 6.42972, 6.62007, 6.96508, 6.19236, 6.61607, 5.5606800000000005, 6.57368, 6.2634, 6.715380000000001, 7.408530000000001, 6.17379, 7.333019999999999, 6.37502, 6.317159999999999, 7.04752, 6.68461, 6.98008, 6.912739999999999, 6.86693, 7.3670800000000005, 6.68461, 7.09008, 6.90575, 6.90575, 6.62007, 6.45362, 6.47697, 6.9431199999999995, 6.90575, 6.10925, 6.67203, 6.7334, 7.34278, 6.90575, 6.658010000000001, 6.9256, 6.90575, 6.91075, 6.6592899999999995, 6.6592899999999995, 6.16331, 7.441319999999999, 6.47851, 7.07834, 6.745239999999999, 7.20786, 6.36475, 6.63857, 7.475910000000001, 6.62007, 6.4892, 7.00307, 6.56948, 7.43838, 7.15383, 7.064760000000001, 6.88755, 7.26193, 6.23245, 6.30445, 6.715380000000001, 7.313219999999999, 7.37776, 5.8579300000000005, 6.85646, 6.2441699999999996, 6.90575, 6.907760000000001, 6.272880000000001, 6.66568, 7.481560000000001, 7.04752, 6.61338, 6.40688, 5.8579300000000005, 7.57558, 6.83518, 6.38856, 6.768489999999999, 6.90575, 6.39693, 6.34739, 7.1507, 6.58617, 7.282760000000001, 7.00307, 6.66058, 6.58064, 6.90575, 6.10925, 6.64249, 6.715380000000001, 6.62007, 7.1309, 5.99146, 6.95655, 6.65286, 6.16331, 6.24611, 7.1309, 7.1333, 7.24423, 6.04025, 6.86901, 6.802389999999999, 6.70073, 6.1203, 6.90575, 7.313219999999999, 6.54822, 6.95655, 7.50108, 6.39693, 7.07918, 5.8579300000000005, 5.70378, 6.7369699999999995, 7.745, 6.87213, 6.39693, 6.30628, 6.8773, 6.708080000000001, 6.818919999999999, 7.041410000000001, 6.882439999999999, 6.94986, 6.703189999999999, 6.37502, 7.03615, 7.37776, 5.66988, 6.907760000000001, 6.882439999999999, 6.752269999999999, 6.48158, 6.47697, 6.802389999999999, 6.984719999999999, 5.9269300000000005, 6.49224, 6.385190000000001, 7.1309, 7.663880000000001, 7.07242, 6.907760000000001, 6.43775, 8.05516, 6.807930000000001, 6.907760000000001, 6.403569999999999, 6.035480000000001, 7.24423, 6.05209, 7.00307, 5.99146, 6.33683, 6.07993, 7.488289999999999, 6.51175, 5.7365699999999995, 6.90575, 6.697030000000001, 6.354369999999999, 6.802389999999999, 6.62007, 6.68461, 6.68835, 5.8260000000000005, 6.85646, 6.44572, 6.95655, 7.20786, 6.3716099999999996, 6.8977, 6.47697, 6.802389999999999, 6.84055, 7.676010000000001, 6.85646, 6.43775, 7.20786, 6.89163, 7.0121199999999995, 6.85646, 6.77422, 6.54965, 6.05209, 6.697030000000001, 6.90575, 6.68461, 6.62007, 7.24423, 6.36819, 6.8844899999999996, 6.62007, 6.745239999999999, 6.19236, 6.39693, 6.85646, 6.7334, 5.98896, 6.48004, 6.55393, 6.5903, 7.02643, 7.15305, 6.19236, 6.43615, 6.6871100000000006, 6.42162, 6.06379, 6.93537, 7.09008, 6.802389999999999, 6.47697, 6.2634, 7.79028, 6.10032, 6.0282800000000005, 7.408530000000001, 6.6174, 6.907760000000001, 6.90575, 5.99146, 6.2441699999999996, 6.00141, 6.79122, 6.9196800000000005, 6.9147300000000005, 6.90575, 6.646389999999999, 6.746410000000001, 6.30992, 6.42972, 6.18826, 6.5467900000000006, 7.522939999999999, 6.7334, 6.07993, 6.907760000000001, 6.90575, 7.04752, 6.66185, 6.47697, 7.23418, 6.54247, 6.753439999999999, 6.51471, 7.034389999999999, 6.65286, 7.262630000000001, 7.20786, 6.90575, 6.30992, 6.984719999999999, 6.30445, 6.05209, 6.34564, 6.95655, 6.49224, 6.62007, 5.82895, 6.39693, 6.06146, 6.43775, 6.03787, 6.3952599999999995, 6.22654, 7.144410000000001, 6.90575, 6.91374, 5.70378, 6.5903, 7.1592899999999995, 6.57786, 6.6783399999999995, 6.72383, 6.41182, 6.53233, 6.907760000000001, 6.7334, 7.236339999999999, 6.20456, 6.10925, 6.715380000000001, 6.72743, 7.084230000000001, 6.97635, 7.20786, 7.00307, 6.35089, 6.59167, 6.461469999999999, 6.984719999999999, 6.53233, 6.646389999999999, 6.39693, 7.459910000000001, 6.19848, 7.0255399999999995, 6.745239999999999, 6.22654, 6.10925, 7.08171, 6.64249, 7.49332, 7.495539999999999, 7.1546199999999995, 7.1309, 6.745239999999999, 6.18415, 5.82895, 6.10925, 6.58617, 6.48158, 6.20456, 7.313219999999999, 6.94022, 6.90575, 6.41836, 6.10925, 7.48717, 7.0193, 6.983789999999999, 6.633319999999999, 6.29157, 7.49109, 6.91672, 6.90575, 6.715380000000001, 6.47697, 7.37212, 6.646389999999999, 7.0184, 6.84055, 7.24423, 7.09008, 6.52942, 7.4553, 7.00307, 6.37502, 7.24423, 6.48158, 6.68461, 6.10925, 6.90575, 6.90575, 7.75577, 6.82437, 6.18415, 6.43775, 6.90575, 7.1107, 6.44572, 6.42162, 6.769639999999999, 6.93245, 6.818919999999999, 6.551080000000001, 6.58617, 6.96508, 6.44572, 6.7093, 6.28972, 7.1082399999999994, 7.135689999999999, 6.49072, 7.251339999999999, 8.51719, 6.807930000000001, 7.14756, 7.33368, 6.77422, 6.60394, 6.68461, 7.1309, 5.99146, 7.201169999999999, 6.10925, 6.68461, 6.39693, 6.927560000000001, 6.85751, 6.95655, 6.08677, 7.24423, 7.1309, 6.17587, 6.30992, 6.36303, 6.77422, 6.2860000000000005, 6.828710000000001, 6.47697, 6.72743, 6.55251, 6.62407, 5.9814099999999994, 6.76273, 7.06902, 5.9269300000000005, 6.80128, 7.313219999999999, 6.966019999999999, 6.6592899999999995, 6.39693, 6.57786, 6.65286, 6.293419999999999, 5.87493, 6.79122, 6.987489999999999, 6.30992, 6.55536, 7.09008, 6.2146099999999995, 7.04752, 6.90575, 6.10925, 6.6783399999999995, 6.39693, 7.259119999999999, 7.43838, 6.47697, 7.1309, 6.77422, 6.2634, 6.739339999999999, 6.47697, 6.90575, 7.279319999999999, 6.815639999999999, 6.65028, 6.27099, 7.17012, 6.354369999999999, 6.29157, 6.802389999999999, 6.602589999999999, 6.47697, 6.58755, 6.77422, 6.907760000000001, 7.09589, 6.882439999999999, 5.45959, 6.05209, 7.67322, 5.8579300000000005, 6.2146099999999995, 7.2957399999999994, 5.84354, 6.802389999999999, 6.58064, 6.2634, 7.00307, 6.90575, 7.21891, 7.503839999999999, 6.45677, 6.950810000000001, 5.97126, 6.23048, 6.15273, 7.57558, 6.96035, 6.3716099999999996, 6.2146099999999995, 6.7334, 6.86066, 6.378430000000001, 6.48004, 7.00307, 6.8200199999999995, 6.47697, 6.90575, 7.39388, 7.4787300000000005, 6.2146099999999995, 6.802389999999999, 6.43775, 7.24065, 6.13773, 6.3952599999999995, 7.1025, 7.04752, 7.09008, 6.77992, 6.9256, 6.035480000000001, 7.22766, 7.475339999999999, 5.72031, 6.272880000000001, 6.01616, 6.27099, 7.91936, 6.85646, 6.354369999999999, 6.2634, 6.51471, 6.92166, 6.253830000000001, 6.745239999999999, 6.30992, 7.3651800000000005, 6.24998, 6.893660000000001, 6.53669, 6.43615, 7.04752, 6.30992, 6.39693, 6.1334, 6.765039999999999, 6.85646, 6.892639999999999, 6.95655, 5.99146, 6.43775, 6.90575, 6.81124, 6.966019999999999, 6.8865300000000005, 6.62007, 7.334980000000001, 6.72743, 6.93245, 7.27031, 7.03878, 7.0255399999999995, 6.10925, 6.83518, 6.77992, 6.68461, 7.696210000000001, 6.53669, 6.52942, 6.126869999999999, 6.54965, 6.715380000000001, 7.31122, 5.8693, 6.90575, 6.0282800000000005, 6.30992, 6.23245, 6.31536, 7.486610000000001, 6.52942, 6.14204, 6.88755, 6.62007, 6.34564, 6.44413, 5.99146, 6.93245, 7.37776, 6.907760000000001, 7.18917, 6.7093, 6.75926, 6.3315, 6.5439099999999994, 6.1717, 7.9459100000000005, 6.77422, 7.424760000000001, 5.70378, 6.43775, 6.90575, 7.6009, 6.90575, 7.46737, 6.694560000000001, 8.16052, 6.984719999999999, 6.802389999999999, 5.99146, 6.802389999999999, 7.32647, 7.1309, 5.96101, 6.62007, 6.84055, 6.58617, 7.1309, 7.00307, 7.78322, 6.62007, 5.7525699999999995, 6.62407, 6.795710000000001, 7.212289999999999, 6.05209, 6.38856, 6.93925, 6.47697, 6.8773, 6.354369999999999, 7.9724699999999995, 6.703189999999999, 6.47697, 6.50429, 6.58617, 6.51471, 6.06611, 6.68461, 6.65544, 7.331060000000001, 6.64118, 6.47697, 7.475910000000001, 6.72743, 7.20786, 6.81124, 7.0201899999999995, 7.279319999999999, 6.80461, 5.99645, 7.10906, 6.40523, 6.77422, 7.01571, 6.54822, 6.14204, 6.47697, 7.24423, 5.93225, 7.46737, 6.69084, 6.47697, 6.85646, 6.88755, 7.24423, 6.95655, 6.67077, 7.313219999999999, 6.98008, 6.75577, 6.566669999999999, 7.09008, 6.697030000000001, 6.79794, 6.2634, 6.61874, 6.64118, 7.1309, 6.98101, 6.90575, 5.90263, 6.17794, 6.77422, 6.96035, 6.6515699999999995, 6.35957, 6.829789999999999, 6.66568, 7.09008, 6.10925, 6.85646, 6.90575, 6.95655, 6.126869999999999, 7.1309, 6.4552, 6.58617, 7.23778, 6.66568, 6.21261, 6.57925, 6.802389999999999, 6.88755, 7.08171, 6.6567300000000005, 7.696210000000001, 6.68461, 6.43775, 6.802389999999999, 6.6592899999999995, 6.48311, 6.408530000000001, 6.84055, 7.17778, 6.2634, 6.4892, 6.95177, 6.785589999999999, 7.033510000000001, 6.57647, 6.23637, 6.530880000000001, 6.43775, 6.90575, 6.30992, 6.85646, 6.79122, 6.30992, 6.62007, 5.76832, 6.81014, 6.551080000000001, 6.56526, 6.551080000000001, 7.09008, 6.9613, 6.7901, 6.95655, 6.65286, 5.9814099999999994, 6.28227, 7.46737, 7.18007, 7.46737, 6.90575, 6.52209, 7.37776, 6.90575, 5.99146, 7.46737, 5.99146, 6.18826, 6.59987, 6.68461, 7.6009, 7.14913, 7.27031, 6.317159999999999, 6.72503, 5.99146, 6.62007, 6.6871100000000006, 7.17012, 6.802389999999999, 5.93754, 6.995769999999999, 6.802389999999999, 6.52356, 6.55251, 6.56526, 6.72383, 7.09008, 6.68461, 6.52209, 7.313219999999999, 6.94698, 6.561030000000001, 6.907760000000001, 7.71869, 5.96615, 6.41673, 6.29157, 7.00307, 6.802389999999999, 6.90375, 6.1944099999999995, 7.09008, 6.90575, 6.47697, 7.26193, 6.60665, 6.424869999999999, 7.37776, 6.13773, 6.907760000000001, 6.858569999999999, 6.745239999999999, 7.495539999999999, 7.1546199999999995, 6.2804, 6.6592899999999995, 6.77422, 6.893660000000001, 6.86693, 7.408530000000001, 6.72743, 6.42972, 6.633319999999999, 7.0579, 6.68461, 7.185389999999999, 7.26543, 7.05099, 6.10925, 6.60123, 7.233460000000001, 6.90575, 6.77194, 6.6567300000000005, 6.3243599999999995, 6.55393, 6.9613, 6.90575, 6.907760000000001, 6.90975, 7.64969, 7.1309, 6.745239999999999, 5.99146, 6.354369999999999, 5.4161, 6.55536, 6.02102, 6.7334, 6.47697, 6.47697, 6.53669, 6.95655, 6.551080000000001, 7.6009, 6.90575, 7.17242, 6.3421199999999995, 6.9196800000000005, 6.51471, 6.85646, 6.551080000000001, 6.35611, 6.90575, 6.34914, 7.696210000000001, 7.17012, 6.802389999999999, 6.253830000000001, 6.90575, 6.48464, 6.49224, 6.82763, 6.90575, 7.014810000000001, 6.2634, 7.04752, 6.90575, 7.20786, 7.02997, 7.803839999999999, 6.31355, 6.89467, 6.829789999999999, 7.17012, 7.54961, 7.28207, 6.69084, 7.1929300000000005, 6.33328, 5.84354, 6.85646, 6.912739999999999, 6.80017, 6.97635, 6.2653, 7.1309, 7.17012, 7.0884100000000005, 7.16627, 6.19644, 6.39693, 5.9814099999999994, 6.90575, 6.90575, 6.6958, 5.01728, 7.279319999999999, 7.136480000000001, 6.608, 6.68461, 7.9831, 6.9828600000000005, 6.30992, 6.2146099999999995, 7.09506, 6.44572, 6.90575, 6.90575, 7.08339, 5.96615, 6.9622399999999995, 7.11233, 6.912739999999999, 6.68461, 6.8254600000000005, 7.346010000000001, 6.68085, 7.24423, 6.62007, 6.1070199999999994, 6.33328, 6.15698, 6.30262, 6.253830000000001, 7.30317, 6.829789999999999, 6.56808, 6.36303, 7.20786, 6.752269999999999, 6.95655, 6.02102, 6.633319999999999, 6.2634, 7.183110000000001, 6.907760000000001, 6.6174, 7.43838, 6.45047, 6.9707300000000005, 6.3952599999999995, 7.09008, 6.49979, 6.94986, 7.06902, 6.68461, 7.22766, 6.68461, 7.1309, 6.975410000000001, 6.2672, 6.50279, 6.551080000000001, 6.59987, 6.7334, 6.2146099999999995, 6.44572, 7.408530000000001, 7.09008, 6.614730000000001, 6.17379, 7.03615, 6.05209, 6.83518, 7.09008, 6.63857, 6.17794, 6.551080000000001, 6.30992, 7.07834, 6.39693, 6.57228, 6.938280000000001, 6.715380000000001, 6.7511, 6.715380000000001, 6.58617, 5.59842, 6.3935900000000006, 7.26193, 6.49072, 6.829789999999999, 6.745239999999999, 6.721430000000001, 6.59715, 6.00389, 6.9828600000000005, 6.62007, 6.85646, 7.04752, 6.23441, 6.551080000000001, 6.14633, 6.563860000000001, 6.73102, 6.2634, 6.3243599999999995, 6.721430000000001, 6.6796, 7.062189999999999, 6.10925, 7.313219999999999, 6.34564, 6.561030000000001, 6.17379, 7.06987, 6.87626, 6.505780000000001, 6.745239999999999, 6.966019999999999, 6.4488900000000005, 7.1309, 6.68461, 6.575080000000001, 6.40192, 6.70073, 6.56808, 6.7334, 6.30992, 7.0775, 6.6796, 6.8384100000000005, 7.03615, 6.85751, 6.745239999999999, 7.313219999999999, 6.86693, 7.08171, 6.85646, 6.47697, 6.47697, 6.28972, 7.46737, 7.2724, 6.61874, 6.30079, 7.0255399999999995, 6.27099, 6.90575, 6.34564, 6.9828600000000005, 7.450080000000001, 6.224559999999999, 6.551080000000001, 6.23441, 7.1309, 6.52209, 7.49332, 6.39192, 6.739339999999999, 7.4832399999999994, 6.16331, 6.68461, 6.90575, 6.90575, 7.1309, 6.86171, 6.715380000000001, 6.551080000000001, 6.33683, 6.9187, 7.0579, 6.35611, 7.02376, 5.5797300000000005, 6.90575, 6.82655, 6.90575, 5.9269300000000005, 7.42833, 5.87212, 6.463030000000001, 7.52833, 6.86797, 6.60665, 6.90575, 6.4677, 7.3651800000000005, 6.748760000000001, 6.77992, 6.975410000000001, 7.43838, 7.82405, 6.5439099999999994, 6.42162, 6.8844899999999996, 7.16085, 6.52209, 6.04025, 5.52146, 6.90575, 7.00307, 6.907760000000001, 6.817830000000001, 7.279319999999999, 6.907760000000001, 7.54961, 7.323169999999999, 6.90575, 6.41017, 6.90575, 6.787839999999999, 6.62007, 7.0967199999999995, 5.9269300000000005, 6.55393, 6.17379, 7.00307, 7.31122, 7.31122, 6.31355, 6.44572, 6.59578, 6.47697, 6.69332, 6.7511, 6.77422, 7.09008, 5.8579300000000005, 7.183110000000001, 7.728860000000001, 6.54965, 7.04752, 7.25488, 6.9256, 6.907760000000001, 5.65249, 7.041410000000001, 6.4599, 6.96035, 7.1333, 6.99942, 6.38012, 7.200419999999999, 7.18007, 7.1309, 6.461469999999999, 6.85646, 7.17012, 7.03527, 6.19848, 6.62007, 7.313219999999999, 6.907760000000001, 6.90575, 7.1452, 5.82895, 6.33683, 6.04025, 6.2146099999999995, 7.8935699999999995, 6.34564, 6.64249, 6.8977, 6.3699, 6.6567300000000005, 6.813439999999999, 6.53669, 6.90575, 6.47697, 6.05209, 7.21524, 6.551080000000001, 6.66568, 6.57925, 6.2146099999999995, 6.8426800000000005, 6.907760000000001, 6.90575, 7.106610000000001, 6.424869999999999, 6.65415, 6.86693, 6.745239999999999, 6.88346, 6.53669, 6.3207699999999996, 7.696210000000001, 7.64779, 7.313219999999999, 6.95655, 6.715380000000001, 6.44254, 6.61338, 6.23245, 6.95655, 6.768489999999999, 7.3981699999999995, 6.68461, 7.12287, 6.813439999999999, 6.752269999999999, 6.551080000000001, 6.7334, 6.318969999999999, 6.79122, 5.95324, 6.745239999999999, 7.1309, 6.54103, 7.06048, 6.24222, 6.68461, 6.05209, 6.78672, 7.09008, 7.1309, 6.47697, 7.1025, 5.9814099999999994, 7.24423, 6.44254, 7.451239999999999, 7.198180000000001, 7.27101, 7.245660000000001, 7.279319999999999, 6.85646, 7.279319999999999, 7.67322, 6.76273, 6.82437, 6.47697, 6.885510000000001, 7.07918, 7.279319999999999, 7.1309, 6.966019999999999, 6.73102, 6.633319999999999, 7.00307, 7.6009, 6.907760000000001, 6.32615, 6.508769999999999, 6.551080000000001, 7.0884100000000005, 6.829789999999999, 7.31986, 6.21661, 7.11802, 6.77422, 7.26193, 6.90575, 7.00307, 5.99146, 7.46737, 6.57786, 6.3081, 6.90575, 6.311730000000001, 6.39693, 6.95655, 6.62007, 6.3952599999999995, 6.48311, 6.39693, 6.90575, 6.60665, 6.90575, 6.318969999999999, 6.802389999999999, 6.70441, 6.51471, 6.77992, 6.68461, 6.29157, 6.40523, 6.18826, 7.24423, 6.83518, 7.09008, 7.84502, 7.1624, 6.813439999999999, 6.907760000000001, 6.68461, 6.14633, 7.17012, 6.53814, 6.882439999999999, 6.36647, 6.47697, 7.54697, 6.60665, 6.68461, 7.408530000000001, 7.2724, 6.46614, 6.90575, 5.7462, 6.36303, 7.04752, 6.551080000000001, 6.58064, 6.17379, 6.83195, 7.20786, 6.62007, 6.95655, 6.90575, 6.34564, 7.09008, 7.014810000000001, 6.73815, 6.65028, 7.03878, 6.10032, 7.266830000000001, 6.95655, 7.20786, 6.602589999999999, 6.551080000000001, 6.87626, 5.16479, 7.54961, 6.551080000000001, 6.49224, 6.58893, 6.60665, 6.907760000000001, 7.64969, 6.9177100000000005, 6.18415, 6.68461, 7.43838, 6.66441, 6.551080000000001, 6.41182, 6.43775, 6.43775, 6.4599, 7.00307, 5.99146, 6.852239999999999, 6.5439099999999994, 6.6515699999999995, 7.522939999999999, 6.16331, 6.551080000000001, 6.907760000000001, 7.04752, 6.44572, 6.3243599999999995, 6.41346, 6.551080000000001, 6.802389999999999, 6.62007, 6.5439099999999994, 6.57925, 6.38012, 6.4151, 6.52209, 6.29157, 6.2146099999999995, 6.97167, 6.75926, 6.66823, 7.37776, 7.1309, 6.90575, 6.10925, 7.408530000000001, 6.39693, 6.04025, 7.0396600000000005, 7.09589, 7.10003, 6.73102, 6.87523, 6.90575, 7.20786, 7.173960000000001, 6.90575, 6.47389, 6.99026, 7.0884100000000005, 6.206580000000001, 6.56526, 6.44572, 6.551080000000001, 6.53379, 6.90575, 6.46614, 6.61338, 6.90575, 6.85646, 6.47389, 6.10925, 6.99118, 6.2441699999999996, 7.1592899999999995, 6.90575, 6.59987, 7.01571, 6.42162, 6.716589999999999, 6.85646, 7.46737, 6.58617, 6.95655, 6.29157, 6.907760000000001, 6.46459, 6.62007, 6.95177, 6.58617, 6.50129, 6.2952699999999995, 6.85646, 6.15698, 6.90575, 7.6009, 7.00307, 6.17379, 6.15273, 6.62007, 7.346010000000001, 6.90575, 6.68461, 6.50429, 7.0942300000000005, 5.78383, 6.54535, 6.3716099999999996, 7.86327, 6.62007, 7.09008, 6.703189999999999, 6.53233, 6.58617, 7.46737, 6.39693, 6.38012, 6.802389999999999, 6.43935, 7.044910000000001, 6.42162, 6.90575, 6.802389999999999, 6.44413, 7.127689999999999, 6.45677, 6.40192, 6.55393, 7.06902, 6.59987, 6.715380000000001, 6.715380000000001, 6.39693, 6.57786, 6.68461, 7.00307, 6.42972, 6.85435, 6.937310000000001, 6.2106, 6.708080000000001, 6.0845, 6.907760000000001, 6.16331, 6.2441699999999996, 6.74406, 6.85646, 6.73221, 5.72031, 7.54961, 6.37673, 6.90575, 6.62007, 6.768489999999999, 6.63595, 5.82895, 6.90575, 6.75577, 6.77194, 6.77422, 5.8999, 6.2146099999999995, 6.2146099999999995, 6.62007, 6.9489, 7.354360000000001, 7.279319999999999, 5.8861, 6.6592899999999995, 7.06305, 6.61338, 7.00307, 6.49224, 6.84588, 6.35611, 6.35611, 6.8977, 7.20786, 6.90575, 7.1309, 7.393260000000001, 6.95655, 6.834110000000001, 6.07993, 7.10988, 6.802389999999999, 6.224559999999999, 6.57925, 6.927560000000001, 6.90575, 7.09008, 7.1309, 6.90575, 6.907760000000001, 6.16542, 6.62007, 7.6009, 6.95655, 6.90575, 6.90575, 6.796819999999999, 6.66568, 6.907760000000001, 6.8533, 6.813439999999999, 7.196689999999999, 6.43615, 6.9147300000000005, 6.77194, 6.90575, 6.90575, 6.47697, 7.0255399999999995, 7.522939999999999, 6.62007, 6.354369999999999, 7.1546199999999995, 6.90575, 6.551080000000001, 6.753439999999999, 6.77422, 7.313219999999999, 6.967910000000001, 6.816739999999999, 7.6009, 6.745239999999999, 7.37588, 6.86485, 6.41346, 6.7093, 6.551080000000001, 6.22654, 7.24423, 6.06146, 6.16331, 7.05359, 6.49224, 6.86171, 6.58617, 7.1309, 6.77422, 7.93737, 6.39693, 6.58617, 7.67322, 6.551080000000001, 6.2146099999999995, 6.77422, 6.99485, 6.45047, 6.66185, 6.94119, 7.21891, 7.57558, 7.495539999999999, 6.10925, 6.59715, 6.03787, 6.556780000000001, 6.354369999999999, 7.6009, 6.83303, 6.551080000000001, 7.279319999999999, 6.354369999999999, 7.925160000000001, 6.77422, 7.183110000000001, 6.1136800000000004, 6.77992, 6.62007, 7.00307, 7.86327, 6.70073, 7.1309, 6.32794, 6.16121, 5.6801699999999995, 6.65286, 6.802389999999999, 6.715380000000001, 6.95655, 6.78333, 6.90575, 6.67582, 6.47697, 6.907760000000001, 6.90575, 6.53233, 6.882439999999999, 7.0255399999999995, 6.23048, 6.715380000000001, 7.872839999999999, 6.49072, 6.90575, 6.4892, 6.63726, 6.3613, 6.79122, 6.53233, 6.05209, 6.697030000000001, 6.8742, 6.08677, 6.6280399999999995, 6.907760000000001, 6.05209, 5.70378, 7.02997, 6.715380000000001, 6.2146099999999995, 6.90575, 7.313219999999999, 6.3699, 6.07074, 6.54822, 6.62007, 6.59987, 6.7226300000000005, 6.51026, 6.907760000000001, 6.50429, 6.47697, 6.58617, 6.77422, 6.8977, 5.9135, 6.17379, 8.047189999999999, 6.93537, 6.2146099999999995, 6.507280000000001, 7.46737, 5.82895, 7.034389999999999, 6.7569300000000005, 6.95655, 6.17794, 6.68461, 7.495539999999999, 6.62007, 6.88755, 6.45205, 6.802389999999999, 6.32794, 6.68461, 8.03916, 6.829789999999999, 6.6745600000000005, 6.714169999999999, 6.43775, 7.00307, 6.43455, 6.90575, 7.346660000000001, 7.6009, 7.10988, 7.24423, 6.7569300000000005, 6.48004, 6.889589999999999, 7.313219999999999, 6.9256, 6.59167, 6.57786, 6.53669, 6.39693, 6.33328, 6.33328, 7.313219999999999, 6.551080000000001, 7.408530000000001, 7.3908, 6.90575, 6.9256, 6.95655, 6.13123, 6.551080000000001, 7.06561, 6.57925, 6.90575, 6.73102, 7.09008, 6.566669999999999, 6.43775, 6.62007, 6.424869999999999, 6.646389999999999, 6.2146099999999995, 6.802389999999999, 6.90575, 6.9613, 6.78672, 6.65286, 7.24423, 7.09008, 6.602589999999999, 6.42162, 7.0422899999999995, 7.034389999999999, 6.59987, 6.44572, 6.20456, 6.57925, 6.38012, 6.16331, 6.818919999999999, 6.551080000000001, 6.53669, 6.95655, 5.76832, 7.2100800000000005, 6.48311, 6.507280000000001, 6.45362, 6.765039999999999, 6.2634, 6.2691, 7.18917, 6.2146099999999995, 6.802389999999999, 6.50129, 6.2634, 7.38647, 6.96885, 6.10925, 7.196689999999999, 6.3403599999999996, 6.818919999999999, 6.72623, 6.90575, 6.7569300000000005, 6.62936, 7.09008, 6.62007, 5.9839400000000005, 6.95655, 7.49332, 6.62007, 6.62007, 6.753439999999999, 6.77422, 6.2653, 7.495539999999999, 6.7334, 6.95655, 6.56526, 6.88755, 7.47307, 6.47697, 6.90575, 6.90575, 7.909860000000001, 6.69084, 6.3716099999999996, 6.52209, 7.106610000000001, 6.40523, 6.69084, 5.627619999999999, 6.6567300000000005, 6.68461, 6.697030000000001, 6.22654, 7.740660000000001, 6.907760000000001, 6.43775, 6.43775, 6.813439999999999, 5.76832, 6.9256, 7.64969, 6.47697, 6.43615, 6.10925, 7.1309, 5.89715, 6.907760000000001, 6.745239999999999, 6.43775, 6.85646, 6.77422, 6.768489999999999, 7.029089999999999, 6.62007, 7.06133, 7.24423, 6.95177, 7.54961, 6.354369999999999, 6.87626, 6.318969999999999, 6.570880000000001, 7.61332, 7.09008, 6.7511, 6.551080000000001, 7.034389999999999, 6.49072, 6.30992, 6.55393, 6.72743, 6.05209, 7.0967199999999995, 6.90575, 6.551080000000001, 6.907760000000001, 6.785589999999999, 6.39693, 6.05209, 6.90575, 6.697030000000001, 6.814539999999999, 6.639880000000001, 6.62007, 7.24423, 6.77194, 6.551080000000001, 6.802389999999999, 5.8999, 6.57228, 7.062189999999999, 6.47697, 6.2441699999999996, 6.829789999999999, 6.95655, 6.907760000000001, 6.38012, 7.293019999999999, 6.91175, 6.45834, 6.556780000000001, 6.5582, 6.91175, 6.45362, 7.1309, 6.8773, 6.955589999999999, 7.80588, 6.9613, 5.4161, 6.907760000000001, 6.90575, 7.18992, 6.90575, 6.385190000000001, 7.31122, 6.6107, 6.807930000000001, 6.79794, 6.1717, 6.16331, 6.6592899999999995, 7.0483899999999995, 6.598510000000001, 6.09131, 7.106610000000001, 6.90575, 7.66153, 7.22548, 6.48768, 6.87213, 7.17012, 6.23245, 6.39693, 7.35244, 7.183110000000001, 6.56948, 8.00637, 7.05272, 6.33328, 6.90575, 6.802389999999999, 6.30992, 6.551080000000001, 6.10925, 6.77422, 6.30992, 6.49979, 6.802389999999999, 7.05704, 7.16858, 6.802389999999999, 6.58617, 6.551080000000001, 7.20564, 7.1507, 6.852239999999999, 7.6009, 6.70564, 5.7525699999999995, 6.90575, 6.11147, 6.95655, 6.84375, 6.95655, 6.8977, 7.34923, 6.93245, 6.34564, 7.03878, 7.400010000000001, 5.8579300000000005, 7.37588, 6.83195, 7.00307, 6.84162, 6.354369999999999, 6.93342, 6.608, 6.85646, 6.61607, 6.056780000000001, 6.90575, 6.697030000000001, 6.5395900000000005, 6.6120399999999995, 6.63726, 7.1309, 6.739339999999999, 7.86327, 6.55393, 6.47697, 6.7511, 6.907760000000001, 6.05912, 6.54535, 6.551080000000001, 7.00307, 6.51471, 7.0422899999999995, 6.57925, 6.66823, 7.1309, 6.551080000000001, 6.44572, 7.00307, 6.253830000000001, 5.99146, 7.2724, 6.907760000000001, 6.90575, 6.3315, 6.3699, 6.39693, 7.82405, 6.95655, 6.09582, 6.07535, 6.90575, 6.8426800000000005, 7.0518600000000005, 6.993930000000001, 6.907760000000001, 6.79122, 6.7511, 6.2146099999999995, 6.78897, 6.67203, 7.259119999999999, 7.6811, 6.745239999999999, 7.27031, 6.721430000000001, 6.90575, 6.563860000000001, 6.99485, 7.37776, 7.06048, 6.30992, 6.84375, 7.0282, 6.66696, 6.90575, 6.47235, 6.56244, 8.0229, 6.90575, 6.6592899999999995, 6.80351, 6.92658, 6.4892, 6.28227, 7.06902, 6.08677, 7.1309, 5.68698, 6.33683, 6.984719999999999, 6.753439999999999, 6.354369999999999, 6.52209, 6.52209, 7.362010000000001, 6.8200199999999995, 6.73102, 6.39693, 6.8773, 6.507280000000001, 6.81014, 6.802389999999999, 6.49072, 7.46737, 6.745239999999999, 6.11147, 6.2634, 7.181589999999999, 6.551080000000001, 7.05618, 5.86079, 6.51619, 6.56948, 6.937310000000001, 6.9256, 6.90575, 6.10925, 6.39693, 7.09008, 6.82437, 6.753439999999999, 6.966019999999999, 6.802389999999999, 7.239210000000001, 6.5582, 6.907760000000001, 6.98008, 6.62407, 5.70378, 6.551080000000001, 6.41673, 7.313219999999999, 6.62007, 6.84588, 6.42162, 6.68461, 6.715380000000001, 6.85646, 6.57786, 5.8579300000000005, 6.2146099999999995, 7.313219999999999, 7.37776, 6.30992, 7.1309, 6.69084, 6.70564, 5.7462, 6.16752, 7.279319999999999, 6.73102, 6.53669, 6.24222, 7.03527, 7.04752, 6.507280000000001, 6.93049, 6.59715, 7.09008, 6.45047, 6.33328, 6.68461, 6.62007, 6.90575, 7.04752, 6.6346300000000005, 6.59167, 6.41836, 7.2724, 6.56526, 7.91936, 6.54103, 6.90575, 7.57558, 6.20456, 6.802389999999999, 7.484369999999999, 6.90575, 6.51471, 5.7462, 6.39693, 6.94698, 7.084230000000001, 6.96885, 6.907760000000001, 7.00307, 7.293019999999999, 7.173189999999999, 6.77422, 6.815639999999999, 6.43294, 6.813439999999999, 6.90575, 6.88857, 6.90575, 7.09008, 6.90575, 7.226210000000001, 7.279319999999999, 6.73102, 6.05912, 6.68461, 6.6592899999999995, 7.91936, 6.507280000000001, 7.00307, 6.47697, 6.551080000000001, 6.90575, 6.2146099999999995, 6.907760000000001, 6.715380000000001, 6.96885, 6.68461, 6.57368, 6.745239999999999, 6.53669, 5.76832, 6.2146099999999995, 6.8426800000000005, 7.520230000000001, 5.5797300000000005, 6.51323, 7.1082399999999994, 6.5582, 7.17012, 6.768489999999999, 6.39693, 7.393260000000001, 6.6958, 6.95177, 6.2146099999999995, 6.5582, 6.9613, 6.4892, 7.676010000000001, 6.715380000000001, 6.907760000000001, 6.3935900000000006, 7.54961, 6.86171, 5.79606, 6.83087, 6.6783399999999995, 6.54535, 6.593039999999999, 6.77422, 6.44572, 7.04752, 7.37776, 7.17012, 6.8426800000000005, 7.00307, 6.126869999999999, 6.50129, 6.8773, 6.56526, 6.354369999999999, 6.96885, 6.575080000000001, 6.62007, 6.42811, 6.752269999999999, 6.90575, 6.78672, 8.12089, 6.829789999999999, 7.00307, 6.2146099999999995, 6.1944099999999995, 7.740660000000001, 6.907760000000001, 6.2146099999999995, 6.96979, 6.68461, 7.14283, 6.139880000000001, 7.1293, 6.89467, 5.43808, 7.183110000000001, 6.5467900000000006, 6.34388, 6.39024, 7.0255399999999995, 6.424869999999999, 6.68461, 6.49979, 7.37776, 6.7901, 6.17379, 6.4488900000000005, 6.614730000000001, 6.60665, 7.09008, 6.51323, 6.93245, 6.6592899999999995, 6.30992, 7.37776, 6.09807, 6.8977, 6.35784, 6.37502, 6.57925, 7.7021, 7.46737, 7.6009, 7.36455, 6.59715, 6.639880000000001, 6.36303, 5.82895, 6.59715, 6.62007, 6.551080000000001, 7.09008, 6.78333, 6.563860000000001, 7.0076, 6.880380000000001, 6.745239999999999, 6.82437, 6.4677, 7.127689999999999, 7.1309, 6.62007, 7.82084, 7.288930000000001, 6.39693, 6.68461, 7.10988, 6.563860000000001, 6.354369999999999, 6.7546, 7.196689999999999, 5.99146, 6.74052, 6.67203, 6.86485, 7.1309, 7.6009, 6.6107, 7.24423, 6.9256, 7.11314, 6.86693, 6.58617, 6.85646, 5.70378, 6.2146099999999995, 6.92363, 6.84588, 6.86171, 6.813439999999999, 6.50279, 5.7589, 6.7417, 7.18917, 6.2146099999999995, 6.93245, 6.78897, 6.74759, 7.00307, 6.3935900000000006, 7.09008, 7.84385, 6.802389999999999, 6.57647, 6.78672, 6.39693, 6.9707300000000005, 8.3082, 7.1309, 7.17012, 6.593039999999999, 6.90575, 6.62007, 6.86693, 6.259580000000001, 6.41999, 5.52146, 6.907760000000001, 7.43838, 6.64509, 7.09008, 6.39693, 7.0255399999999995, 7.903969999999999, 6.745239999999999, 6.80461, 7.037030000000001, 7.04752, 6.47697, 6.65286, 6.76388, 6.90575, 6.87626, 6.90575, 7.1507, 7.07834, 7.21082, 6.52942, 6.701960000000001, 6.8426800000000005, 6.0282800000000005, 6.3207699999999996, 6.24611, 6.57786, 6.18826, 6.975410000000001, 7.16085, 6.30992, 6.83303, 7.61874, 6.48158, 6.44095, 6.99485, 6.907760000000001, 6.8384100000000005, 6.79122, 6.551080000000001, 6.6695, 7.279319999999999, 6.57925, 6.813439999999999, 6.30992, 6.68461, 6.47389, 6.802389999999999, 6.785589999999999, 7.313219999999999, 6.551080000000001, 7.29097, 5.8861, 6.98008, 6.802389999999999, 7.20786, 6.802389999999999, 6.983789999999999, 6.75926, 6.68461, 6.55962, 6.8977, 6.05912, 6.90575, 7.4570300000000005, 7.1309, 6.566669999999999, 6.829789999999999, 6.85646, 6.643789999999999, 6.77422, 7.90101, 6.32794, 6.25767, 7.81883, 6.966019999999999, 6.33328, 6.77422, 6.8384100000000005, 6.62007, 6.813439999999999, 6.551080000000001, 6.920669999999999, 7.195189999999999, 6.62007, 6.3315, 6.69332, 6.745239999999999, 6.90575, 7.0396600000000005, 6.90575, 6.07535, 6.30992, 6.96885, 6.47697, 6.39693, 7.24423, 7.12367, 7.17012, 6.18415, 6.68461, 6.44413, 6.4677, 6.47697, 6.907760000000001, 6.4552, 7.1546199999999995, 7.37776, 7.18917, 6.10925, 6.5903, 7.136480000000001, 5.95584, 7.03878, 6.461469999999999, 6.697030000000001, 5.9839400000000005, 6.66568, 6.2146099999999995, 6.56526, 6.51471, 5.61677, 6.49375, 7.06048, 6.715380000000001, 6.10925, 6.95655, 7.1309, 6.95655, 6.90575, 6.76273, 6.311730000000001, 6.29157, 6.86693, 6.68461, 6.90575, 6.95655, 7.17012, 7.0255399999999995, 6.86171, 7.495539999999999, 6.49224, 6.90575, 6.8865300000000005, 7.57353, 6.602589999999999, 6.30992, 6.23048, 6.5467900000000006, 6.530880000000001, 6.802389999999999, 7.6009, 6.46459, 6.834110000000001, 7.313219999999999, 6.802389999999999, 6.66441, 7.251339999999999, 5.87774, 7.43838, 6.35957, 6.43775, 6.5820300000000005, 6.768489999999999, 7.17012, 5.6733199999999995, 6.90575, 7.281389999999999, 7.17702, 6.90575, 6.95845, 6.44572, 6.583410000000001, 6.91672, 6.90575, 8.229510000000001, 7.027310000000001, 6.551080000000001, 7.136480000000001, 6.71174, 6.74288, 7.0934, 7.200419999999999, 6.83087, 7.37776, 6.79122, 6.67203, 6.55393, 6.39693, 7.46737, 6.802389999999999, 7.165489999999999, 6.62007, 6.90575, 7.0255399999999995, 7.70661, 6.47389, 6.35957, 6.07535, 6.907760000000001, 7.20786, 6.43775, 6.556780000000001, 6.966019999999999, 6.95273, 6.3716099999999996, 6.745239999999999, 6.43133, 6.907760000000001, 6.68461, 6.64898, 6.28972, 7.00307, 6.2146099999999995, 6.66058, 7.016610000000001, 7.09008, 6.85646, 6.90575, 5.66988, 7.09008, 6.53379, 6.84801, 5.99146, 7.21891, 6.90575, 6.745239999999999, 7.07242, 7.6009, 6.817830000000001, 7.346010000000001, 6.6592899999999995, 7.46737, 6.975410000000001, 6.79122, 6.719010000000001, 6.720219999999999, 6.90575, 6.90575, 6.68336, 6.892639999999999, 6.86485, 6.947939999999999, 6.955589999999999, 6.90575, 6.551080000000001, 5.66988, 7.0255399999999995, 7.04752, 6.3935900000000006, 6.807930000000001, 6.74288, 6.802389999999999, 6.4599, 6.354369999999999, 6.18208, 7.398789999999999, 7.37776, 7.35883, 6.47697, 7.18463, 6.745239999999999, 7.05876, 6.84588, 6.68461, 7.64969, 6.59578, 6.715380000000001, 6.04025, 6.507280000000001, 6.23441, 7.098380000000001, 6.2804, 7.6256, 6.633319999999999, 6.6346300000000005, 6.43455, 6.52649, 7.54961, 7.09008, 6.36475, 5.7462, 6.77422, 6.10925, 6.73459, 7.1293, 6.49224, 6.28413, 7.17012, 6.90575, 6.6515699999999995, 6.56948, 6.80461, 6.03787, 7.313219999999999, 6.11589, 6.68461, 7.09008, 5.96615, 8.26873, 6.17794, 6.3935900000000006, 7.12287, 6.43775, 5.95324, 6.6796, 6.758089999999999, 6.68461, 6.90575, 7.495539999999999, 6.84588, 6.745239999999999, 6.21261, 6.10032, 8.048789999999999, 7.313219999999999, 6.802389999999999, 6.745239999999999, 6.907760000000001, 6.90575, 5.82305, 6.90575, 7.17012, 6.2441699999999996, 8.08641, 5.59842, 7.08171, 6.9594, 6.97354, 7.30653, 6.55962, 6.58617, 6.74406, 7.56008, 6.1944099999999995, 7.408530000000001, 6.61338, 6.01616, 6.32794, 7.18007, 6.74052, 6.95655, 6.58617, 6.66568, 6.85646, 6.44572, 7.313219999999999, 7.1309, 5.99146, 6.18826, 5.59842, 6.49224, 6.821110000000001, 6.56526, 6.47697, 6.813439999999999, 7.43838, 6.30262, 6.38351, 6.551080000000001, 5.45959, 6.43775, 6.90575, 6.53233, 6.61874, 6.06843, 6.1203, 7.88231, 6.90575, 6.7569300000000005, 5.7651900000000005, 6.938280000000001, 7.08255, 6.41346, 6.882439999999999, 7.37776, 6.44413, 6.90575, 6.51471, 6.5439099999999994, 6.551080000000001, 6.90575, 7.35372, 7.135689999999999, 7.46737, 6.63595, 6.802389999999999, 7.346010000000001, 6.90575, 6.86693, 7.1309, 5.78383, 6.829789999999999, 6.65286, 6.7334, 7.2998, 6.65415, 6.9256, 6.90575, 6.39693, 6.52209, 6.3699, 6.770789999999999, 6.39693, 6.49072, 6.02345, 7.32251, 6.13123, 6.29711, 7.04752, 6.799060000000001, 6.272880000000001, 6.49527, 6.57925, 6.697030000000001, 6.703189999999999, 7.04752, 6.65286, 6.752269999999999, 6.2146099999999995, 6.42162, 6.90575, 7.014810000000001, 6.62007, 6.85646, 6.745239999999999, 6.9256, 6.58617, 6.51471, 5.96615, 6.90575, 6.52942, 6.16331, 6.56526, 6.813439999999999, 7.09008, 5.8141300000000005, 6.769639999999999, 6.08677, 6.7369699999999995, 7.064760000000001, 7.11883, 6.51175, 7.46737, 6.57228, 6.551080000000001, 7.67322, 6.35957, 6.907760000000001, 6.58617, 5.8579300000000005, 7.1309, 6.57925, 6.43294, 6.39693, 7.46737, 6.95655, 6.54247, 6.3716099999999996, 7.293019999999999, 6.08677, 7.64969, 6.95655, 8.13153, 6.3613, 6.10925, 6.551080000000001, 6.907760000000001, 6.907760000000001, 6.43775, 6.3243599999999995, 6.83518, 6.993930000000001, 6.6567300000000005, 6.984719999999999, 7.062189999999999, 6.907760000000001, 6.77992, 7.195189999999999, 7.185389999999999, 6.07993, 6.01616, 6.72743, 6.33683, 6.70073, 7.20786, 7.0103100000000005, 6.551080000000001, 7.1309, 6.7334, 7.495539999999999, 6.24028, 6.354369999999999, 6.90575, 6.551080000000001, 7.00307, 6.85013, 7.0255399999999995, 6.39693, 7.495539999999999, 6.768489999999999, 6.23441, 6.461469999999999, 6.5395900000000005, 6.907760000000001, 6.05209, 6.28413, 6.126869999999999, 7.12287, 6.745239999999999, 7.21744, 6.39693, 6.49072, 6.47697, 6.05209, 7.24423, 6.802389999999999, 7.09008, 6.44572, 7.00307, 6.966019999999999, 6.721430000000001, 6.62936, 6.813439999999999, 6.28227, 7.64969, 6.9575, 7.3696, 6.461469999999999, 6.90575, 7.20786, 6.78333, 6.57647, 6.5903, 7.00307, 6.74993, 6.57925, 6.907760000000001, 6.16331, 6.59578, 6.802389999999999, 6.272880000000001, 7.014810000000001, 6.2146099999999995, 6.43615, 6.64509, 6.608, 6.68461, 6.58617, 6.62007, 7.00307, 6.95655, 6.12249, 6.62007, 7.09008, 6.83303, 6.98101, 6.6871100000000006, 6.81014, 7.37776, 6.51767, 6.85435, 7.64969, 7.91936, 6.907760000000001, 6.9256, 6.6733, 7.5574699999999995, 6.13773, 6.67203, 6.30992, 6.47697, 6.8956800000000005, 6.56948, 6.33328, 6.802389999999999, 6.9707300000000005, 8.00637, 6.65286, 6.57368, 5.70711, 6.57786, 6.92363, 6.57368, 7.37776, 6.2146099999999995, 7.408530000000001, 7.1155800000000005, 7.91936, 7.09008, 7.37776, 7.1309, 6.58617, 6.14633, 6.6592899999999995, 6.90575, 7.092569999999999, 6.86485, 7.57558, 7.200419999999999, 6.95655, 6.2146099999999995, 6.05209, 6.44254, 6.4599, 6.60394, 6.975410000000001, 7.400010000000001, 8.537, 6.07993, 7.36645, 6.67708, 6.99942, 6.61338, 7.64969, 6.68461, 6.57925, 7.09008, 7.1082399999999994, 6.83518, 7.09008, 6.58617, 5.8861, 6.90575, 6.43615, 6.84162, 7.313219999999999, 6.55962, 6.07993, 6.3952599999999995, 6.633319999999999, 6.42162, 7.09008, 7.313219999999999, 6.30992, 6.79122, 6.720219999999999, 6.66823, 7.2861899999999995, 6.802389999999999, 6.703189999999999, 5.98896, 7.620710000000001, 7.09008, 7.6009, 6.28972, 6.48768, 6.68461, 6.41182, 7.37776, 7.525639999999999, 6.74993, 6.72623, 7.09008, 7.25347, 7.585789999999999, 6.45362, 6.354369999999999, 6.984719999999999, 6.90575, 6.937310000000001, 7.0775, 7.346010000000001, 7.027310000000001, 6.907760000000001, 6.9489, 6.907760000000001, 7.495539999999999, 6.01127, 6.802389999999999, 6.745239999999999, 6.90575, 6.633319999999999, 6.80572, 6.2480400000000005, 6.2634, 6.31355, 7.35819, 6.49677, 6.68461, 6.633319999999999, 7.30317, 6.95655, 6.907760000000001, 5.742999999999999, 6.39693, 7.313219999999999, 7.09008, 6.47697, 7.196689999999999, 6.47697, 6.30262, 6.745239999999999, 7.07412, 6.354369999999999, 6.10925, 6.68461, 7.42357, 6.95655, 6.715380000000001, 6.9828600000000005, 7.02465, 6.49224, 6.49979, 6.27099, 5.8861, 7.393260000000001, 6.829789999999999, 6.32794, 6.28786, 5.9839400000000005, 6.68461, 5.84354, 6.62007, 7.12287, 6.2146099999999995, 6.84162, 7.00307, 6.2146099999999995, 6.983789999999999, 6.35611, 6.17379, 6.95655, 6.39693, 6.88755, 7.04316, 6.90575, 6.84162, 6.45362, 6.83518, 6.85646, 6.46925, 5.99146, 6.62007, 7.00307, 5.99146, 6.22654, 6.633319999999999, 6.77308, 7.1107, 6.95655, 6.967910000000001, 6.995769999999999, 6.66568, 6.594410000000001, 6.90575, 6.5439099999999994, 6.62007, 6.60665, 7.04752, 7.062189999999999, 7.313219999999999, 7.04752, 7.0884100000000005, 6.937310000000001, 6.90575, 6.23441, 6.25767, 6.551080000000001, 6.90575, 7.09008, 6.68461, 6.2146099999999995, 6.386880000000001, 6.44413, 6.58617, 6.10925, 6.90073, 6.745239999999999, 7.2233, 6.8773, 6.813439999999999, 7.037030000000001, 6.40523, 6.2146099999999995, 6.17379, 7.6009, 6.30992, 6.685860000000001, 5.99146, 6.38856, 6.47697, 7.46737, 6.551080000000001, 6.9226399999999995, 6.87213, 6.73102, 6.30992, 7.45298, 5.72359, 6.882439999999999, 5.940169999999999, 6.90675, 6.551080000000001, 6.9147300000000005, 6.85646, 6.563860000000001, 6.381819999999999, 5.78996, 6.769639999999999, 6.73102, 7.06133, 6.68461, 6.2146099999999995, 6.4708, 7.08171, 6.90575, 7.6009, 6.52062, 6.907760000000001, 6.60935, 6.51471, 6.9828600000000005, 6.85646, 6.30992, 7.338889999999999, 6.22654, 6.311730000000001, 7.01392, 6.49224, 6.2205900000000005, 7.44659, 7.388330000000001, 6.85118, 7.24423, 6.632000000000001, 6.90575, 7.10906, 6.944089999999999, 6.83518, 6.222580000000001, 6.84588, 7.17012, 6.52503, 6.2860000000000005, 6.80128, 6.07993 ], "y0": "married?" } ], "layout": { "legend": { "tracegroupgap": 0, "x": 1.1, "xanchor": "right", "y": 1.1 }, "margin": { "b": 40, "l": 60, "r": 10, "t": 10 }, "paper_bgcolor": "#eeeeff", "plot_bgcolor": "#ffffff", "showlegend": true, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "barpolar" } ], "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" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "colorscale": { "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" ] ], "sequential": [ [ 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, "#f0f921" ] ], "sequentialminus": [ [ 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, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "text": "Married + Gender ~ Wage", "x": 0.5 }, "violingap": 0, "violingroupgap": 0, "violinmode": "overlay", "xaxis": { "showgrid": false, "showline": true, "showticklabels": true, "title": { "text": "Wage (log)" }, "visible": true, "zeroline": true }, "yaxis": { "range": [ -0.51, 1.51 ], "showgrid": true, "showline": true, "showticklabels": true, "side": "left", "title": { "text": "Married and Gender" }, "visible": true, "zeroline": true } } }, "text/html": [ "
\n", " \n", " \n", "
\n", " \n", "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# Superimposed rdi plots for union of two separate Xcolumns (Gender + Married)\n", "(traces1,layout)=cmplot(train, xcol=\"sex\", ycol=\"lwage\", xlabel=\"M/F\", xsuperimposed=True,orientation=\"h\",\n", " colorshift=2,colorrange=4,ycolorgroups=False,side=\"alt\",inf=\"hdi\",conf_level=0.95,altsidesflip=False,\n", " pointsoverdens=True,showpoints=True,pointshapes=[\"triangle-down\",\"triangle-up\"],\n", " pointsdistance=0.6,pointsmaxdisplayed=400)\n", "(traces2,layout)=cmplot(train, xcol=\"married\", ycol=\"lwage\", xlabel=\"married?\", xsuperimposed=True,\n", " orientation=\"h\",colorshift=0,colorrange=4,ycolorgroups=False,side=\"alt\",inf=\"hdi\",conf_level=0.95,\n", " altsidesflip=False,pointsoverdens=True,showpoints=True,pointshapes=[\"triangle-right\",\"triangle-left\"],\n", " pointsdistance=0.6,pointsmaxdisplayed=400,title=\"Married + Gender ~ Wage\")\n", "layout[\"legend_tracegroupgap\"]=0\n", "layout[\"yaxis_title\"]=\"Married and Gender\"\n", "layout[\"xaxis_title\"]=\"Wage (log)\"\n", "layout[\"margin_l\"]=60\n", "layout[\"yaxis_range\"]=[-0.51,1.51]\n", "go.Figure(traces1+traces2,layout)\n", "#savefig(p1::Union{Plot,PlotlyJS.SyncPlot}, joinpath(homedir(),\"married_plus_gender-loanamount_overimposed_rdiplot.pdf\"))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Now some illustrative usage examples\n", "### First: two Ycol side by side\n", "#### (notice the raw point \"clouds\" on opposite side of the kernel density \"mountains\", for better clarity)" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "fillcolor": "hsla(110, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(110, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "Sepal.Length", "line": { "color": "hsla(110, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(110, 70%, 70%,1)", "line": { "color": "hsla(110, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "star-diamond" }, "meanline": { "color": "hsla(110, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "Sepal.Length", "orientation": "h", "pointpos": -0.6, "points": "all", "scalegroup": "setosa", "scalemode": "count", "showlegend": true, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 5.1, 4.9, 4.7, 4.6, 5, 5.4, 4.6, 5, 4.4, 4.9, 5.4, 4.8, 4.8, 4.3, 5.8, 5.7, 5.4, 5.1, 5.7, 5.1, 5.4, 5.1, 4.6, 5.1, 4.8, 5, 5, 5.2, 5.2, 4.7, 4.8, 5.4, 5.2, 5.5, 4.9, 5, 5.5, 4.9, 4.4, 5.1, 5, 4.5, 4.4, 5, 5.1, 4.8, 5.1, 4.6, 5.3, 5 ], "y0": "setosa" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(110, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(110, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "Sepal.Length", "line": { "width": 0 }, "marker": { "color": "hsla(110, 50%, 50%,0.9)", "line": { "color": "hsla(110, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "star-diamond" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "setosa", "showlegend": false, "side": "positive", "span": [ 4.911922867235547, 5.106711836647259 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 5.1, 4.9, 4.7, 4.6, 5, 5.4, 4.6, 5, 4.4, 4.9, 5.4, 4.8, 4.8, 4.3, 5.8, 5.7, 5.4, 5.1, 5.7, 5.1, 5.4, 5.1, 4.6, 5.1, 4.8, 5, 5, 5.2, 5.2, 4.7, 4.8, 5.4, 5.2, 5.5, 4.9, 5, 5.5, 4.9, 4.4, 5.1, 5, 4.5, 4.4, 5, 5.1, 4.8, 5.1, 4.6, 5.3, 5 ], "y0": "setosa" }, { "fillcolor": "hsla(220, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(220, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "Petal.Length", "line": { "color": "hsla(220, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(220, 70%, 70%,1)", "line": { "color": "hsla(220, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "star-square" }, "meanline": { "color": "hsla(220, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "Petal.Length", "orientation": "h", "pointpos": 0.6, "points": "all", "scalegroup": "setosa", "scalemode": "count", "showlegend": true, "side": "negative", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 1.4, 1.4, 1.3, 1.5, 1.4, 1.7, 1.4, 1.5, 1.4, 1.5, 1.5, 1.6, 1.4, 1.1, 1.2, 1.5, 1.3, 1.4, 1.7, 1.5, 1.7, 1.5, 1, 1.7, 1.9, 1.6, 1.6, 1.5, 1.4, 1.6, 1.6, 1.5, 1.5, 1.4, 1.5, 1.2, 1.3, 1.4, 1.3, 1.5, 1.3, 1.3, 1.3, 1.6, 1.9, 1.4, 1.6, 1.4, 1.5, 1.4 ], "y0": "setosa" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(220, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(220, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "Petal.Length", "line": { "width": 0 }, "marker": { "color": "hsla(220, 50%, 50%,0.9)", "line": { "color": "hsla(220, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "star-square" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "setosa", "showlegend": false, "side": "negative", "span": [ 1.4138394377397387, 1.5126532649015003 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 1.4, 1.4, 1.3, 1.5, 1.4, 1.7, 1.4, 1.5, 1.4, 1.5, 1.5, 1.6, 1.4, 1.1, 1.2, 1.5, 1.3, 1.4, 1.7, 1.5, 1.7, 1.5, 1, 1.7, 1.9, 1.6, 1.6, 1.5, 1.4, 1.6, 1.6, 1.5, 1.5, 1.4, 1.5, 1.2, 1.3, 1.4, 1.3, 1.5, 1.3, 1.3, 1.3, 1.6, 1.9, 1.4, 1.6, 1.4, 1.5, 1.4 ], "y0": "setosa" }, { "fillcolor": "hsla(110, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(110, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "Sepal.Length", "line": { "color": "hsla(110, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(110, 70%, 70%,1)", "line": { "color": "hsla(110, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "star-diamond" }, "meanline": { "color": "hsla(110, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "Sepal.Length", "orientation": "h", "pointpos": -0.6, "points": "all", "scalegroup": "versicolor", "scalemode": "count", "showlegend": false, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 7, 6.4, 6.9, 5.5, 6.5, 5.7, 6.3, 4.9, 6.6, 5.2, 5, 5.9, 6, 6.1, 5.6, 6.7, 5.6, 5.8, 6.2, 5.6, 5.9, 6.1, 6.3, 6.1, 6.4, 6.6, 6.8, 6.7, 6, 5.7, 5.5, 5.5, 5.8, 6, 5.4, 6, 6.7, 6.3, 5.6, 5.5, 5.5, 6.1, 5.8, 5, 5.6, 5.7, 5.7, 6.2, 5.1, 5.7 ], "y0": "versicolor" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(110, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(110, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "Sepal.Length", "line": { "width": 0 }, "marker": { "color": "hsla(110, 50%, 50%,0.9)", "line": { "color": "hsla(110, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "star-diamond" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "versicolor", "showlegend": false, "side": "positive", "span": [ 5.7962455278624665, 6.084980414776267 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 7, 6.4, 6.9, 5.5, 6.5, 5.7, 6.3, 4.9, 6.6, 5.2, 5, 5.9, 6, 6.1, 5.6, 6.7, 5.6, 5.8, 6.2, 5.6, 5.9, 6.1, 6.3, 6.1, 6.4, 6.6, 6.8, 6.7, 6, 5.7, 5.5, 5.5, 5.8, 6, 5.4, 6, 6.7, 6.3, 5.6, 5.5, 5.5, 6.1, 5.8, 5, 5.6, 5.7, 5.7, 6.2, 5.1, 5.7 ], "y0": "versicolor" }, { "fillcolor": "hsla(220, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(220, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "Petal.Length", "line": { "color": "hsla(220, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(220, 70%, 70%,1)", "line": { "color": "hsla(220, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "star-square" }, "meanline": { "color": "hsla(220, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "Petal.Length", "orientation": "h", "pointpos": 0.6, "points": "all", "scalegroup": "versicolor", "scalemode": "count", "showlegend": false, "side": "negative", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 4.7, 4.5, 4.9, 4, 4.6, 4.5, 4.7, 3.3, 4.6, 3.9, 3.5, 4.2, 4, 4.7, 3.6, 4.4, 4.5, 4.1, 4.5, 3.9, 4.8, 4, 4.9, 4.7, 4.3, 4.4, 4.8, 5, 4.5, 3.5, 3.8, 3.7, 3.9, 5.1, 4.5, 4.5, 4.7, 4.4, 4.1, 4, 4.4, 4.6, 4, 3.3, 4.2, 4.2, 4.2, 4.3, 3, 4.1 ], "y0": "versicolor" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(220, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(220, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "Petal.Length", "line": { "width": 0 }, "marker": { "color": "hsla(220, 50%, 50%,0.9)", "line": { "color": "hsla(220, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "star-square" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "versicolor", "showlegend": false, "side": "negative", "span": [ 4.125495368883751, 4.3938334497417 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 4.7, 4.5, 4.9, 4, 4.6, 4.5, 4.7, 3.3, 4.6, 3.9, 3.5, 4.2, 4, 4.7, 3.6, 4.4, 4.5, 4.1, 4.5, 3.9, 4.8, 4, 4.9, 4.7, 4.3, 4.4, 4.8, 5, 4.5, 3.5, 3.8, 3.7, 3.9, 5.1, 4.5, 4.5, 4.7, 4.4, 4.1, 4, 4.4, 4.6, 4, 3.3, 4.2, 4.2, 4.2, 4.3, 3, 4.1 ], "y0": "versicolor" }, { "fillcolor": "hsla(110, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(110, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "Sepal.Length", "line": { "color": "hsla(110, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(110, 70%, 70%,1)", "line": { "color": "hsla(110, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "star-diamond" }, "meanline": { "color": "hsla(110, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "Sepal.Length", "orientation": "h", "pointpos": -0.6, "points": "all", "scalegroup": "virginica", "scalemode": "count", "showlegend": false, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.3, 5.8, 7.1, 6.3, 6.5, 7.6, 4.9, 7.3, 6.7, 7.2, 6.5, 6.4, 6.8, 5.7, 5.8, 6.4, 6.5, 7.7, 7.7, 6, 6.9, 5.6, 7.7, 6.3, 6.7, 7.2, 6.2, 6.1, 6.4, 7.2, 7.4, 7.9, 6.4, 6.3, 6.1, 7.7, 6.3, 6.4, 6, 6.9, 6.7, 6.9, 5.8, 6.8, 6.7, 6.7, 6.3, 6.5, 6.2, 5.9 ], "y0": "virginica" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(110, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(110, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "Sepal.Length", "line": { "width": 0 }, "marker": { "color": "hsla(110, 50%, 50%,0.9)", "line": { "color": "hsla(110, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "star-diamond" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "virginica", "showlegend": false, "side": "positive", "span": [ 6.4086629065856515, 6.7635326012371415 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 6.3, 5.8, 7.1, 6.3, 6.5, 7.6, 4.9, 7.3, 6.7, 7.2, 6.5, 6.4, 6.8, 5.7, 5.8, 6.4, 6.5, 7.7, 7.7, 6, 6.9, 5.6, 7.7, 6.3, 6.7, 7.2, 6.2, 6.1, 6.4, 7.2, 7.4, 7.9, 6.4, 6.3, 6.1, 7.7, 6.3, 6.4, 6, 6.9, 6.7, 6.9, 5.8, 6.8, 6.7, 6.7, 6.3, 6.5, 6.2, 5.9 ], "y0": "virginica" }, { "fillcolor": "hsla(220, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(220, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "Petal.Length", "line": { "color": "hsla(220, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(220, 70%, 70%,1)", "line": { "color": "hsla(220, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "star-square" }, "meanline": { "color": "hsla(220, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "Petal.Length", "orientation": "h", "pointpos": 0.6, "points": "all", "scalegroup": "virginica", "scalemode": "count", "showlegend": false, "side": "negative", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6, 5.1, 5.9, 5.6, 5.8, 6.6, 4.5, 6.3, 5.8, 6.1, 5.1, 5.3, 5.5, 5, 5.1, 5.3, 5.5, 6.7, 6.9, 5, 5.7, 4.9, 6.7, 4.9, 5.7, 6, 4.8, 4.9, 5.6, 5.8, 6.1, 6.4, 5.6, 5.1, 5.6, 6.1, 5.6, 5.5, 4.8, 5.4, 5.6, 5.1, 5.1, 5.9, 5.7, 5.2, 5, 5.2, 5.4, 5.1 ], "y0": "virginica" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(220, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(220, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "Petal.Length", "line": { "width": 0 }, "marker": { "color": "hsla(220, 50%, 50%,0.9)", "line": { "color": "hsla(220, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "star-square" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "virginica", "showlegend": false, "side": "negative", "span": [ 5.4005472370987935, 5.70751831997459 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 6, 5.1, 5.9, 5.6, 5.8, 6.6, 4.5, 6.3, 5.8, 6.1, 5.1, 5.3, 5.5, 5, 5.1, 5.3, 5.5, 6.7, 6.9, 5, 5.7, 4.9, 6.7, 4.9, 5.7, 6, 4.8, 4.9, 5.6, 5.8, 6.1, 6.4, 5.6, 5.1, 5.6, 6.1, 5.6, 5.5, 4.8, 5.4, 5.6, 5.1, 5.1, 5.9, 5.7, 5.2, 5, 5.2, 5.4, 5.1 ], "y0": "virginica" } ], "layout": { "legend": { "tracegroupgap": 0, "x": 1.1, "xanchor": "right", "y": 1.1 }, "margin": { "b": 40, "l": 80, "r": 10, "t": 10 }, "paper_bgcolor": "#eeeeff", "plot_bgcolor": "#ffffff", "showlegend": true, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "barpolar" } ], "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" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "colorscale": { "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" ] ], "sequential": [ [ 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, "#f0f921" ] ], "sequentialminus": [ [ 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, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "text": "Species ~ Sepal.Length, Petal.Length", "x": 0.5 }, "violingap": 0, "violingroupgap": 0, "violinmode": "overlay", "xaxis": { "showgrid": false, "showline": true, "showticklabels": true, "title": { "text": "Sepal.Length, Petal.Length" }, "visible": true, "zeroline": true }, "yaxis": { "showgrid": true, "showline": true, "showticklabels": true, "side": "left", "title": { "text": "Species" }, "visible": true, "zeroline": true } } }, "text/html": [ "
\n", " \n", " \n", "
\n", " \n", "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "#IRIS dataset, plotting two Ycol side by side\n", "traces,layout=cmplot(iris,xcol=\"Species\",ycol=[\"Sepal.Length\",\"Petal.Length\"],colorrange=3,\n", " pointshapes=[\"star-triangle-up\",\"star-diamond\",\"star-square\"])\n", "go.Figure(traces,layout)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### It works well also with three Ycol:" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "fillcolor": "hsla(110, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(110, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "Sepal.Length", "line": { "color": "hsla(110, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(110, 70%, 70%,1)", "line": { "color": "hsla(110, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "star-diamond" }, "meanline": { "color": "hsla(110, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "Sepal.Length", "orientation": "h", "pointpos": -0.6, "points": "all", "scalegroup": "setosa", "scalemode": "count", "showlegend": true, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 5.1, 4.9, 4.7, 4.6, 5, 5.4, 4.6, 5, 4.4, 4.9, 5.4, 4.8, 4.8, 4.3, 5.8, 5.7, 5.4, 5.1, 5.7, 5.1, 5.4, 5.1, 4.6, 5.1, 4.8, 5, 5, 5.2, 5.2, 4.7, 4.8, 5.4, 5.2, 5.5, 4.9, 5, 5.5, 4.9, 4.4, 5.1, 5, 4.5, 4.4, 5, 5.1, 4.8, 5.1, 4.6, 5.3, 5 ], "y0": "setosa" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(110, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(110, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "Sepal.Length", "line": { "width": 0 }, "marker": { "color": "hsla(110, 50%, 50%,0.9)", "line": { "color": "hsla(110, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "star-diamond" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "setosa", "showlegend": false, "side": "positive", "span": [ 4.907496051163027, 5.102192280770197 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 5.1, 4.9, 4.7, 4.6, 5, 5.4, 4.6, 5, 4.4, 4.9, 5.4, 4.8, 4.8, 4.3, 5.8, 5.7, 5.4, 5.1, 5.7, 5.1, 5.4, 5.1, 4.6, 5.1, 4.8, 5, 5, 5.2, 5.2, 4.7, 4.8, 5.4, 5.2, 5.5, 4.9, 5, 5.5, 4.9, 4.4, 5.1, 5, 4.5, 4.4, 5, 5.1, 4.8, 5.1, 4.6, 5.3, 5 ], "y0": "setosa" }, { "fillcolor": "hsla(220, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(220, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "Petal.Length", "line": { "color": "hsla(220, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(220, 70%, 70%,1)", "line": { "color": "hsla(220, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "star-square" }, "meanline": { "color": "hsla(220, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "Petal.Length", "orientation": "h", "pointpos": 0.6, "points": "all", "scalegroup": "setosa", "scalemode": "count", "showlegend": true, "side": "negative", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 1.4, 1.4, 1.3, 1.5, 1.4, 1.7, 1.4, 1.5, 1.4, 1.5, 1.5, 1.6, 1.4, 1.1, 1.2, 1.5, 1.3, 1.4, 1.7, 1.5, 1.7, 1.5, 1, 1.7, 1.9, 1.6, 1.6, 1.5, 1.4, 1.6, 1.6, 1.5, 1.5, 1.4, 1.5, 1.2, 1.3, 1.4, 1.3, 1.5, 1.3, 1.3, 1.3, 1.6, 1.9, 1.4, 1.6, 1.4, 1.5, 1.4 ], "y0": "setosa" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(220, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(220, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "Petal.Length", "line": { "width": 0 }, "marker": { "color": "hsla(220, 50%, 50%,0.9)", "line": { "color": "hsla(220, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "star-square" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "setosa", "showlegend": false, "side": "negative", "span": [ 1.4102603977340329, 1.5089917799840404 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 1.4, 1.4, 1.3, 1.5, 1.4, 1.7, 1.4, 1.5, 1.4, 1.5, 1.5, 1.6, 1.4, 1.1, 1.2, 1.5, 1.3, 1.4, 1.7, 1.5, 1.7, 1.5, 1, 1.7, 1.9, 1.6, 1.6, 1.5, 1.4, 1.6, 1.6, 1.5, 1.5, 1.4, 1.5, 1.2, 1.3, 1.4, 1.3, 1.5, 1.3, 1.3, 1.3, 1.6, 1.9, 1.4, 1.6, 1.4, 1.5, 1.4 ], "y0": "setosa" }, { "fillcolor": "hsla(330, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(330, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "Sepal.Width", "line": { "color": "hsla(330, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(330, 70%, 70%,1)", "line": { "color": "hsla(330, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "star-triangle-up" }, "meanline": { "color": "hsla(330, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "Sepal.Width", "orientation": "h", "pointpos": -0.6, "points": "all", "scalegroup": "setosa", "scalemode": "count", "showlegend": true, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 3.5, 3, 3.2, 3.1, 3.6, 3.9, 3.4, 3.4, 2.9, 3.1, 3.7, 3.4, 3, 3, 4, 4.4, 3.9, 3.5, 3.8, 3.8, 3.4, 3.7, 3.6, 3.3, 3.4, 3, 3.4, 3.5, 3.4, 3.2, 3.1, 3.4, 4.1, 4.2, 3.1, 3.2, 3.5, 3.6, 3, 3.4, 3.5, 2.3, 3.2, 3.5, 3.8, 3, 3.8, 3.2, 3.7, 3.3 ], "y0": "setosa" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(330, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(330, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "Sepal.Width", "line": { "width": 0 }, "marker": { "color": "hsla(330, 50%, 50%,0.9)", "line": { "color": "hsla(330, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "star-triangle-up" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "setosa", "showlegend": false, "side": "positive", "span": [ 3.3216959728989326, 3.5360551030205847 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 3.5, 3, 3.2, 3.1, 3.6, 3.9, 3.4, 3.4, 2.9, 3.1, 3.7, 3.4, 3, 3, 4, 4.4, 3.9, 3.5, 3.8, 3.8, 3.4, 3.7, 3.6, 3.3, 3.4, 3, 3.4, 3.5, 3.4, 3.2, 3.1, 3.4, 4.1, 4.2, 3.1, 3.2, 3.5, 3.6, 3, 3.4, 3.5, 2.3, 3.2, 3.5, 3.8, 3, 3.8, 3.2, 3.7, 3.3 ], "y0": "setosa" }, { "fillcolor": "hsla(110, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(110, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "Sepal.Length", "line": { "color": "hsla(110, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(110, 70%, 70%,1)", "line": { "color": "hsla(110, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "star-diamond" }, "meanline": { "color": "hsla(110, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "Sepal.Length", "orientation": "h", "pointpos": -0.6, "points": "all", "scalegroup": "versicolor", "scalemode": "count", "showlegend": false, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 7, 6.4, 6.9, 5.5, 6.5, 5.7, 6.3, 4.9, 6.6, 5.2, 5, 5.9, 6, 6.1, 5.6, 6.7, 5.6, 5.8, 6.2, 5.6, 5.9, 6.1, 6.3, 6.1, 6.4, 6.6, 6.8, 6.7, 6, 5.7, 5.5, 5.5, 5.8, 6, 5.4, 6, 6.7, 6.3, 5.6, 5.5, 5.5, 6.1, 5.8, 5, 5.6, 5.7, 5.7, 6.2, 5.1, 5.7 ], "y0": "versicolor" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(110, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(110, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "Sepal.Length", "line": { "width": 0 }, "marker": { "color": "hsla(110, 50%, 50%,0.9)", "line": { "color": "hsla(110, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "star-diamond" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "versicolor", "showlegend": false, "side": "positive", "span": [ 5.789925112017038, 6.0745228750022955 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 7, 6.4, 6.9, 5.5, 6.5, 5.7, 6.3, 4.9, 6.6, 5.2, 5, 5.9, 6, 6.1, 5.6, 6.7, 5.6, 5.8, 6.2, 5.6, 5.9, 6.1, 6.3, 6.1, 6.4, 6.6, 6.8, 6.7, 6, 5.7, 5.5, 5.5, 5.8, 6, 5.4, 6, 6.7, 6.3, 5.6, 5.5, 5.5, 6.1, 5.8, 5, 5.6, 5.7, 5.7, 6.2, 5.1, 5.7 ], "y0": "versicolor" }, { "fillcolor": "hsla(220, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(220, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "Petal.Length", "line": { "color": "hsla(220, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(220, 70%, 70%,1)", "line": { "color": "hsla(220, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "star-square" }, "meanline": { "color": "hsla(220, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "Petal.Length", "orientation": "h", "pointpos": 0.6, "points": "all", "scalegroup": "versicolor", "scalemode": "count", "showlegend": false, "side": "negative", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 4.7, 4.5, 4.9, 4, 4.6, 4.5, 4.7, 3.3, 4.6, 3.9, 3.5, 4.2, 4, 4.7, 3.6, 4.4, 4.5, 4.1, 4.5, 3.9, 4.8, 4, 4.9, 4.7, 4.3, 4.4, 4.8, 5, 4.5, 3.5, 3.8, 3.7, 3.9, 5.1, 4.5, 4.5, 4.7, 4.4, 4.1, 4, 4.4, 4.6, 4, 3.3, 4.2, 4.2, 4.2, 4.3, 3, 4.1 ], "y0": "versicolor" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(220, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(220, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "Petal.Length", "line": { "width": 0 }, "marker": { "color": "hsla(220, 50%, 50%,0.9)", "line": { "color": "hsla(220, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "star-square" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "versicolor", "showlegend": false, "side": "negative", "span": [ 4.126608816046114, 4.390716016565942 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 4.7, 4.5, 4.9, 4, 4.6, 4.5, 4.7, 3.3, 4.6, 3.9, 3.5, 4.2, 4, 4.7, 3.6, 4.4, 4.5, 4.1, 4.5, 3.9, 4.8, 4, 4.9, 4.7, 4.3, 4.4, 4.8, 5, 4.5, 3.5, 3.8, 3.7, 3.9, 5.1, 4.5, 4.5, 4.7, 4.4, 4.1, 4, 4.4, 4.6, 4, 3.3, 4.2, 4.2, 4.2, 4.3, 3, 4.1 ], "y0": "versicolor" }, { "fillcolor": "hsla(330, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(330, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "Sepal.Width", "line": { "color": "hsla(330, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(330, 70%, 70%,1)", "line": { "color": "hsla(330, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "star-triangle-up" }, "meanline": { "color": "hsla(330, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "Sepal.Width", "orientation": "h", "pointpos": -0.6, "points": "all", "scalegroup": "versicolor", "scalemode": "count", "showlegend": false, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 3.2, 3.2, 3.1, 2.3, 2.8, 2.8, 3.3, 2.4, 2.9, 2.7, 2, 3, 2.2, 2.9, 2.9, 3.1, 3, 2.7, 2.2, 2.5, 3.2, 2.8, 2.5, 2.8, 2.9, 3, 2.8, 3, 2.9, 2.6, 2.4, 2.4, 2.7, 2.7, 3, 3.4, 3.1, 2.3, 3, 2.5, 2.6, 3, 2.6, 2.3, 2.7, 3, 2.9, 2.9, 2.5, 2.8 ], "y0": "versicolor" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(330, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(330, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "Sepal.Width", "line": { "width": 0 }, "marker": { "color": "hsla(330, 50%, 50%,0.9)", "line": { "color": "hsla(330, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "star-triangle-up" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "versicolor", "showlegend": false, "side": "positive", "span": [ 2.6805560054935897, 2.857533379112744 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 3.2, 3.2, 3.1, 2.3, 2.8, 2.8, 3.3, 2.4, 2.9, 2.7, 2, 3, 2.2, 2.9, 2.9, 3.1, 3, 2.7, 2.2, 2.5, 3.2, 2.8, 2.5, 2.8, 2.9, 3, 2.8, 3, 2.9, 2.6, 2.4, 2.4, 2.7, 2.7, 3, 3.4, 3.1, 2.3, 3, 2.5, 2.6, 3, 2.6, 2.3, 2.7, 3, 2.9, 2.9, 2.5, 2.8 ], "y0": "versicolor" }, { "fillcolor": "hsla(110, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(110, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "Sepal.Length", "line": { "color": "hsla(110, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(110, 70%, 70%,1)", "line": { "color": "hsla(110, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "star-diamond" }, "meanline": { "color": "hsla(110, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "Sepal.Length", "orientation": "h", "pointpos": -0.6, "points": "all", "scalegroup": "virginica", "scalemode": "count", "showlegend": false, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.3, 5.8, 7.1, 6.3, 6.5, 7.6, 4.9, 7.3, 6.7, 7.2, 6.5, 6.4, 6.8, 5.7, 5.8, 6.4, 6.5, 7.7, 7.7, 6, 6.9, 5.6, 7.7, 6.3, 6.7, 7.2, 6.2, 6.1, 6.4, 7.2, 7.4, 7.9, 6.4, 6.3, 6.1, 7.7, 6.3, 6.4, 6, 6.9, 6.7, 6.9, 5.8, 6.8, 6.7, 6.7, 6.3, 6.5, 6.2, 5.9 ], "y0": "virginica" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(110, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(110, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "Sepal.Length", "line": { "width": 0 }, "marker": { "color": "hsla(110, 50%, 50%,0.9)", "line": { "color": "hsla(110, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "star-diamond" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "virginica", "showlegend": false, "side": "positive", "span": [ 6.414757935144031, 6.766285011199031 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 6.3, 5.8, 7.1, 6.3, 6.5, 7.6, 4.9, 7.3, 6.7, 7.2, 6.5, 6.4, 6.8, 5.7, 5.8, 6.4, 6.5, 7.7, 7.7, 6, 6.9, 5.6, 7.7, 6.3, 6.7, 7.2, 6.2, 6.1, 6.4, 7.2, 7.4, 7.9, 6.4, 6.3, 6.1, 7.7, 6.3, 6.4, 6, 6.9, 6.7, 6.9, 5.8, 6.8, 6.7, 6.7, 6.3, 6.5, 6.2, 5.9 ], "y0": "virginica" }, { "fillcolor": "hsla(220, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(220, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "Petal.Length", "line": { "color": "hsla(220, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(220, 70%, 70%,1)", "line": { "color": "hsla(220, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "star-square" }, "meanline": { "color": "hsla(220, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "Petal.Length", "orientation": "h", "pointpos": 0.6, "points": "all", "scalegroup": "virginica", "scalemode": "count", "showlegend": false, "side": "negative", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6, 5.1, 5.9, 5.6, 5.8, 6.6, 4.5, 6.3, 5.8, 6.1, 5.1, 5.3, 5.5, 5, 5.1, 5.3, 5.5, 6.7, 6.9, 5, 5.7, 4.9, 6.7, 4.9, 5.7, 6, 4.8, 4.9, 5.6, 5.8, 6.1, 6.4, 5.6, 5.1, 5.6, 6.1, 5.6, 5.5, 4.8, 5.4, 5.6, 5.1, 5.1, 5.9, 5.7, 5.2, 5, 5.2, 5.4, 5.1 ], "y0": "virginica" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(220, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(220, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "Petal.Length", "line": { "width": 0 }, "marker": { "color": "hsla(220, 50%, 50%,0.9)", "line": { "color": "hsla(220, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "star-square" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "virginica", "showlegend": false, "side": "negative", "span": [ 5.399161244777885, 5.711435078505496 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 6, 5.1, 5.9, 5.6, 5.8, 6.6, 4.5, 6.3, 5.8, 6.1, 5.1, 5.3, 5.5, 5, 5.1, 5.3, 5.5, 6.7, 6.9, 5, 5.7, 4.9, 6.7, 4.9, 5.7, 6, 4.8, 4.9, 5.6, 5.8, 6.1, 6.4, 5.6, 5.1, 5.6, 6.1, 5.6, 5.5, 4.8, 5.4, 5.6, 5.1, 5.1, 5.9, 5.7, 5.2, 5, 5.2, 5.4, 5.1 ], "y0": "virginica" }, { "fillcolor": "hsla(330, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(330, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "Sepal.Width", "line": { "color": "hsla(330, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(330, 70%, 70%,1)", "line": { "color": "hsla(330, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "star-triangle-up" }, "meanline": { "color": "hsla(330, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "Sepal.Width", "orientation": "h", "pointpos": -0.6, "points": "all", "scalegroup": "virginica", "scalemode": "count", "showlegend": false, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 3.3, 2.7, 3, 2.9, 3, 3, 2.5, 2.9, 2.5, 3.6, 3.2, 2.7, 3, 2.5, 2.8, 3.2, 3, 3.8, 2.6, 2.2, 3.2, 2.8, 2.8, 2.7, 3.3, 3.2, 2.8, 3, 2.8, 3, 2.8, 3.8, 2.8, 2.8, 2.6, 3, 3.4, 3.1, 3, 3.1, 3.1, 3.1, 2.7, 3.2, 3.3, 3, 2.5, 3, 3.4, 3 ], "y0": "virginica" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(330, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(330, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "Sepal.Width", "line": { "width": 0 }, "marker": { "color": "hsla(330, 50%, 50%,0.9)", "line": { "color": "hsla(330, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "star-triangle-up" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "virginica", "showlegend": false, "side": "positive", "span": [ 2.886832945801229, 3.0668469215126213 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 3.3, 2.7, 3, 2.9, 3, 3, 2.5, 2.9, 2.5, 3.6, 3.2, 2.7, 3, 2.5, 2.8, 3.2, 3, 3.8, 2.6, 2.2, 3.2, 2.8, 2.8, 2.7, 3.3, 3.2, 2.8, 3, 2.8, 3, 2.8, 3.8, 2.8, 2.8, 2.6, 3, 3.4, 3.1, 3, 3.1, 3.1, 3.1, 2.7, 3.2, 3.3, 3, 2.5, 3, 3.4, 3 ], "y0": "virginica" } ], "layout": { "legend": { "tracegroupgap": 0, "x": 1.1, "xanchor": "right", "y": 1.1 }, "margin": { "b": 40, "l": 80, "r": 10, "t": 10 }, "paper_bgcolor": "#eeeeff", "plot_bgcolor": "#ffffff", "showlegend": true, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "barpolar" } ], "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" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "colorscale": { "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" ] ], "sequential": [ [ 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, "#f0f921" ] ], "sequentialminus": [ [ 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, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "text": "Species ~ Sepal.Length, Petal.Length, Sepal.Width", "x": 0.5 }, "violingap": 0, "violingroupgap": 0, "violinmode": "overlay", "xaxis": { "showgrid": false, "showline": true, "showticklabels": true, "title": { "text": "Sepal.Length, Petal.Length, Sepal.Width" }, "visible": true, "zeroline": true }, "yaxis": { "showgrid": true, "showline": true, "showticklabels": true, "side": "left", "title": { "text": "Species" }, "visible": true, "zeroline": true } } }, "text/html": [ "
\n", " \n", " \n", "
\n", " \n", "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "#IRIS dataset, plotting three Ycol side by side\n", "traces,layout=cmplot(iris,xcol=\"Species\",ycol=[\"Sepal.Length\",\"Petal.Length\",\"Sepal.Width\",],\n", " pointshapes=[\"star-triangle-up\",\"star-diamond\",\"star-square\"])\n", "go.Figure(traces,layout)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Excursus: not only we can show different Xcol together, but we can intersect them, grouping the data by two or more X\n", "### For example, combining two X a different picture is revealed:" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "fillcolor": "hsla(82, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(82, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "no&female", "line": { "color": "hsla(82, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(82, 70%, 70%,1)", "line": { "color": "hsla(82, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "star-diamond" }, "meanline": { "color": "hsla(82, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage no&female", "orientation": "h", "pointpos": -0.6, "points": "all", "scalegroup": "no&female", "scalemode": "count", "showlegend": true, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.55536, 6.39693, 6.907760000000001, 6.50279, 6.614730000000001, 6.30992, 6.62007, 6.17379, 6.2146099999999995, 6.65286, 6.30992, 6.48158, 6.907760000000001, 5.8999, 6.05209, 5.73334, 6.43775, 6.907760000000001, 5.463830000000001, 5.43808, 6.77422, 6.47697, 5.68358, 6.2146099999999995, 6.10925, 6.6783399999999995, 7.1309, 6.39693, 6.77422, 5.96615, 5.90808, 6.39693, 5.0814, 4.605169999999999, 6.7901, 6.65286, 6.86485, 6.92461, 5.99146, 6.85646, 5.4161, 6.30079, 5.76832, 6.16542, 5.93489, 7.04752, 6.19644, 5.7525699999999995, 6.318969999999999, 5.9454199999999995, 6.4677, 6.768489999999999, 6.2480400000000005, 6.33328, 6.48311, 7.00307, 5.8999, 6.62007, 6.36475, 6.65286, 5.7525699999999995, 6.025869999999999, 6.20456, 6.31536, 5.95324, 6.1070199999999994, 6.05209, 5.9269300000000005, 5.51745, 6.715380000000001, 6.85646, 6.85646, 6.32972, 6.802389999999999, 6.16331, 6.95655, 6.2634, 6.3716099999999996, 6.10925, 6.93537, 6.56244, 6.23245, 7.1309, 6.57925, 6.30992, 6.34388, 5.34711, 7.279319999999999, 6.58064, 6.33683, 6.5582, 6.354369999999999, 5.95324, 5.9454199999999995, 5.64545, 5.7525699999999995, 6.28972, 6.2952699999999995, 6.05209, 6.551080000000001, 6.621410000000001, 5.82305, 6.12905, 6.02345, 5.883319999999999, 6.907760000000001, 5.59842, 6.58617, 6.901739999999999, 5.8579300000000005, 6.17379, 5.81711, 6.44254, 6.30079, 6.745239999999999, 6.7901, 6.51471, 6.17379, 6.07993, 6.11589, 5.74939, 6.33328, 6.386880000000001, 7.0255399999999995, 5.8141300000000005, 5.86647, 6.01616, 6.278519999999999, 6.30992, 6.10925, 6.785589999999999, 6.47697, 7.04752, 6.04025, 6.39693, 6.36819, 6.43775, 5.940169999999999, 6.35957, 6.2146099999999995, 6.253830000000001, 6.1025599999999995, 6.1025599999999995, 6.15698, 6.96885, 6.885510000000001, 6.1717, 5.958419999999999, 5.98645, 5.8579300000000005, 6.715380000000001, 5.8861, 6.10925, 6.65286, 6.39693, 5.65948, 5.940169999999999, 6.26149, 6.551080000000001, 6.29157, 5.50126, 6.77422, 5.82008, 6.4708, 6.15698, 5.8999, 5.99146, 6.33328, 6.9707300000000005, 6.6567300000000005, 6.745239999999999, 6.93049, 6.849069999999999, 6.1070199999999994, 6.712960000000001, 5.97635, 6.29157, 6.86901, 6.0282800000000005, 6.39859, 5.42935, 6.6592899999999995, 6.907760000000001, 6.47697, 6.551080000000001, 6.68461, 6.45834, 5.8141300000000005, 6.88755, 6.23441, 6.463030000000001, 6.65286, 6.39693, 5.8141300000000005, 6.3952599999999995, 6.06379, 5.42053, 5.8861, 6.52209, 5.8861, 7.20786, 6.05209, 5.52146, 5.52146, 6.06379, 6.2205900000000005, 6.0822199999999995, 7.04752, 6.3952599999999995, 6.70073, 6.07993, 6.46925, 6.22654, 6.39693, 6.58755, 6.8254600000000005, 5.99146, 6.62007, 6.62007, 6.29895, 5.8579300000000005, 6.745239999999999, 5.93225, 6.49072, 5.78383, 6.35957, 5.82008, 6.04025, 6.39693, 6.59715, 5.01064, 6.77422, 6.30992, 5.5606800000000005, 6.8426800000000005, 6.30992, 6.602589999999999, 6.424869999999999, 6.259580000000001, 6.2634, 5.97635, 6.04025, 6.07993, 6.551080000000001, 6.17587, 5.8693, 6.43775, 6.73459, 5.70378, 6.29157, 6.2146099999999995, 6.63068, 6.682110000000001, 6.19236, 5.68698, 6.12249, 6.14847, 5.88053, 6.10925, 6.38856, 5.86079, 5.99894, 5.39363, 5.96615, 6.52209, 5.96615, 5.9135, 6.6896, 6.14419, 6.692080000000001, 6.013719999999999, 6.224559999999999, 6.07304, 6.2146099999999995, 6.802389999999999, 5.95324, 5.8579300000000005, 6.33683, 5.97889, 6.2146099999999995, 6.34388, 7.18917, 6.1070199999999994, 6.30992, 6.36819, 6.23637, 5.52146, 6.47697, 6.36303, 6.748760000000001, 6.633319999999999, 6.04025, 5.7525699999999995, 6.47697, 6.0330900000000005, 5.8861, 5.82305, 5.39363, 5.43808, 5.95324, 5.8999, 6.2146099999999995, 6.2804, 6.39693, 5.89715, 6.06611, 6.2146099999999995, 6.0845, 5.48064, 6.3952599999999995, 6.27099, 6.58617, 6.2146099999999995, 6.035480000000001, 6.206580000000001, 6.39859, 6.551080000000001, 6.43775, 6.02345, 5.9269300000000005, 6.72743, 6.2634, 6.646389999999999, 5.5797300000000005, 6.07993, 5.4161, 6.47697, 5.50126, 6.583410000000001, 6.44731, 5.82895, 6.2146099999999995, 6.73815, 6.802389999999999, 6.77422, 6.1944099999999995, 6.70073, 6.593039999999999, 6.85646, 5.01064, 6.745239999999999, 6.85646, 6.79347, 5.65249, 6.39693, 6.317159999999999, 6.35611, 5.8579300000000005, 6.18415, 6.05209, 5.84354, 6.46925, 5.99894, 6.77765, 6.30992, 5.8999, 5.8861, 7.216710000000001, 6.65286, 6.2146099999999995, 6.88857, 5.76205, 5.68698, 6.1203, 5.7365699999999995, 5.7365699999999995, 6.2146099999999995, 5.47227, 6.2146099999999995, 7.04752, 6.30992, 7.17012, 6.551080000000001, 5.7365699999999995, 5.64191, 6.21261, 6.47697, 6.95655, 5.61313, 6.62672, 6.23441, 5.7462, 6.056780000000001, 5.8944, 5.84932, 6.06843, 5.53339, 6.49375, 5.7365699999999995, 5.76832, 5.5797300000000005, 6.23832, 5.79606, 6.19644, 6.19236, 6.6253899999999994, 5.7525699999999995, 6.14633, 6.712960000000001, 6.16331, 6.3716099999999996, 6.62007, 6.30992, 6.47697, 6.62007, 6.551080000000001, 6.18002, 6.745239999999999, 5.96358, 6.39693, 6.14204, 5.5797300000000005, 6.11147, 5.66988, 5.73334, 5.90808, 5.9269300000000005, 6.2186, 6.68461, 6.643789999999999, 5.66988, 6.39693, 6.06611, 6.57786, 5.43808, 5.8141300000000005, 6.3315, 6.86485, 6.04025, 6.7901, 6.56244, 6.253830000000001, 6.57228, 6.05209, 5.93225, 5.273, 6.2186, 6.1717, 6.47697, 6.05209, 5.8579300000000005, 6.86693, 6.36303, 5.19296, 6.39693, 5.95584, 6.7093, 6.62007, 6.41017, 6.556780000000001, 5.8141300000000005, 6.30992, 6.39693, 6.26149, 5.94803, 6.65544, 6.3081 ], "y0": "no&female" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(82, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(82, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "no&female", "line": { "width": 0 }, "marker": { "color": "hsla(82, 50%, 50%,0.9)", "line": { "color": "hsla(82, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "star-diamond" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "no&female", "showlegend": false, "side": "positive", "span": [ 6.212958962080118, 6.291372225863175 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 6.55536, 6.39693, 6.907760000000001, 6.50279, 6.614730000000001, 6.30992, 6.62007, 6.17379, 6.2146099999999995, 6.65286, 6.30992, 6.48158, 6.907760000000001, 5.8999, 6.05209, 5.73334, 6.43775, 6.907760000000001, 5.463830000000001, 5.43808, 6.77422, 6.47697, 5.68358, 6.2146099999999995, 6.10925, 6.6783399999999995, 7.1309, 6.39693, 6.77422, 5.96615, 5.90808, 6.39693, 5.0814, 4.605169999999999, 6.7901, 6.65286, 6.86485, 6.92461, 5.99146, 6.85646, 5.4161, 6.30079, 5.76832, 6.16542, 5.93489, 7.04752, 6.19644, 5.7525699999999995, 6.318969999999999, 5.9454199999999995, 6.4677, 6.768489999999999, 6.2480400000000005, 6.33328, 6.48311, 7.00307, 5.8999, 6.62007, 6.36475, 6.65286, 5.7525699999999995, 6.025869999999999, 6.20456, 6.31536, 5.95324, 6.1070199999999994, 6.05209, 5.9269300000000005, 5.51745, 6.715380000000001, 6.85646, 6.85646, 6.32972, 6.802389999999999, 6.16331, 6.95655, 6.2634, 6.3716099999999996, 6.10925, 6.93537, 6.56244, 6.23245, 7.1309, 6.57925, 6.30992, 6.34388, 5.34711, 7.279319999999999, 6.58064, 6.33683, 6.5582, 6.354369999999999, 5.95324, 5.9454199999999995, 5.64545, 5.7525699999999995, 6.28972, 6.2952699999999995, 6.05209, 6.551080000000001, 6.621410000000001, 5.82305, 6.12905, 6.02345, 5.883319999999999, 6.907760000000001, 5.59842, 6.58617, 6.901739999999999, 5.8579300000000005, 6.17379, 5.81711, 6.44254, 6.30079, 6.745239999999999, 6.7901, 6.51471, 6.17379, 6.07993, 6.11589, 5.74939, 6.33328, 6.386880000000001, 7.0255399999999995, 5.8141300000000005, 5.86647, 6.01616, 6.278519999999999, 6.30992, 6.10925, 6.785589999999999, 6.47697, 7.04752, 6.04025, 6.39693, 6.36819, 6.43775, 5.940169999999999, 6.35957, 6.2146099999999995, 6.253830000000001, 6.1025599999999995, 6.1025599999999995, 6.15698, 6.96885, 6.885510000000001, 6.1717, 5.958419999999999, 5.98645, 5.8579300000000005, 6.715380000000001, 5.8861, 6.10925, 6.65286, 6.39693, 5.65948, 5.940169999999999, 6.26149, 6.551080000000001, 6.29157, 5.50126, 6.77422, 5.82008, 6.4708, 6.15698, 5.8999, 5.99146, 6.33328, 6.9707300000000005, 6.6567300000000005, 6.745239999999999, 6.93049, 6.849069999999999, 6.1070199999999994, 6.712960000000001, 5.97635, 6.29157, 6.86901, 6.0282800000000005, 6.39859, 5.42935, 6.6592899999999995, 6.907760000000001, 6.47697, 6.551080000000001, 6.68461, 6.45834, 5.8141300000000005, 6.88755, 6.23441, 6.463030000000001, 6.65286, 6.39693, 5.8141300000000005, 6.3952599999999995, 6.06379, 5.42053, 5.8861, 6.52209, 5.8861, 7.20786, 6.05209, 5.52146, 5.52146, 6.06379, 6.2205900000000005, 6.0822199999999995, 7.04752, 6.3952599999999995, 6.70073, 6.07993, 6.46925, 6.22654, 6.39693, 6.58755, 6.8254600000000005, 5.99146, 6.62007, 6.62007, 6.29895, 5.8579300000000005, 6.745239999999999, 5.93225, 6.49072, 5.78383, 6.35957, 5.82008, 6.04025, 6.39693, 6.59715, 5.01064, 6.77422, 6.30992, 5.5606800000000005, 6.8426800000000005, 6.30992, 6.602589999999999, 6.424869999999999, 6.259580000000001, 6.2634, 5.97635, 6.04025, 6.07993, 6.551080000000001, 6.17587, 5.8693, 6.43775, 6.73459, 5.70378, 6.29157, 6.2146099999999995, 6.63068, 6.682110000000001, 6.19236, 5.68698, 6.12249, 6.14847, 5.88053, 6.10925, 6.38856, 5.86079, 5.99894, 5.39363, 5.96615, 6.52209, 5.96615, 5.9135, 6.6896, 6.14419, 6.692080000000001, 6.013719999999999, 6.224559999999999, 6.07304, 6.2146099999999995, 6.802389999999999, 5.95324, 5.8579300000000005, 6.33683, 5.97889, 6.2146099999999995, 6.34388, 7.18917, 6.1070199999999994, 6.30992, 6.36819, 6.23637, 5.52146, 6.47697, 6.36303, 6.748760000000001, 6.633319999999999, 6.04025, 5.7525699999999995, 6.47697, 6.0330900000000005, 5.8861, 5.82305, 5.39363, 5.43808, 5.95324, 5.8999, 6.2146099999999995, 6.2804, 6.39693, 5.89715, 6.06611, 6.2146099999999995, 6.0845, 5.48064, 6.3952599999999995, 6.27099, 6.58617, 6.2146099999999995, 6.035480000000001, 6.206580000000001, 6.39859, 6.551080000000001, 6.43775, 6.02345, 5.9269300000000005, 6.72743, 6.2634, 6.646389999999999, 5.5797300000000005, 6.07993, 5.4161, 6.47697, 5.50126, 6.583410000000001, 6.44731, 5.82895, 6.2146099999999995, 6.73815, 6.802389999999999, 6.77422, 6.1944099999999995, 6.70073, 6.593039999999999, 6.85646, 5.01064, 6.745239999999999, 6.85646, 6.79347, 5.65249, 6.39693, 6.317159999999999, 6.35611, 5.8579300000000005, 6.18415, 6.05209, 5.84354, 6.46925, 5.99894, 6.77765, 6.30992, 5.8999, 5.8861, 7.216710000000001, 6.65286, 6.2146099999999995, 6.88857, 5.76205, 5.68698, 6.1203, 5.7365699999999995, 5.7365699999999995, 6.2146099999999995, 5.47227, 6.2146099999999995, 7.04752, 6.30992, 7.17012, 6.551080000000001, 5.7365699999999995, 5.64191, 6.21261, 6.47697, 6.95655, 5.61313, 6.62672, 6.23441, 5.7462, 6.056780000000001, 5.8944, 5.84932, 6.06843, 5.53339, 6.49375, 5.7365699999999995, 5.76832, 5.5797300000000005, 6.23832, 5.79606, 6.19644, 6.19236, 6.6253899999999994, 5.7525699999999995, 6.14633, 6.712960000000001, 6.16331, 6.3716099999999996, 6.62007, 6.30992, 6.47697, 6.62007, 6.551080000000001, 6.18002, 6.745239999999999, 5.96358, 6.39693, 6.14204, 5.5797300000000005, 6.11147, 5.66988, 5.73334, 5.90808, 5.9269300000000005, 6.2186, 6.68461, 6.643789999999999, 5.66988, 6.39693, 6.06611, 6.57786, 5.43808, 5.8141300000000005, 6.3315, 6.86485, 6.04025, 6.7901, 6.56244, 6.253830000000001, 6.57228, 6.05209, 5.93225, 5.273, 6.2186, 6.1717, 6.47697, 6.05209, 5.8579300000000005, 6.86693, 6.36303, 5.19296, 6.39693, 5.95584, 6.7093, 6.62007, 6.41017, 6.556780000000001, 5.8141300000000005, 6.30992, 6.39693, 6.26149, 5.94803, 6.65544, 6.3081 ], "y0": "no&female" }, { "fillcolor": "hsla(164, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(164, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "no&male", "line": { "color": "hsla(164, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(164, 70%, 70%,1)", "line": { "color": "hsla(164, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "star-diamond" }, "meanline": { "color": "hsla(164, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage no&male", "orientation": "h", "pointpos": -0.6, "points": "all", "scalegroup": "no&male", "scalemode": "count", "showlegend": true, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 7.313219999999999, 6.10925, 6.993930000000001, 5.99146, 6.67203, 6.6995, 6.745239999999999, 6.745239999999999, 7.111510000000001, 6.563860000000001, 7.346010000000001, 6.77878, 6.818919999999999, 6.43455, 6.16331, 6.49072, 6.802389999999999, 5.8579300000000005, 7.26193, 6.73815, 6.86693, 6.51471, 6.551080000000001, 5.89715, 6.52942, 6.06611, 5.70378, 7.04752, 6.785589999999999, 7.338889999999999, 7.0255399999999995, 5.7365699999999995, 6.90575, 5.9269300000000005, 6.39693, 6.408530000000001, 6.47697, 7.6009, 6.551080000000001, 6.685860000000001, 6.8977, 5.70378, 7.1309, 6.51323, 5.8141300000000005, 6.834110000000001, 7.24423, 6.43775, 6.83195, 5.99146, 6.802389999999999, 5.8999, 6.29157, 5.59842, 6.62007, 5.4161, 7.46737, 7.1309, 6.63857, 6.85646, 5.78074, 5.70378, 6.62007, 6.2146099999999995, 5.9269300000000005, 6.8426800000000005, 6.62007, 5.99146, 6.45362, 6.907760000000001, 6.98008, 7.64969, 6.658010000000001, 6.893660000000001, 8.02027, 6.57786, 5.9269300000000005, 6.2634, 6.85646, 5.78383, 6.907760000000001, 5.4161, 6.62007, 7.1107, 6.85646, 6.62007, 6.04025, 6.86693, 6.4552, 7.346010000000001, 5.8861, 7.143619999999999, 6.907760000000001, 6.354369999999999, 6.745239999999999, 6.882439999999999, 6.68461, 6.90575, 6.10925, 6.16331, 7.24423, 6.86693, 6.07535, 6.59715, 6.77992, 6.2634, 6.85646, 6.8426800000000005, 6.893660000000001, 6.43775, 6.16331, 6.95655, 6.694560000000001, 6.6783399999999995, 6.72743, 6.6280399999999995, 7.346010000000001, 6.63726, 6.551080000000001, 6.77422, 6.715380000000001, 5.70378, 6.802389999999999, 5.4161, 6.95655, 7.0255399999999995, 7.226210000000001, 6.62007, 6.05209, 6.02102, 5.95584, 6.8966899999999995, 6.8426800000000005, 6.86066, 6.9177100000000005, 6.51471, 5.940169999999999, 7.17012, 7.04752, 6.50429, 6.2146099999999995, 6.95655, 7.20786, 7.04316, 6.8533, 5.70378, 6.58617, 6.68461, 6.84055, 5.2983199999999995, 5.99146, 6.10925, 6.51175, 6.73102, 6.802389999999999, 6.697030000000001, 7.01392, 7.24423, 6.354369999999999, 6.9622399999999995, 6.593039999999999, 6.802389999999999, 6.58893, 6.43775, 6.2146099999999995, 6.13123, 6.99485, 6.58617, 6.6567300000000005, 7.59287, 6.963189999999999, 6.551080000000001, 6.66823, 5.78383, 6.51471, 6.2634, 6.90575, 7.09008, 6.795710000000001, 6.12249, 6.907760000000001, 6.77992, 6.62007, 6.8966899999999995, 6.802389999999999, 6.07993, 7.2998, 5.4161, 6.9256, 6.802389999999999, 6.9966800000000005, 6.68461, 5.70378, 7.43838, 7.04752, 6.31355, 6.62007, 6.8977, 7.40914, 5.70378, 6.68461, 7.507689999999999, 5.5797300000000005, 7.6009, 6.4677, 7.522939999999999, 6.551080000000001, 6.802389999999999, 6.79122, 7.71869, 5.52146, 7.401839999999999, 7.6009, 5.958419999999999, 6.62007, 7.313219999999999, 6.82437, 6.29157, 7.2998, 5.83188, 6.95655, 6.07993, 6.6592899999999995, 6.30992, 7.43838, 6.1181, 6.90575, 6.899719999999999, 5.76832, 5.70378, 6.39693, 7.09008, 7.09008, 5.70378, 6.3716099999999996, 7.1309, 6.551080000000001, 6.621410000000001, 6.802389999999999, 6.30992, 6.7226300000000005, 6.72743, 7.24423, 6.85118, 5.67675, 6.62936, 6.90575, 6.08904, 6.802389999999999, 6.69827, 5.99146, 6.45362, 6.2146099999999995, 6.745239999999999, 5.8260000000000005, 6.60394, 6.72623, 6.2146099999999995, 7.1507, 7.00307, 6.85646, 6.55962, 6.7334, 6.802389999999999, 6.68461, 6.84055, 6.787839999999999, 7.1107, 6.593039999999999, 6.30992, 6.83518, 6.77878, 6.967910000000001, 6.68461, 6.90575, 6.23637, 5.78383, 6.694560000000001, 7.027310000000001, 5.84644, 6.2146099999999995, 7.195189999999999, 6.49527, 6.51915, 7.00307, 6.72743, 5.70378, 7.251339999999999, 7.2717, 7.2998, 6.354369999999999, 5.52146, 6.49979, 6.01616, 6.48158, 6.97261, 7.18917, 6.19032, 7.313219999999999, 7.09008, 6.35957, 5.72031, 6.51471, 6.39693, 6.13123, 6.0822199999999995, 6.77878, 6.907760000000001, 6.58617, 6.90575, 6.768489999999999, 6.2146099999999995, 7.1309, 6.912739999999999, 6.2634, 6.84055 ], "y0": "no&male" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(164, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(164, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "no&male", "line": { "width": 0 }, "marker": { "color": "hsla(164, 50%, 50%,0.9)", "line": { "color": "hsla(164, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "star-diamond" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "no&male", "showlegend": false, "side": "positive", "span": [ 6.555183650842299, 6.66343747452714 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 7.313219999999999, 6.10925, 6.993930000000001, 5.99146, 6.67203, 6.6995, 6.745239999999999, 6.745239999999999, 7.111510000000001, 6.563860000000001, 7.346010000000001, 6.77878, 6.818919999999999, 6.43455, 6.16331, 6.49072, 6.802389999999999, 5.8579300000000005, 7.26193, 6.73815, 6.86693, 6.51471, 6.551080000000001, 5.89715, 6.52942, 6.06611, 5.70378, 7.04752, 6.785589999999999, 7.338889999999999, 7.0255399999999995, 5.7365699999999995, 6.90575, 5.9269300000000005, 6.39693, 6.408530000000001, 6.47697, 7.6009, 6.551080000000001, 6.685860000000001, 6.8977, 5.70378, 7.1309, 6.51323, 5.8141300000000005, 6.834110000000001, 7.24423, 6.43775, 6.83195, 5.99146, 6.802389999999999, 5.8999, 6.29157, 5.59842, 6.62007, 5.4161, 7.46737, 7.1309, 6.63857, 6.85646, 5.78074, 5.70378, 6.62007, 6.2146099999999995, 5.9269300000000005, 6.8426800000000005, 6.62007, 5.99146, 6.45362, 6.907760000000001, 6.98008, 7.64969, 6.658010000000001, 6.893660000000001, 8.02027, 6.57786, 5.9269300000000005, 6.2634, 6.85646, 5.78383, 6.907760000000001, 5.4161, 6.62007, 7.1107, 6.85646, 6.62007, 6.04025, 6.86693, 6.4552, 7.346010000000001, 5.8861, 7.143619999999999, 6.907760000000001, 6.354369999999999, 6.745239999999999, 6.882439999999999, 6.68461, 6.90575, 6.10925, 6.16331, 7.24423, 6.86693, 6.07535, 6.59715, 6.77992, 6.2634, 6.85646, 6.8426800000000005, 6.893660000000001, 6.43775, 6.16331, 6.95655, 6.694560000000001, 6.6783399999999995, 6.72743, 6.6280399999999995, 7.346010000000001, 6.63726, 6.551080000000001, 6.77422, 6.715380000000001, 5.70378, 6.802389999999999, 5.4161, 6.95655, 7.0255399999999995, 7.226210000000001, 6.62007, 6.05209, 6.02102, 5.95584, 6.8966899999999995, 6.8426800000000005, 6.86066, 6.9177100000000005, 6.51471, 5.940169999999999, 7.17012, 7.04752, 6.50429, 6.2146099999999995, 6.95655, 7.20786, 7.04316, 6.8533, 5.70378, 6.58617, 6.68461, 6.84055, 5.2983199999999995, 5.99146, 6.10925, 6.51175, 6.73102, 6.802389999999999, 6.697030000000001, 7.01392, 7.24423, 6.354369999999999, 6.9622399999999995, 6.593039999999999, 6.802389999999999, 6.58893, 6.43775, 6.2146099999999995, 6.13123, 6.99485, 6.58617, 6.6567300000000005, 7.59287, 6.963189999999999, 6.551080000000001, 6.66823, 5.78383, 6.51471, 6.2634, 6.90575, 7.09008, 6.795710000000001, 6.12249, 6.907760000000001, 6.77992, 6.62007, 6.8966899999999995, 6.802389999999999, 6.07993, 7.2998, 5.4161, 6.9256, 6.802389999999999, 6.9966800000000005, 6.68461, 5.70378, 7.43838, 7.04752, 6.31355, 6.62007, 6.8977, 7.40914, 5.70378, 6.68461, 7.507689999999999, 5.5797300000000005, 7.6009, 6.4677, 7.522939999999999, 6.551080000000001, 6.802389999999999, 6.79122, 7.71869, 5.52146, 7.401839999999999, 7.6009, 5.958419999999999, 6.62007, 7.313219999999999, 6.82437, 6.29157, 7.2998, 5.83188, 6.95655, 6.07993, 6.6592899999999995, 6.30992, 7.43838, 6.1181, 6.90575, 6.899719999999999, 5.76832, 5.70378, 6.39693, 7.09008, 7.09008, 5.70378, 6.3716099999999996, 7.1309, 6.551080000000001, 6.621410000000001, 6.802389999999999, 6.30992, 6.7226300000000005, 6.72743, 7.24423, 6.85118, 5.67675, 6.62936, 6.90575, 6.08904, 6.802389999999999, 6.69827, 5.99146, 6.45362, 6.2146099999999995, 6.745239999999999, 5.8260000000000005, 6.60394, 6.72623, 6.2146099999999995, 7.1507, 7.00307, 6.85646, 6.55962, 6.7334, 6.802389999999999, 6.68461, 6.84055, 6.787839999999999, 7.1107, 6.593039999999999, 6.30992, 6.83518, 6.77878, 6.967910000000001, 6.68461, 6.90575, 6.23637, 5.78383, 6.694560000000001, 7.027310000000001, 5.84644, 6.2146099999999995, 7.195189999999999, 6.49527, 6.51915, 7.00307, 6.72743, 5.70378, 7.251339999999999, 7.2717, 7.2998, 6.354369999999999, 5.52146, 6.49979, 6.01616, 6.48158, 6.97261, 7.18917, 6.19032, 7.313219999999999, 7.09008, 6.35957, 5.72031, 6.51471, 6.39693, 6.13123, 6.0822199999999995, 6.77878, 6.907760000000001, 6.58617, 6.90575, 6.768489999999999, 6.2146099999999995, 7.1309, 6.912739999999999, 6.2634, 6.84055 ], "y0": "no&male" }, { "fillcolor": "hsla(246, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(246, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "yes&female", "line": { "color": "hsla(246, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(246, 70%, 70%,1)", "line": { "color": "hsla(246, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "star-diamond" }, "meanline": { "color": "hsla(246, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage yes&female", "orientation": "h", "pointpos": -0.6, "points": "all", "scalegroup": "yes&female", "scalemode": "count", "showlegend": true, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.3952599999999995, 7.09008, 6.10925, 6.49224, 6.43615, 7.0422899999999995, 6.73102, 6.0282800000000005, 6.745239999999999, 5.8579300000000005, 5.8861, 5.99146 ], "y0": "yes&female" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(246, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(246, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "yes&female", "line": { "width": 0 }, "marker": { "color": "hsla(246, 50%, 50%,0.9)", "line": { "color": "hsla(246, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "star-diamond" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "yes&female", "showlegend": false, "side": "positive", "span": [ 6.137421753874376, 6.669663901722273 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 6.3952599999999995, 7.09008, 6.10925, 6.49224, 6.43615, 7.0422899999999995, 6.73102, 6.0282800000000005, 6.745239999999999, 5.8579300000000005, 5.8861, 5.99146 ], "y0": "yes&female" }, { "fillcolor": "hsla(328, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(328, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "yes&male", "line": { "color": "hsla(328, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(328, 70%, 70%,1)", "line": { "color": "hsla(328, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "star-diamond" }, "meanline": { "color": "hsla(328, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage yes&male", "orientation": "h", "pointpos": -0.6, "points": false, "scalegroup": "yes&male", "scalemode": "count", "showlegend": true, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.99942, 5.99146, 7.67322, 7.09008, 5.61677, 6.646389999999999, 7.02643, 6.4552, 7.32975, 6.95845, 7.06902, 6.04025, 6.907760000000001, 7.91936, 6.745239999999999, 6.30079, 7.068169999999999, 6.07535, 6.7417, 7.71869, 6.882439999999999, 6.47697, 6.77878, 6.907760000000001, 6.93342, 7.06902, 6.57368, 6.829789999999999, 7.557989999999999, 6.892639999999999, 7.0255399999999995, 6.57925, 6.47697, 7.1309, 6.551080000000001, 6.882439999999999, 6.907760000000001, 6.682110000000001, 6.39693, 6.48004, 6.60665, 7.00307, 5.78383, 6.94505, 6.9546399999999995, 7.17012, 7.11477, 6.593039999999999, 6.49979, 6.5439099999999994, 6.39192, 6.51471, 6.30992, 6.30992, 7.116389999999999, 6.46925, 7.554860000000001, 6.90675, 6.85646, 5.94803, 6.90575, 6.90575, 7.408530000000001, 7.0076, 6.88857, 7.35947, 6.39693, 7.041410000000001, 6.66696, 6.30992, 7.313219999999999, 6.787839999999999, 6.90575, 6.802389999999999, 7.00307, 7.074960000000001, 7.5606, 6.16331, 5.94803, 6.43775, 7.282760000000001, 6.39693, 6.813439999999999, 6.694560000000001, 6.29157, 6.23048, 6.16331, 6.88755, 6.95655, 7.56008, 6.28227, 6.30992, 6.05912, 6.602589999999999, 7.47307, 6.2146099999999995, 6.95655, 6.90575, 6.461469999999999, 7.09008, 7.46737, 6.829789999999999, 6.60665, 6.74052, 6.745239999999999, 7.6009, 6.62007, 6.551080000000001, 6.663130000000001, 7.60589, 6.53669, 6.5582, 6.16121, 6.19236, 6.2146099999999995, 7.37776, 6.58617, 6.23832, 6.27476, 6.48311, 6.69084, 6.54965, 6.882439999999999, 6.663130000000001, 5.70378, 6.7226300000000005, 7.20786, 6.802389999999999, 6.79122, 6.62007, 6.42162, 6.12249, 6.90575, 6.28227, 6.206580000000001, 5.99146, 6.682110000000001, 6.49677, 7.408530000000001, 6.10925, 6.317159999999999, 6.2146099999999995, 6.551080000000001, 6.25575, 7.0884100000000005, 6.16331, 6.68461, 5.8999, 7.01392, 7.1107, 6.9363399999999995, 6.90575, 6.1070199999999994, 6.85646, 6.44572, 6.551080000000001, 6.84588, 8.10168, 7.31255, 5.99645, 6.90575, 6.802389999999999, 6.2146099999999995, 6.66696, 6.907760000000001, 6.90575, 6.6592899999999995, 8.047189999999999, 6.62407, 7.0076, 6.30992, 6.17379, 6.55393, 6.24611, 7.78322, 6.60665, 7.12448, 6.507280000000001, 6.461469999999999, 6.8977, 7.82405, 7.75148, 6.62407, 6.2146099999999995, 7.1309, 6.51471, 5.96615, 6.84055, 7.041410000000001, 6.51471, 6.551080000000001, 7.346010000000001, 6.966019999999999, 6.90575, 7.17012, 6.5820300000000005, 7.04752, 6.354369999999999, 6.59578, 7.82405, 6.5467900000000006, 6.551080000000001, 6.39693, 6.88755, 6.39693, 6.39693, 6.65286, 6.36647, 6.622739999999999, 6.90575, 5.7525699999999995, 6.15273, 7.04752, 5.52146, 6.770789999999999, 6.907760000000001, 7.00125, 7.064760000000001, 7.00307, 6.05209, 6.745239999999999, 7.045780000000001, 6.54535, 6.37673, 6.62007, 6.907760000000001, 6.10925, 6.39693, 8.16052, 6.745239999999999, 7.03527, 6.765039999999999, 7.1309, 6.77422, 6.87213, 6.551080000000001, 6.907760000000001, 6.6567300000000005, 6.80017, 7.226210000000001, 6.10925, 6.90575, 6.70073, 7.495539999999999, 8.05516, 6.9256, 7.06987, 6.694560000000001, 6.90575, 6.43775, 6.97261, 7.29709, 7.179310000000001, 7.313219999999999, 6.7226300000000005, 6.82437, 6.715380000000001, 7.173189999999999, 6.62007, 6.7226300000000005, 6.85118, 6.49224, 7.313219999999999, 6.62007, 7.158510000000001, 6.68461, 6.57647, 5.89715, 6.34564, 6.556780000000001, 6.7093, 6.93925, 7.00307, 6.551080000000001, 6.90575, 6.53669, 6.69084, 7.313219999999999, 6.05209, 6.90575, 6.62007, 6.4552, 6.77422, 6.87005, 6.65544, 6.42162, 5.9269300000000005, 6.317159999999999, 6.42972, 6.62007, 6.96508, 6.19236, 6.61607, 5.5606800000000005, 6.57368, 6.2634, 6.715380000000001, 7.408530000000001, 6.17379, 7.333019999999999, 6.37502, 6.317159999999999, 7.04752, 6.68461, 6.98008, 6.912739999999999, 6.86693, 7.3670800000000005, 6.68461, 6.90575, 6.90575, 6.62007, 6.45362, 6.47697, 6.9431199999999995, 6.90575, 6.10925, 6.67203, 6.7334, 7.34278, 6.90575, 6.658010000000001, 6.9256, 6.90575, 6.91075, 6.6592899999999995, 6.6592899999999995, 6.16331, 7.441319999999999, 6.47851, 7.07834, 6.745239999999999, 7.20786, 6.36475, 6.63857, 7.475910000000001, 6.62007, 6.4892, 7.00307, 6.56948, 7.43838, 7.15383, 7.064760000000001, 6.88755, 7.26193, 6.23245, 6.30445, 6.715380000000001, 7.313219999999999, 7.37776, 5.8579300000000005, 6.85646, 6.2441699999999996, 6.90575, 6.907760000000001, 6.272880000000001, 6.66568, 7.481560000000001, 7.04752, 6.61338, 6.40688, 5.8579300000000005, 7.57558, 6.83518, 6.38856, 6.768489999999999, 6.90575, 6.39693, 6.34739, 7.1507, 6.58617, 7.282760000000001, 7.00307, 6.66058, 6.58064, 6.90575, 6.10925, 6.64249, 6.715380000000001, 6.62007, 7.1309, 5.99146, 6.95655, 6.65286, 6.16331, 6.24611, 7.1309, 7.1333, 7.24423, 6.04025, 6.86901, 6.802389999999999, 6.70073, 6.1203, 6.90575, 7.313219999999999, 6.54822, 6.95655, 7.50108, 6.39693, 7.07918, 5.8579300000000005, 5.70378, 6.7369699999999995, 7.745, 6.87213, 6.39693, 6.30628, 6.8773, 6.708080000000001, 6.818919999999999, 7.041410000000001, 6.882439999999999, 6.94986, 6.703189999999999, 6.37502, 7.03615, 7.37776, 5.66988, 6.907760000000001, 6.882439999999999, 6.752269999999999, 6.48158, 6.47697, 6.802389999999999, 6.984719999999999, 5.9269300000000005, 6.49224, 6.385190000000001, 7.1309, 7.663880000000001, 7.07242, 6.907760000000001, 6.43775, 8.05516, 6.807930000000001, 6.907760000000001, 6.403569999999999, 6.035480000000001, 7.24423, 6.05209, 7.00307, 5.99146, 6.33683, 6.07993, 7.488289999999999, 6.51175, 5.7365699999999995, 6.90575, 6.697030000000001, 6.354369999999999, 6.802389999999999, 6.62007, 6.68461, 6.68835, 5.8260000000000005, 6.85646, 6.44572, 6.95655, 7.20786, 6.3716099999999996, 6.8977, 6.47697, 6.802389999999999, 6.84055, 7.676010000000001, 6.85646, 6.43775, 7.20786, 6.89163, 7.0121199999999995, 6.85646, 6.77422, 6.54965, 6.05209, 6.697030000000001, 6.90575, 6.68461, 6.62007, 7.24423, 6.36819, 6.8844899999999996, 6.62007, 6.745239999999999, 6.19236, 6.39693, 6.85646, 6.7334, 5.98896, 6.48004, 6.55393, 6.5903, 7.02643, 7.15305, 6.19236, 6.43615, 6.6871100000000006, 6.42162, 6.06379, 6.93537, 7.09008, 6.802389999999999, 6.47697, 6.2634, 7.79028, 6.10032, 6.0282800000000005, 7.408530000000001, 6.6174, 6.907760000000001, 6.90575, 5.99146, 6.2441699999999996, 6.00141, 6.79122, 6.9196800000000005, 6.9147300000000005, 6.90575, 6.646389999999999, 6.746410000000001, 6.30992, 6.42972, 6.18826, 6.5467900000000006, 7.522939999999999, 6.7334, 6.07993, 6.907760000000001, 6.90575, 7.04752, 6.66185, 6.47697, 7.23418, 6.54247, 6.753439999999999, 6.51471, 7.034389999999999, 6.65286, 7.262630000000001, 7.20786, 6.90575, 6.30992, 6.984719999999999, 6.30445, 6.05209, 6.34564, 6.95655, 6.49224, 6.62007, 5.82895, 6.39693, 6.06146, 6.43775, 6.03787, 6.3952599999999995, 6.22654, 7.144410000000001, 6.90575, 6.91374, 5.70378, 6.5903, 7.1592899999999995, 6.57786, 6.6783399999999995, 6.72383, 6.41182, 6.53233, 6.907760000000001, 6.7334, 7.236339999999999, 6.20456, 6.10925, 6.715380000000001, 6.72743, 7.084230000000001, 6.97635, 7.20786, 7.00307, 6.35089, 6.59167, 6.461469999999999, 6.984719999999999, 6.53233, 6.646389999999999, 6.39693, 7.459910000000001, 6.19848, 7.0255399999999995, 6.745239999999999, 6.22654, 6.10925, 7.08171, 6.64249, 7.49332, 7.495539999999999, 7.1546199999999995, 7.1309, 6.745239999999999, 6.18415, 5.82895, 6.10925, 6.58617, 6.48158, 6.20456, 7.313219999999999, 6.94022, 6.90575, 6.41836, 6.10925, 7.48717, 7.0193, 6.983789999999999, 6.633319999999999, 6.29157, 7.49109, 6.91672, 6.90575, 6.715380000000001, 6.47697, 7.37212, 6.646389999999999, 7.0184, 6.84055, 7.24423, 7.09008, 6.52942, 7.4553, 7.00307, 6.37502, 7.24423, 6.48158, 6.68461, 6.10925, 6.90575, 6.90575, 7.75577, 6.82437, 6.18415, 6.43775, 6.90575, 7.1107, 6.44572, 6.42162, 6.769639999999999, 6.93245, 6.818919999999999, 6.551080000000001, 6.58617, 6.96508, 6.44572, 6.7093, 6.28972, 7.1082399999999994, 7.135689999999999, 6.49072, 7.251339999999999, 8.51719, 6.807930000000001, 7.14756, 7.33368, 6.77422, 6.60394, 6.68461, 7.1309, 5.99146, 7.201169999999999, 6.10925, 6.68461, 6.39693, 6.927560000000001, 6.85751, 6.95655, 6.08677, 7.24423, 7.1309, 6.17587, 6.30992, 6.36303, 6.77422, 6.2860000000000005, 6.828710000000001, 6.47697, 6.72743, 6.55251, 6.62407, 5.9814099999999994, 6.76273, 7.06902, 5.9269300000000005, 6.80128, 7.313219999999999, 6.966019999999999, 6.6592899999999995, 6.39693, 6.57786, 6.65286, 6.293419999999999, 5.87493, 6.79122, 6.987489999999999, 6.30992, 6.55536, 7.09008, 6.2146099999999995, 7.04752, 6.90575, 6.10925, 6.6783399999999995, 6.39693, 7.259119999999999, 7.43838, 6.47697, 7.1309, 6.77422, 6.2634, 6.739339999999999, 6.47697, 6.90575, 7.279319999999999, 6.815639999999999, 6.65028, 6.27099, 7.17012, 6.354369999999999, 6.29157, 6.802389999999999, 6.602589999999999, 6.47697, 6.58755, 6.77422, 6.907760000000001, 7.09589, 6.882439999999999, 5.45959, 6.05209, 7.67322, 5.8579300000000005, 6.2146099999999995, 7.2957399999999994, 5.84354, 6.802389999999999, 6.58064, 6.2634, 7.00307, 6.90575, 7.21891, 7.503839999999999, 6.45677, 6.950810000000001, 5.97126, 6.23048, 6.15273, 7.57558, 6.96035, 6.3716099999999996, 6.2146099999999995, 6.7334, 6.86066, 6.378430000000001, 6.48004, 7.00307, 6.8200199999999995, 6.47697, 6.90575, 7.39388, 7.4787300000000005, 6.2146099999999995, 6.802389999999999, 6.43775, 7.24065, 6.13773, 6.3952599999999995, 7.1025, 7.04752, 7.09008, 6.77992, 6.9256, 6.035480000000001, 7.22766, 7.475339999999999, 5.72031, 6.272880000000001, 6.01616, 6.27099, 7.91936, 6.85646, 6.354369999999999, 6.2634, 6.51471, 6.92166, 6.253830000000001, 6.745239999999999, 6.30992, 7.3651800000000005, 6.24998, 6.893660000000001, 6.53669, 6.43615, 7.04752, 6.30992, 6.39693, 6.1334, 6.765039999999999, 6.85646, 6.892639999999999, 6.95655, 5.99146, 6.43775, 6.90575, 6.81124, 6.966019999999999, 6.8865300000000005, 6.62007, 7.334980000000001, 6.72743, 6.93245, 7.27031, 7.03878, 7.0255399999999995, 6.83518, 6.77992, 6.68461, 7.696210000000001, 6.53669, 6.52942, 6.126869999999999, 6.54965, 6.715380000000001, 7.31122, 5.8693, 6.90575, 6.0282800000000005, 6.30992, 6.23245, 6.31536, 7.486610000000001, 6.52942, 6.14204, 6.88755, 6.62007, 6.34564, 6.44413, 5.99146, 6.93245, 7.37776, 6.907760000000001, 7.18917, 6.7093, 6.75926, 6.3315, 6.5439099999999994, 6.1717, 7.9459100000000005, 6.77422, 7.424760000000001, 5.70378, 6.43775, 6.90575, 7.6009, 6.90575, 7.46737, 6.694560000000001, 8.16052, 6.984719999999999, 6.802389999999999, 5.99146, 6.802389999999999, 7.32647, 7.1309, 5.96101, 6.62007, 6.84055, 6.58617, 7.1309, 7.00307, 7.78322, 6.62007, 5.7525699999999995, 6.62407, 6.795710000000001, 7.212289999999999, 6.05209, 6.38856, 6.93925, 6.47697, 6.8773, 6.354369999999999, 7.9724699999999995, 6.703189999999999, 6.47697, 6.50429, 6.58617, 6.51471, 6.06611, 6.68461, 6.65544, 7.331060000000001, 6.64118, 6.47697, 7.475910000000001, 6.72743, 7.20786, 6.81124, 7.0201899999999995, 7.279319999999999, 6.80461, 5.99645, 7.10906, 6.40523, 6.77422, 7.01571, 6.54822, 6.14204, 6.47697, 7.24423, 5.93225, 7.46737, 6.69084, 6.47697, 6.85646, 6.88755, 7.24423, 6.95655, 6.67077, 7.313219999999999, 6.98008, 6.75577, 6.566669999999999, 7.09008, 6.697030000000001, 6.79794, 6.2634, 6.61874, 6.64118, 7.1309, 6.98101, 6.90575, 5.90263, 6.17794, 6.77422, 6.96035, 6.6515699999999995, 6.35957, 6.829789999999999, 6.66568, 7.09008, 6.10925, 6.85646, 6.90575, 6.95655, 6.126869999999999, 7.1309, 6.4552, 6.58617, 7.23778, 6.66568, 6.21261, 6.57925, 6.802389999999999, 6.88755, 7.08171, 6.6567300000000005, 7.696210000000001, 6.68461, 6.43775, 6.802389999999999, 6.6592899999999995, 6.48311, 6.408530000000001, 6.84055, 7.17778, 6.2634, 6.4892, 6.95177, 6.785589999999999, 7.033510000000001, 6.57647, 6.23637, 6.530880000000001, 6.43775, 6.90575, 6.30992, 6.85646, 6.79122, 6.30992, 6.62007, 5.76832, 6.81014, 6.551080000000001, 6.56526, 6.551080000000001, 7.09008, 6.9613, 6.7901, 6.95655, 6.65286, 5.9814099999999994, 6.28227, 7.46737, 7.18007, 7.46737, 6.90575, 6.52209, 7.37776, 6.90575, 5.99146, 7.46737, 5.99146, 6.18826, 6.59987, 6.68461, 7.6009, 7.14913, 7.27031, 6.317159999999999, 6.72503, 5.99146, 6.62007, 6.6871100000000006, 7.17012, 6.802389999999999, 5.93754, 6.995769999999999, 6.802389999999999, 6.52356, 6.55251, 6.56526, 6.72383, 7.09008, 6.68461, 6.52209, 7.313219999999999, 6.94698, 6.561030000000001, 6.907760000000001, 7.71869, 5.96615, 6.41673, 6.29157, 7.00307, 6.802389999999999, 6.90375, 6.1944099999999995, 7.09008, 6.90575, 6.47697, 7.26193, 6.60665, 6.424869999999999, 7.37776, 6.13773, 6.907760000000001, 6.858569999999999, 6.745239999999999, 7.495539999999999, 7.1546199999999995, 6.2804, 6.6592899999999995, 6.77422, 6.893660000000001, 6.86693, 7.408530000000001, 6.72743, 6.42972, 6.633319999999999, 7.0579, 6.68461, 7.185389999999999, 7.26543, 7.05099, 6.10925, 6.60123, 7.233460000000001, 6.90575, 6.77194, 6.6567300000000005, 6.3243599999999995, 6.55393, 6.9613, 6.90575, 6.907760000000001, 6.90975, 7.64969, 7.1309, 6.745239999999999, 5.99146, 6.354369999999999, 5.4161, 6.55536, 6.02102, 6.7334, 6.47697, 6.47697, 6.53669, 6.95655, 6.551080000000001, 7.6009, 6.90575, 7.17242, 6.3421199999999995, 6.9196800000000005, 6.51471, 6.85646, 6.551080000000001, 6.35611, 6.90575, 6.34914, 7.696210000000001, 7.17012, 6.802389999999999, 6.253830000000001, 6.90575, 6.48464, 6.49224, 6.82763, 6.90575, 7.014810000000001, 6.2634, 7.04752, 6.90575, 7.20786, 7.02997, 7.803839999999999, 6.31355, 6.89467, 6.829789999999999, 7.17012, 7.54961, 7.28207, 6.69084, 7.1929300000000005, 6.33328, 5.84354, 6.85646, 6.912739999999999, 6.80017, 6.97635, 6.2653, 7.1309, 7.17012, 7.0884100000000005, 7.16627, 6.19644, 6.39693, 5.9814099999999994, 6.90575, 6.90575, 6.6958, 5.01728, 7.279319999999999, 7.136480000000001, 6.608, 6.68461, 7.9831, 6.9828600000000005, 6.30992, 6.2146099999999995, 7.09506, 6.44572, 6.90575, 6.90575, 7.08339, 5.96615, 6.9622399999999995, 7.11233, 6.912739999999999, 6.68461, 6.8254600000000005, 7.346010000000001, 6.68085, 7.24423, 6.62007, 6.1070199999999994, 6.33328, 6.15698, 6.30262, 6.253830000000001, 7.30317, 6.829789999999999, 6.56808, 6.36303, 7.20786, 6.752269999999999, 6.95655, 6.02102, 6.633319999999999, 6.2634, 7.183110000000001, 6.907760000000001, 6.6174, 7.43838, 6.45047, 6.9707300000000005, 6.3952599999999995, 7.09008, 6.49979, 6.94986, 7.06902, 6.68461, 7.22766, 6.68461, 7.1309, 6.975410000000001, 6.2672, 6.50279, 6.551080000000001, 6.59987, 6.7334, 6.2146099999999995, 6.44572, 7.408530000000001, 7.09008, 6.614730000000001, 6.17379, 7.03615, 6.05209, 6.83518, 7.09008, 6.63857, 6.17794, 6.551080000000001, 6.30992, 7.07834, 6.39693, 6.57228, 6.938280000000001, 6.715380000000001, 6.7511, 6.715380000000001, 6.58617, 5.59842, 6.3935900000000006, 7.26193, 6.49072, 6.829789999999999, 6.745239999999999, 6.721430000000001, 6.59715, 6.00389, 6.9828600000000005, 6.62007, 6.85646, 7.04752, 6.23441, 6.551080000000001, 6.14633, 6.563860000000001, 6.73102, 6.2634, 6.3243599999999995, 6.721430000000001, 6.6796, 7.062189999999999, 6.10925, 7.313219999999999, 6.34564, 6.561030000000001, 6.17379, 7.06987, 6.87626, 6.505780000000001, 6.745239999999999, 6.966019999999999, 6.4488900000000005, 7.1309, 6.68461, 6.575080000000001, 6.40192, 6.70073, 6.56808, 6.7334, 6.30992, 7.0775, 6.6796, 6.8384100000000005, 7.03615, 6.85751, 6.745239999999999, 7.313219999999999, 6.86693, 7.08171, 6.85646, 6.47697, 6.47697, 6.28972, 7.46737, 7.2724, 6.61874, 6.30079, 7.0255399999999995, 6.27099, 6.90575, 6.34564, 6.9828600000000005, 7.450080000000001, 6.224559999999999, 6.551080000000001, 6.23441, 7.1309, 6.52209, 7.49332, 6.39192, 6.739339999999999, 7.4832399999999994, 6.16331, 6.68461, 6.90575, 6.90575, 7.1309, 6.86171, 6.715380000000001, 6.551080000000001, 6.33683, 6.9187, 7.0579, 6.35611, 7.02376, 5.5797300000000005, 6.90575, 6.82655, 6.90575, 5.9269300000000005, 7.42833, 5.87212, 6.463030000000001, 7.52833, 6.86797, 6.60665, 6.90575, 6.4677, 7.3651800000000005, 6.748760000000001, 6.77992, 6.975410000000001, 7.43838, 7.82405, 6.5439099999999994, 6.42162, 6.8844899999999996, 7.16085, 6.52209, 6.04025, 5.52146, 6.90575, 7.00307, 6.907760000000001, 6.817830000000001, 7.279319999999999, 6.907760000000001, 7.54961, 7.323169999999999, 6.90575, 6.41017, 6.90575, 6.787839999999999, 6.62007, 7.0967199999999995, 5.9269300000000005, 6.55393, 6.17379, 7.00307, 7.31122, 7.31122, 6.31355, 6.44572, 6.59578, 6.47697, 6.69332, 6.7511, 6.77422, 7.09008, 5.8579300000000005, 7.183110000000001, 7.728860000000001, 6.54965, 7.04752, 7.25488, 6.9256, 6.907760000000001, 5.65249, 7.041410000000001, 6.4599, 6.96035, 7.1333, 6.99942, 6.38012, 7.200419999999999, 7.18007, 7.1309, 6.461469999999999, 6.85646, 7.17012, 7.03527, 6.19848, 6.62007, 7.313219999999999, 6.907760000000001, 6.90575, 7.1452, 5.82895, 6.33683, 6.04025, 6.2146099999999995, 7.8935699999999995, 6.34564, 6.64249, 6.8977, 6.3699, 6.6567300000000005, 6.813439999999999, 6.53669, 6.90575, 6.47697, 6.05209, 7.21524, 6.551080000000001, 6.66568, 6.57925, 6.2146099999999995, 6.8426800000000005, 6.907760000000001, 6.90575, 7.106610000000001, 6.424869999999999, 6.65415, 6.86693, 6.745239999999999, 6.88346, 6.53669, 6.3207699999999996, 7.696210000000001, 7.64779, 7.313219999999999, 6.95655, 6.715380000000001, 6.44254, 6.61338, 6.23245, 6.95655, 6.768489999999999, 7.3981699999999995, 6.68461, 7.12287, 6.813439999999999, 6.752269999999999, 6.551080000000001, 6.7334, 6.318969999999999, 6.79122, 5.95324, 6.745239999999999, 7.1309, 6.54103, 7.06048, 6.24222, 6.68461, 6.05209, 6.78672, 7.09008, 7.1309, 6.47697, 7.1025, 5.9814099999999994, 7.24423, 6.44254, 7.451239999999999, 7.198180000000001, 7.27101, 7.245660000000001, 7.279319999999999, 6.85646, 7.279319999999999, 7.67322, 6.76273, 6.82437, 6.47697, 6.885510000000001, 7.07918, 7.279319999999999, 7.1309, 6.966019999999999, 6.73102, 6.633319999999999, 7.00307, 7.6009, 6.907760000000001, 6.32615, 6.508769999999999, 6.551080000000001, 7.0884100000000005, 6.829789999999999, 7.31986, 6.21661, 7.11802, 6.77422, 7.26193, 6.90575, 7.00307, 5.99146, 7.46737, 6.57786, 6.3081, 6.90575, 6.311730000000001, 6.39693, 6.95655, 6.62007, 6.3952599999999995, 6.48311, 6.39693, 6.90575, 6.60665, 6.90575, 6.318969999999999, 6.802389999999999, 6.70441, 6.51471, 6.77992, 6.68461, 6.29157, 6.40523, 6.18826, 7.24423, 6.83518, 7.09008, 7.84502, 7.1624, 6.813439999999999, 6.907760000000001, 6.68461, 6.14633, 7.17012, 6.53814, 6.882439999999999, 6.36647, 6.47697, 7.54697, 6.60665, 6.68461, 7.408530000000001, 7.2724, 6.46614, 6.90575, 5.7462, 6.36303, 7.04752, 6.551080000000001, 6.58064, 6.17379, 6.83195, 7.20786, 6.62007, 6.95655, 6.90575, 6.34564, 7.09008, 7.014810000000001, 6.73815, 6.65028, 7.03878, 6.10032, 7.266830000000001, 6.95655, 7.20786, 6.602589999999999, 6.551080000000001, 6.87626, 5.16479, 7.54961, 6.551080000000001, 6.49224, 6.58893, 6.60665, 6.907760000000001, 7.64969, 6.9177100000000005, 6.18415, 6.68461, 7.43838, 6.66441, 6.551080000000001, 6.41182, 6.43775, 6.43775, 6.4599, 7.00307, 5.99146, 6.852239999999999, 6.5439099999999994, 6.6515699999999995, 7.522939999999999, 6.16331, 6.551080000000001, 6.907760000000001, 7.04752, 6.44572, 6.3243599999999995, 6.41346, 6.551080000000001, 6.802389999999999, 6.62007, 6.5439099999999994, 6.57925, 6.38012, 6.4151, 6.52209, 6.29157, 6.2146099999999995, 6.97167, 6.75926, 6.66823, 7.37776, 7.1309, 6.90575, 6.10925, 7.408530000000001, 6.39693, 6.04025, 7.0396600000000005, 7.09589, 7.10003, 6.73102, 6.87523, 6.90575, 7.20786, 7.173960000000001, 6.90575, 6.47389, 6.99026, 7.0884100000000005, 6.206580000000001, 6.56526, 6.44572, 6.551080000000001, 6.53379, 6.90575, 6.46614, 6.61338, 6.90575, 6.85646, 6.47389, 6.10925, 6.99118, 6.2441699999999996, 7.1592899999999995, 6.90575, 6.59987, 7.01571, 6.42162, 6.716589999999999, 6.85646, 7.46737, 6.58617, 6.95655, 6.29157, 6.907760000000001, 6.46459, 6.62007, 6.95177, 6.58617, 6.50129, 6.2952699999999995, 6.85646, 6.15698, 6.90575, 7.6009, 7.00307, 6.17379, 6.15273, 6.62007, 7.346010000000001, 6.90575, 6.68461, 6.50429, 7.0942300000000005, 5.78383, 6.54535, 6.3716099999999996, 7.86327, 6.62007, 7.09008, 6.703189999999999, 6.53233, 6.58617, 7.46737, 6.39693, 6.38012, 6.802389999999999, 6.43935, 7.044910000000001, 6.42162, 6.90575, 6.802389999999999, 6.44413, 7.127689999999999, 6.45677, 6.40192, 6.55393, 7.06902, 6.59987, 6.715380000000001, 6.715380000000001, 6.39693, 6.57786, 6.68461, 7.00307, 6.42972, 6.85435, 6.937310000000001, 6.2106, 6.708080000000001, 6.0845, 6.907760000000001, 6.16331, 6.2441699999999996, 6.74406, 6.85646, 6.73221, 5.72031, 7.54961, 6.37673, 6.90575, 6.62007, 6.768489999999999, 6.63595, 5.82895, 6.90575, 6.75577, 6.77194, 6.77422, 5.8999, 6.2146099999999995, 6.2146099999999995, 6.62007, 6.9489, 7.354360000000001, 7.279319999999999, 5.8861, 6.6592899999999995, 7.06305, 6.61338, 7.00307, 6.49224, 6.84588, 6.35611, 6.35611, 6.8977, 7.20786, 6.90575, 7.1309, 7.393260000000001, 6.95655, 6.834110000000001, 6.07993, 7.10988, 6.802389999999999, 6.224559999999999, 6.57925, 6.927560000000001, 6.90575, 7.09008, 7.1309, 6.90575, 6.907760000000001, 6.16542, 6.62007, 7.6009, 6.95655, 6.90575, 6.90575, 6.796819999999999, 6.66568, 6.907760000000001, 6.8533, 6.813439999999999, 7.196689999999999, 6.43615, 6.9147300000000005, 6.77194, 6.90575, 6.90575, 6.47697, 7.0255399999999995, 7.522939999999999, 6.62007, 6.354369999999999, 7.1546199999999995, 6.90575, 6.551080000000001, 6.753439999999999, 6.77422, 7.313219999999999, 6.967910000000001, 6.816739999999999, 7.6009, 6.745239999999999, 7.37588, 6.86485, 6.41346, 6.7093, 6.551080000000001, 6.22654, 7.24423, 6.06146, 6.16331, 7.05359, 6.86171, 6.58617, 7.1309, 6.77422, 7.93737, 6.39693, 6.58617, 7.67322, 6.551080000000001, 6.2146099999999995, 6.77422, 6.99485, 6.45047, 6.66185, 6.94119, 7.21891, 7.57558, 7.495539999999999, 6.10925, 6.59715, 6.03787, 6.556780000000001, 6.354369999999999, 7.6009, 6.83303, 6.551080000000001, 7.279319999999999, 6.354369999999999, 7.925160000000001, 6.77422, 7.183110000000001, 6.1136800000000004, 6.77992, 6.62007, 7.00307, 7.86327, 6.70073, 7.1309, 6.32794, 6.16121, 5.6801699999999995, 6.65286, 6.802389999999999, 6.715380000000001, 6.95655, 6.78333, 6.90575, 6.67582, 6.47697, 6.907760000000001, 6.90575, 6.53233, 6.882439999999999, 7.0255399999999995, 6.23048, 6.715380000000001, 7.872839999999999, 6.49072, 6.90575, 6.4892, 6.63726, 6.3613, 6.79122, 6.53233, 6.05209, 6.697030000000001, 6.8742, 6.08677, 6.6280399999999995, 6.907760000000001, 6.05209, 5.70378, 7.02997, 6.715380000000001, 6.2146099999999995, 6.90575, 7.313219999999999, 6.3699, 6.07074, 6.54822, 6.62007, 6.59987, 6.7226300000000005, 6.51026, 6.907760000000001, 6.50429, 6.47697, 6.58617, 6.77422, 6.8977, 5.9135, 6.17379, 8.047189999999999, 6.93537, 6.2146099999999995, 6.507280000000001, 7.46737, 5.82895, 7.034389999999999, 6.7569300000000005, 6.95655, 6.17794, 6.68461, 7.495539999999999, 6.62007, 6.88755, 6.45205, 6.802389999999999, 6.32794, 6.68461, 8.03916, 6.829789999999999, 6.6745600000000005, 6.714169999999999, 6.43775, 7.00307, 6.43455, 6.90575, 7.346660000000001, 7.6009, 7.10988, 7.24423, 6.7569300000000005, 6.48004, 6.889589999999999, 7.313219999999999, 6.9256, 6.59167, 6.57786, 6.53669, 6.39693, 6.33328, 6.33328, 7.313219999999999, 6.551080000000001, 7.408530000000001, 7.3908, 6.90575, 6.9256, 6.95655, 6.13123, 6.551080000000001, 7.06561, 6.57925, 6.90575, 6.73102, 7.09008, 6.566669999999999, 6.43775, 6.62007, 6.424869999999999, 6.646389999999999, 6.2146099999999995, 6.802389999999999, 6.90575, 6.9613, 6.78672, 6.65286, 7.24423, 7.09008, 6.602589999999999, 6.42162, 7.0422899999999995, 7.034389999999999, 6.59987, 6.44572, 6.20456, 6.57925, 6.38012, 6.16331, 6.818919999999999, 6.551080000000001, 6.53669, 6.95655, 5.76832, 7.2100800000000005, 6.48311, 6.507280000000001, 6.45362, 6.765039999999999, 6.2634, 6.2691, 7.18917, 6.2146099999999995, 6.802389999999999, 6.50129, 6.2634, 7.38647, 6.96885, 6.10925, 7.196689999999999, 6.3403599999999996, 6.818919999999999, 6.72623, 6.90575, 6.7569300000000005, 6.62936, 7.09008, 6.62007, 5.9839400000000005, 6.95655, 7.49332, 6.62007, 6.62007, 6.753439999999999, 6.77422, 6.2653, 7.495539999999999, 6.7334, 6.95655, 6.56526, 6.88755, 7.47307, 6.47697, 6.90575, 6.90575, 7.909860000000001, 6.69084, 6.3716099999999996, 6.52209, 7.106610000000001, 6.40523, 6.69084, 5.627619999999999, 6.6567300000000005, 6.68461, 6.697030000000001, 6.22654, 7.740660000000001, 6.907760000000001, 6.43775, 6.43775, 6.813439999999999, 5.76832, 6.9256, 7.64969, 6.47697, 6.10925, 7.1309, 5.89715, 6.907760000000001, 6.745239999999999, 6.43775, 6.85646, 6.77422, 6.768489999999999, 7.029089999999999, 6.62007, 7.06133, 7.24423, 6.95177, 7.54961, 6.354369999999999, 6.87626, 6.318969999999999, 6.570880000000001, 7.61332, 7.09008, 6.7511, 6.551080000000001, 7.034389999999999, 6.49072, 6.30992, 6.55393, 6.72743, 6.05209, 7.0967199999999995, 6.90575, 6.551080000000001, 6.907760000000001, 6.785589999999999, 6.39693, 6.05209, 6.90575, 6.697030000000001, 6.814539999999999, 6.639880000000001, 6.62007, 7.24423, 6.77194, 6.551080000000001, 6.802389999999999, 5.8999, 6.57228, 7.062189999999999, 6.47697, 6.2441699999999996, 6.829789999999999, 6.95655, 6.907760000000001, 6.38012, 7.293019999999999, 6.91175, 6.45834, 6.556780000000001, 6.5582, 6.91175, 6.45362, 7.1309, 6.8773, 6.955589999999999, 7.80588, 6.9613, 5.4161, 6.907760000000001, 6.90575, 7.18992, 6.90575, 6.385190000000001, 7.31122, 6.6107, 6.807930000000001, 6.79794, 6.1717, 6.16331, 6.6592899999999995, 7.0483899999999995, 6.598510000000001, 6.09131, 7.106610000000001, 6.90575, 7.66153, 7.22548, 6.48768, 6.87213, 7.17012, 6.23245, 6.39693, 7.35244, 7.183110000000001, 6.56948, 8.00637, 7.05272, 6.33328, 6.90575, 6.802389999999999, 6.30992, 6.551080000000001, 6.10925, 6.77422, 6.30992, 6.49979, 6.802389999999999, 7.05704, 7.16858, 6.802389999999999, 6.58617, 6.551080000000001, 7.20564, 7.1507, 6.852239999999999, 7.6009, 6.70564, 5.7525699999999995, 6.90575, 6.11147, 6.95655, 6.84375, 6.95655, 6.8977, 7.34923, 6.93245, 6.34564, 7.03878, 7.400010000000001, 5.8579300000000005, 7.37588, 6.83195, 7.00307, 6.84162, 6.354369999999999, 6.93342, 6.608, 6.85646, 6.61607, 6.056780000000001, 6.90575, 6.697030000000001, 6.5395900000000005, 6.6120399999999995, 6.63726, 7.1309, 6.739339999999999, 7.86327, 6.55393, 6.47697, 6.7511, 6.907760000000001, 6.05912, 6.54535, 6.551080000000001, 7.00307, 6.51471, 6.57925, 6.66823, 7.1309, 6.551080000000001, 6.44572, 7.00307, 6.253830000000001, 5.99146, 7.2724, 6.907760000000001, 6.90575, 6.3315, 6.3699, 6.39693, 7.82405, 6.95655, 6.09582, 6.07535, 6.90575, 6.8426800000000005, 7.0518600000000005, 6.993930000000001, 6.907760000000001, 6.79122, 6.7511, 6.2146099999999995, 6.78897, 6.67203, 7.259119999999999, 7.6811, 6.745239999999999, 7.27031, 6.721430000000001, 6.90575, 6.563860000000001, 6.99485, 7.37776, 7.06048, 6.30992, 6.84375, 7.0282, 6.66696, 6.90575, 6.47235, 6.56244, 8.0229, 6.90575, 6.6592899999999995, 6.80351, 6.92658, 6.4892, 6.28227, 7.06902, 6.08677, 7.1309, 5.68698, 6.33683, 6.984719999999999, 6.753439999999999, 6.354369999999999, 6.52209, 6.52209, 7.362010000000001, 6.8200199999999995, 6.73102, 6.39693, 6.8773, 6.507280000000001, 6.81014, 6.802389999999999, 6.49072, 7.46737, 6.745239999999999, 6.11147, 6.2634, 7.181589999999999, 6.551080000000001, 7.05618, 5.86079, 6.51619, 6.56948, 6.937310000000001, 6.9256, 6.90575, 6.10925, 6.39693, 7.09008, 6.82437, 6.753439999999999, 6.966019999999999, 6.802389999999999, 7.239210000000001, 6.5582, 6.907760000000001, 6.98008, 6.62407, 5.70378, 6.551080000000001, 6.41673, 7.313219999999999, 6.62007, 6.84588, 6.42162, 6.68461, 6.715380000000001, 6.85646, 6.57786, 5.8579300000000005, 6.2146099999999995, 7.313219999999999, 7.37776, 6.30992, 7.1309, 6.69084, 6.70564, 5.7462, 6.16752, 7.279319999999999, 6.73102, 6.53669, 6.24222, 7.03527, 7.04752, 6.507280000000001, 6.93049, 6.59715, 7.09008, 6.45047, 6.33328, 6.68461, 6.62007, 6.90575, 7.04752, 6.6346300000000005, 6.59167, 6.41836, 7.2724, 6.56526, 7.91936, 6.54103, 6.90575, 7.57558, 6.20456, 6.802389999999999, 7.484369999999999, 6.90575, 6.51471, 5.7462, 6.39693, 6.94698, 7.084230000000001, 6.96885, 6.907760000000001, 7.00307, 7.293019999999999, 7.173189999999999, 6.77422, 6.815639999999999, 6.43294, 6.813439999999999, 6.90575, 6.88857, 6.90575, 7.09008, 6.90575, 7.226210000000001, 7.279319999999999, 6.05912, 6.68461, 6.6592899999999995, 7.91936, 6.507280000000001, 7.00307, 6.47697, 6.551080000000001, 6.90575, 6.2146099999999995, 6.907760000000001, 6.715380000000001, 6.96885, 6.68461, 6.57368, 6.745239999999999, 6.53669, 5.76832, 6.2146099999999995, 6.8426800000000005, 7.520230000000001, 5.5797300000000005, 6.51323, 7.1082399999999994, 6.5582, 7.17012, 6.768489999999999, 6.39693, 7.393260000000001, 6.6958, 6.95177, 6.2146099999999995, 6.5582, 6.9613, 6.4892, 7.676010000000001, 6.715380000000001, 6.907760000000001, 6.3935900000000006, 7.54961, 6.86171, 5.79606, 6.83087, 6.6783399999999995, 6.54535, 6.593039999999999, 6.77422, 6.44572, 7.04752, 7.37776, 7.17012, 6.8426800000000005, 7.00307, 6.126869999999999, 6.50129, 6.8773, 6.56526, 6.354369999999999, 6.96885, 6.575080000000001, 6.62007, 6.42811, 6.752269999999999, 6.90575, 6.78672, 8.12089, 6.829789999999999, 7.00307, 6.2146099999999995, 6.1944099999999995, 7.740660000000001, 6.907760000000001, 6.2146099999999995, 6.96979, 6.68461, 7.14283, 6.139880000000001, 7.1293, 6.89467, 5.43808, 7.183110000000001, 6.5467900000000006, 6.34388, 6.39024, 7.0255399999999995, 6.424869999999999, 6.68461, 6.49979, 7.37776, 6.7901, 6.17379, 6.4488900000000005, 6.614730000000001, 6.60665, 7.09008, 6.51323, 6.93245, 6.6592899999999995, 6.30992, 7.37776, 6.09807, 6.8977, 6.35784, 6.37502, 6.57925, 7.7021, 7.46737, 7.6009, 7.36455, 6.59715, 6.639880000000001, 6.36303, 5.82895, 6.59715, 6.62007, 6.551080000000001, 7.09008, 6.78333, 6.563860000000001, 7.0076, 6.880380000000001, 6.745239999999999, 6.82437, 6.4677, 7.127689999999999, 7.1309, 6.62007, 7.82084, 7.288930000000001, 6.39693, 6.68461, 7.10988, 6.563860000000001, 6.354369999999999, 6.7546, 7.196689999999999, 5.99146, 6.74052, 6.67203, 6.86485, 7.1309, 7.6009, 6.6107, 7.24423, 6.9256, 7.11314, 6.86693, 6.58617, 6.85646, 5.70378, 6.2146099999999995, 6.92363, 6.84588, 6.86171, 6.813439999999999, 6.50279, 5.7589, 6.7417, 7.18917, 6.2146099999999995, 6.93245, 6.78897, 6.74759, 7.00307, 6.3935900000000006, 7.09008, 7.84385, 6.802389999999999, 6.57647, 6.78672, 6.39693, 6.9707300000000005, 8.3082, 7.1309, 7.17012, 6.593039999999999, 6.90575, 6.62007, 6.86693, 6.259580000000001, 6.41999, 5.52146, 6.907760000000001, 7.43838, 6.64509, 7.09008, 6.39693, 7.0255399999999995, 7.903969999999999, 6.745239999999999, 6.80461, 7.037030000000001, 7.04752, 6.47697, 6.65286, 6.76388, 6.90575, 6.87626, 6.90575, 7.1507, 7.07834, 7.21082, 6.52942, 6.701960000000001, 6.8426800000000005, 6.3207699999999996, 6.24611, 6.57786, 6.18826, 6.975410000000001, 7.16085, 6.30992, 6.83303, 7.61874, 6.48158, 6.44095, 6.99485, 6.907760000000001, 6.8384100000000005, 6.79122, 6.551080000000001, 6.6695, 7.279319999999999, 6.57925, 6.813439999999999, 6.30992, 6.68461, 6.47389, 6.802389999999999, 6.785589999999999, 7.313219999999999, 6.551080000000001, 7.29097, 5.8861, 6.98008, 6.802389999999999, 7.20786, 6.802389999999999, 6.983789999999999, 6.75926, 6.68461, 6.55962, 6.8977, 6.05912, 6.90575, 7.4570300000000005, 7.1309, 6.566669999999999, 6.829789999999999, 6.85646, 6.643789999999999, 6.77422, 7.90101, 6.32794, 6.25767, 7.81883, 6.966019999999999, 6.33328, 6.77422, 6.8384100000000005, 6.62007, 6.813439999999999, 6.551080000000001, 6.920669999999999, 7.195189999999999, 6.62007, 6.3315, 6.69332, 6.745239999999999, 6.90575, 7.0396600000000005, 6.90575, 6.07535, 6.30992, 6.96885, 6.47697, 6.39693, 7.24423, 7.12367, 7.17012, 6.18415, 6.68461, 6.44413, 6.4677, 6.47697, 6.907760000000001, 6.4552, 7.1546199999999995, 7.37776, 7.18917, 6.10925, 6.5903, 7.136480000000001, 5.95584, 7.03878, 6.461469999999999, 6.697030000000001, 5.9839400000000005, 6.66568, 6.2146099999999995, 6.56526, 6.51471, 5.61677, 6.49375, 7.06048, 6.715380000000001, 6.10925, 6.95655, 7.1309, 6.95655, 6.90575, 6.76273, 6.311730000000001, 6.29157, 6.86693, 6.68461, 6.90575, 6.95655, 7.17012, 7.0255399999999995, 6.86171, 7.495539999999999, 6.49224, 6.90575, 6.8865300000000005, 7.57353, 6.602589999999999, 6.30992, 6.23048, 6.5467900000000006, 6.530880000000001, 6.802389999999999, 7.6009, 6.46459, 6.834110000000001, 7.313219999999999, 6.802389999999999, 6.66441, 7.251339999999999, 5.87774, 7.43838, 6.35957, 6.43775, 6.5820300000000005, 6.768489999999999, 7.17012, 5.6733199999999995, 6.90575, 7.281389999999999, 7.17702, 6.90575, 6.95845, 6.44572, 6.583410000000001, 6.91672, 6.90575, 8.229510000000001, 7.027310000000001, 6.551080000000001, 7.136480000000001, 6.71174, 6.74288, 7.0934, 7.200419999999999, 6.83087, 7.37776, 6.79122, 6.67203, 6.55393, 6.39693, 7.46737, 6.802389999999999, 7.165489999999999, 6.62007, 6.90575, 7.0255399999999995, 7.70661, 6.47389, 6.35957, 6.07535, 6.907760000000001, 7.20786, 6.43775, 6.556780000000001, 6.966019999999999, 6.95273, 6.3716099999999996, 6.43133, 6.907760000000001, 6.68461, 6.64898, 6.28972, 7.00307, 6.2146099999999995, 6.66058, 7.016610000000001, 7.09008, 6.85646, 6.90575, 5.66988, 7.09008, 6.53379, 6.84801, 5.99146, 7.21891, 6.90575, 6.745239999999999, 7.07242, 7.6009, 6.817830000000001, 7.346010000000001, 6.6592899999999995, 7.46737, 6.975410000000001, 6.79122, 6.719010000000001, 6.720219999999999, 6.90575, 6.90575, 6.68336, 6.892639999999999, 6.86485, 6.947939999999999, 6.955589999999999, 6.90575, 6.551080000000001, 5.66988, 7.0255399999999995, 7.04752, 6.3935900000000006, 6.807930000000001, 6.74288, 6.802389999999999, 6.4599, 6.354369999999999, 6.18208, 7.398789999999999, 7.37776, 7.35883, 6.47697, 7.18463, 6.745239999999999, 7.05876, 6.84588, 6.68461, 7.64969, 6.59578, 6.715380000000001, 6.04025, 6.507280000000001, 6.23441, 7.098380000000001, 6.2804, 7.6256, 6.633319999999999, 6.6346300000000005, 6.43455, 6.52649, 7.54961, 7.09008, 6.36475, 5.7462, 6.77422, 6.10925, 6.73459, 7.1293, 6.49224, 6.28413, 7.17012, 6.90575, 6.6515699999999995, 6.56948, 6.80461, 6.03787, 7.313219999999999, 6.11589, 6.68461, 7.09008, 5.96615, 8.26873, 6.17794, 6.3935900000000006, 7.12287, 6.43775, 5.95324, 6.6796, 6.758089999999999, 6.68461, 6.90575, 7.495539999999999, 6.84588, 6.745239999999999, 6.21261, 6.10032, 8.048789999999999, 7.313219999999999, 6.802389999999999, 6.745239999999999, 6.907760000000001, 6.90575, 5.82305, 6.90575, 7.17012, 6.2441699999999996, 8.08641, 5.59842, 7.08171, 6.9594, 6.97354, 7.30653, 6.55962, 6.58617, 6.74406, 7.56008, 6.1944099999999995, 7.408530000000001, 6.61338, 6.01616, 6.32794, 7.18007, 6.74052, 6.95655, 6.58617, 6.66568, 6.85646, 6.44572, 7.313219999999999, 7.1309, 5.99146, 6.18826, 5.59842, 6.49224, 6.821110000000001, 6.56526, 6.47697, 6.813439999999999, 7.43838, 6.30262, 6.38351, 6.551080000000001, 5.45959, 6.43775, 6.90575, 6.53233, 6.61874, 6.06843, 6.1203, 7.88231, 6.90575, 6.7569300000000005, 5.7651900000000005, 6.938280000000001, 7.08255, 6.41346, 6.882439999999999, 7.37776, 6.44413, 6.90575, 6.51471, 6.5439099999999994, 6.551080000000001, 6.90575, 7.35372, 7.135689999999999, 7.46737, 6.63595, 6.802389999999999, 7.346010000000001, 6.90575, 6.86693, 7.1309, 5.78383, 6.829789999999999, 6.65286, 6.7334, 7.2998, 6.65415, 6.9256, 6.90575, 6.39693, 6.52209, 6.3699, 6.770789999999999, 6.39693, 6.49072, 6.02345, 7.32251, 6.13123, 6.29711, 7.04752, 6.799060000000001, 6.272880000000001, 6.49527, 6.57925, 6.697030000000001, 6.703189999999999, 7.04752, 6.65286, 6.752269999999999, 6.2146099999999995, 6.42162, 6.90575, 7.014810000000001, 6.62007, 6.85646, 6.745239999999999, 6.9256, 6.58617, 6.51471, 5.96615, 6.90575, 6.52942, 6.16331, 6.56526, 6.813439999999999, 7.09008, 5.8141300000000005, 6.769639999999999, 6.08677, 6.7369699999999995, 7.064760000000001, 7.11883, 6.51175, 7.46737, 6.57228, 6.551080000000001, 7.67322, 6.35957, 6.907760000000001, 6.58617, 7.1309, 6.57925, 6.43294, 6.39693, 7.46737, 6.95655, 6.54247, 6.3716099999999996, 7.293019999999999, 6.08677, 7.64969, 6.95655, 8.13153, 6.3613, 6.10925, 6.551080000000001, 6.907760000000001, 6.907760000000001, 6.43775, 6.3243599999999995, 6.83518, 6.993930000000001, 6.6567300000000005, 6.984719999999999, 7.062189999999999, 6.907760000000001, 6.77992, 7.195189999999999, 7.185389999999999, 6.07993, 6.01616, 6.72743, 6.33683, 6.70073, 7.20786, 7.0103100000000005, 6.551080000000001, 7.1309, 6.7334, 7.495539999999999, 6.24028, 6.354369999999999, 6.90575, 6.551080000000001, 7.00307, 6.85013, 7.0255399999999995, 6.39693, 7.495539999999999, 6.768489999999999, 6.23441, 6.461469999999999, 6.5395900000000005, 6.907760000000001, 6.05209, 6.28413, 6.126869999999999, 7.12287, 6.745239999999999, 7.21744, 6.39693, 6.49072, 6.47697, 6.05209, 7.24423, 6.802389999999999, 7.09008, 6.44572, 7.00307, 6.966019999999999, 6.721430000000001, 6.62936, 6.813439999999999, 6.28227, 7.64969, 6.9575, 7.3696, 6.461469999999999, 6.90575, 7.20786, 6.78333, 6.57647, 6.5903, 7.00307, 6.74993, 6.57925, 6.907760000000001, 6.16331, 6.59578, 6.802389999999999, 6.272880000000001, 7.014810000000001, 6.2146099999999995, 6.43615, 6.64509, 6.608, 6.68461, 6.58617, 6.62007, 7.00307, 6.95655, 6.12249, 6.62007, 7.09008, 6.83303, 6.98101, 6.6871100000000006, 6.81014, 7.37776, 6.51767, 6.85435, 7.64969, 7.91936, 6.907760000000001, 6.9256, 6.6733, 7.5574699999999995, 6.13773, 6.67203, 6.30992, 6.47697, 6.8956800000000005, 6.56948, 6.33328, 6.802389999999999, 6.9707300000000005, 8.00637, 6.65286, 6.57368, 5.70711, 6.57786, 6.92363, 6.57368, 7.37776, 6.2146099999999995, 7.408530000000001, 7.1155800000000005, 7.91936, 7.09008, 7.37776, 7.1309, 6.58617, 6.14633, 6.6592899999999995, 6.90575, 7.092569999999999, 6.86485, 7.57558, 7.200419999999999, 6.95655, 6.2146099999999995, 6.05209, 6.44254, 6.4599, 6.60394, 6.975410000000001, 7.400010000000001, 8.537, 6.07993, 7.36645, 6.67708, 6.99942, 6.61338, 7.64969, 6.68461, 6.57925, 7.09008, 7.1082399999999994, 6.83518, 7.09008, 6.58617, 6.90575, 6.43615, 6.84162, 7.313219999999999, 6.55962, 6.07993, 6.3952599999999995, 6.633319999999999, 6.42162, 7.09008, 7.313219999999999, 6.30992, 6.79122, 6.720219999999999, 6.66823, 7.2861899999999995, 6.802389999999999, 6.703189999999999, 5.98896, 7.620710000000001, 7.09008, 7.6009, 6.28972, 6.48768, 6.68461, 6.41182, 7.37776, 7.525639999999999, 6.74993, 6.72623, 7.09008, 7.25347, 7.585789999999999, 6.45362, 6.354369999999999, 6.984719999999999, 6.90575, 6.937310000000001, 7.0775, 7.346010000000001, 7.027310000000001, 6.907760000000001, 6.9489, 6.907760000000001, 7.495539999999999, 6.01127, 6.802389999999999, 6.745239999999999, 6.90575, 6.633319999999999, 6.80572, 6.2480400000000005, 6.2634, 6.31355, 7.35819, 6.49677, 6.68461, 6.633319999999999, 7.30317, 6.95655, 6.907760000000001, 5.742999999999999, 6.39693, 7.313219999999999, 7.09008, 6.47697, 7.196689999999999, 6.47697, 6.30262, 6.745239999999999, 7.07412, 6.354369999999999, 6.10925, 6.68461, 7.42357, 6.95655, 6.715380000000001, 6.9828600000000005, 7.02465, 6.49224, 6.49979, 6.27099, 5.8861, 7.393260000000001, 6.829789999999999, 6.32794, 6.28786, 5.9839400000000005, 6.68461, 5.84354, 6.62007, 7.12287, 6.2146099999999995, 6.84162, 7.00307, 6.2146099999999995, 6.983789999999999, 6.35611, 6.17379, 6.95655, 6.39693, 6.88755, 7.04316, 6.90575, 6.84162, 6.45362, 6.83518, 6.85646, 6.46925, 5.99146, 6.62007, 7.00307, 5.99146, 6.22654, 6.633319999999999, 6.77308, 7.1107, 6.95655, 6.967910000000001, 6.995769999999999, 6.66568, 6.594410000000001, 6.90575, 6.5439099999999994, 6.62007, 6.60665, 7.04752, 7.062189999999999, 7.313219999999999, 7.04752, 7.0884100000000005, 6.937310000000001, 6.90575, 6.23441, 6.25767, 6.551080000000001, 6.90575, 7.09008, 6.68461, 6.2146099999999995, 6.386880000000001, 6.44413, 6.58617, 6.10925, 6.90073, 6.745239999999999, 7.2233, 6.8773, 6.813439999999999, 7.037030000000001, 6.40523, 6.2146099999999995, 6.17379, 7.6009, 6.30992, 6.685860000000001, 6.38856, 6.47697, 7.46737, 6.551080000000001, 6.9226399999999995, 6.87213, 6.73102, 6.30992, 7.45298, 5.72359, 6.882439999999999, 5.940169999999999, 6.90675, 6.551080000000001, 6.9147300000000005, 6.85646, 6.563860000000001, 6.381819999999999, 5.78996, 6.769639999999999, 6.73102, 7.06133, 6.68461, 6.2146099999999995, 6.4708, 7.08171, 6.90575, 7.6009, 6.52062, 6.907760000000001, 6.60935, 6.51471, 6.9828600000000005, 6.85646, 6.30992, 7.338889999999999, 6.22654, 6.311730000000001, 7.01392, 6.49224, 6.2205900000000005, 7.44659, 7.388330000000001, 6.85118, 7.24423, 6.632000000000001, 6.90575, 7.10906, 6.944089999999999, 6.83518, 6.222580000000001, 6.84588, 7.17012, 6.52503, 6.2860000000000005, 6.80128, 6.07993 ], "y0": "yes&male" }, { "box": { "visible": false }, "fillcolor": "rgba(0, 0, 0, 0)", "hoverinfo": "x", "hoveron": "points", "jitter": 0.3, "legendgroup": "yes&male", "line": { "color": "rgba(0, 0, 0, 0)", "width": 0 }, "marker": { "color": "hsla(328, 70%, 70%,1)", "line": { "color": "hsla(328, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "star-diamond" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": -0.6, "points": "all", "scalegroup": "yes&male", "showlegend": false, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.99942, 5.99146, 7.67322, 7.09008, 5.61677, 6.646389999999999, 7.02643, 6.4552, 7.32975, 6.95845, 7.06902, 6.04025, 6.907760000000001, 7.91936, 6.745239999999999, 6.30079, 7.068169999999999, 6.07535, 6.7417, 7.71869, 6.882439999999999, 6.47697, 6.77878, 6.907760000000001, 6.93342, 7.06902, 6.57368, 6.829789999999999, 7.557989999999999, 6.892639999999999, 7.0255399999999995, 6.57925, 6.47697, 7.1309, 6.551080000000001, 6.882439999999999, 6.907760000000001, 6.682110000000001, 6.39693, 6.48004, 6.60665, 7.00307, 5.78383, 6.94505, 6.9546399999999995, 7.17012, 7.11477, 6.593039999999999, 6.49979, 6.5439099999999994, 6.39192, 6.51471, 6.30992, 6.30992, 7.116389999999999, 6.46925, 7.554860000000001, 6.90675, 6.85646, 5.94803, 6.90575, 6.90575, 7.408530000000001, 7.0076, 6.88857, 7.35947, 6.39693, 7.041410000000001, 6.66696, 6.30992, 7.313219999999999, 6.787839999999999, 6.90575, 6.802389999999999, 7.00307, 7.074960000000001, 7.5606, 6.16331, 5.94803, 6.43775, 7.282760000000001, 6.39693, 6.813439999999999, 6.694560000000001, 6.29157, 6.23048, 6.16331, 6.88755, 6.95655, 7.56008, 6.28227, 6.30992, 6.05912, 6.602589999999999, 7.47307, 6.2146099999999995, 6.95655, 6.90575, 6.461469999999999, 7.09008, 7.46737, 6.829789999999999, 6.60665, 6.74052, 6.745239999999999, 7.6009, 6.62007, 6.551080000000001, 6.663130000000001, 7.60589, 6.53669, 6.5582, 6.16121, 6.19236, 6.2146099999999995, 7.37776, 6.58617, 6.23832, 6.27476, 6.48311, 6.69084, 6.54965, 6.882439999999999, 6.663130000000001, 5.70378, 6.7226300000000005, 7.20786, 6.802389999999999, 6.79122, 6.62007, 6.42162, 6.12249, 6.90575, 6.28227, 6.206580000000001, 5.99146, 6.682110000000001, 6.49677, 7.408530000000001, 6.10925, 6.317159999999999, 6.2146099999999995, 6.551080000000001, 6.25575, 7.0884100000000005, 6.16331, 6.68461, 5.8999, 7.01392, 7.1107, 6.9363399999999995, 6.90575, 6.1070199999999994, 6.85646, 6.44572, 6.551080000000001, 6.84588, 8.10168, 7.31255, 5.99645, 6.90575, 6.802389999999999, 6.2146099999999995, 6.66696, 6.907760000000001, 6.90575, 6.6592899999999995, 8.047189999999999, 6.62407, 7.0076, 6.30992, 6.17379, 6.55393, 6.24611, 7.78322, 6.60665, 7.12448, 6.507280000000001, 6.461469999999999, 6.8977, 7.82405, 7.75148, 6.62407, 6.2146099999999995, 7.1309, 6.51471, 5.96615, 6.84055, 7.041410000000001, 6.51471, 6.551080000000001, 7.346010000000001, 6.966019999999999, 6.90575, 7.17012, 6.5820300000000005, 7.04752, 6.354369999999999, 6.59578, 7.82405, 6.5467900000000006, 6.551080000000001, 6.39693, 6.88755, 6.39693, 6.39693, 6.65286, 6.36647, 6.622739999999999, 6.90575, 5.7525699999999995, 6.15273, 7.04752, 5.52146, 6.770789999999999, 6.907760000000001, 7.00125, 7.064760000000001, 7.00307, 6.05209, 6.745239999999999, 7.045780000000001, 6.54535, 6.37673, 6.62007, 6.907760000000001, 6.10925, 6.39693, 8.16052, 6.745239999999999, 7.03527, 6.765039999999999, 7.1309, 6.77422, 6.87213, 6.551080000000001, 6.907760000000001, 6.6567300000000005, 6.80017, 7.226210000000001, 6.10925, 6.90575, 6.70073, 7.495539999999999, 8.05516, 6.9256, 7.06987, 6.694560000000001, 6.90575, 6.43775, 6.97261, 7.29709, 7.179310000000001, 7.313219999999999, 6.7226300000000005, 6.82437, 6.715380000000001, 7.173189999999999, 6.62007, 6.7226300000000005, 6.85118, 6.49224, 7.313219999999999, 6.62007, 7.158510000000001, 6.68461, 6.57647, 5.89715, 6.34564, 6.556780000000001, 6.7093, 6.93925, 7.00307, 6.551080000000001, 6.90575, 6.53669, 6.69084, 7.313219999999999, 6.05209, 6.90575, 6.62007, 6.4552, 6.77422, 6.87005, 6.65544, 6.42162, 5.9269300000000005, 6.317159999999999, 6.42972, 6.62007, 6.96508, 6.19236, 6.61607, 5.5606800000000005, 6.57368, 6.2634, 6.715380000000001, 7.408530000000001, 6.17379, 7.333019999999999, 6.37502, 6.317159999999999, 7.04752, 6.68461, 6.98008, 6.912739999999999, 6.86693, 7.3670800000000005, 6.68461, 6.90575, 6.90575, 6.62007, 6.45362, 6.47697, 6.9431199999999995, 6.90575, 6.10925, 6.67203, 6.7334, 7.34278, 6.90575, 6.658010000000001, 6.9256, 6.90575, 6.91075, 6.6592899999999995, 6.6592899999999995, 6.16331, 7.441319999999999, 6.47851, 7.07834, 6.745239999999999, 7.20786, 6.36475, 6.63857, 7.475910000000001, 6.62007, 6.4892, 7.00307, 6.56948, 7.43838, 7.15383, 7.064760000000001, 6.88755, 7.26193, 6.23245, 6.30445, 6.715380000000001, 7.313219999999999, 7.37776, 5.8579300000000005, 6.85646, 6.2441699999999996, 6.90575, 6.907760000000001, 6.272880000000001, 6.66568, 7.481560000000001, 7.04752, 6.61338, 6.40688, 5.8579300000000005, 7.57558, 6.83518, 6.38856, 6.768489999999999, 6.90575, 6.39693, 6.34739, 7.1507, 6.58617, 7.282760000000001, 7.00307, 6.66058, 6.58064, 6.90575, 6.10925, 6.64249, 6.715380000000001, 6.62007, 7.1309, 5.99146, 6.95655, 6.65286, 6.16331, 6.24611, 7.1309, 7.1333, 7.24423, 6.04025, 6.86901, 6.802389999999999, 6.70073, 6.1203, 6.90575, 7.313219999999999, 6.54822, 6.95655, 7.50108, 6.39693, 7.07918, 5.8579300000000005, 5.70378, 6.7369699999999995, 7.745, 6.87213, 6.39693, 6.30628, 6.8773, 6.708080000000001, 6.818919999999999, 7.041410000000001, 6.882439999999999, 6.94986, 6.703189999999999, 6.37502, 7.03615, 7.37776, 5.66988, 6.907760000000001, 6.882439999999999, 6.752269999999999, 6.48158, 6.47697, 6.802389999999999, 6.984719999999999, 5.9269300000000005, 6.49224, 6.385190000000001, 7.1309, 7.663880000000001, 7.07242, 6.907760000000001, 6.43775, 8.05516, 6.807930000000001, 6.907760000000001, 6.403569999999999, 6.035480000000001, 7.24423, 6.05209, 7.00307, 5.99146, 6.33683, 6.07993, 7.488289999999999, 6.51175, 5.7365699999999995, 6.90575, 6.697030000000001, 6.354369999999999, 6.802389999999999, 6.62007, 6.68461, 6.68835, 5.8260000000000005, 6.85646, 6.44572, 6.95655, 7.20786, 6.3716099999999996, 6.8977, 6.47697, 6.802389999999999, 6.84055, 7.676010000000001, 6.85646, 6.43775, 7.20786, 6.89163, 7.0121199999999995, 6.85646, 6.77422, 6.54965, 6.05209, 6.697030000000001, 6.90575, 6.68461, 6.62007, 7.24423, 6.36819, 6.8844899999999996, 6.62007, 6.745239999999999, 6.19236, 6.39693, 6.85646, 6.7334, 5.98896, 6.48004, 6.55393, 6.5903, 7.02643, 7.15305, 6.19236, 6.43615, 6.6871100000000006, 6.42162, 6.06379, 6.93537 ], "y0": "yes&male" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(328, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(328, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "yes&male", "line": { "width": 0 }, "marker": { "color": "hsla(328, 50%, 50%,0.9)", "line": { "color": "hsla(328, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "star-diamond" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "yes&male", "showlegend": false, "side": "positive", "span": [ 6.7266226744512, 6.7556225601586295 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 6.99942, 5.99146, 7.67322, 7.09008, 5.61677, 6.646389999999999, 7.02643, 6.4552, 7.32975, 6.95845, 7.06902, 6.04025, 6.907760000000001, 7.91936, 6.745239999999999, 6.30079, 7.068169999999999, 6.07535, 6.7417, 7.71869, 6.882439999999999, 6.47697, 6.77878, 6.907760000000001, 6.93342, 7.06902, 6.57368, 6.829789999999999, 7.557989999999999, 6.892639999999999, 7.0255399999999995, 6.57925, 6.47697, 7.1309, 6.551080000000001, 6.882439999999999, 6.907760000000001, 6.682110000000001, 6.39693, 6.48004, 6.60665, 7.00307, 5.78383, 6.94505, 6.9546399999999995, 7.17012, 7.11477, 6.593039999999999, 6.49979, 6.5439099999999994, 6.39192, 6.51471, 6.30992, 6.30992, 7.116389999999999, 6.46925, 7.554860000000001, 6.90675, 6.85646, 5.94803, 6.90575, 6.90575, 7.408530000000001, 7.0076, 6.88857, 7.35947, 6.39693, 7.041410000000001, 6.66696, 6.30992, 7.313219999999999, 6.787839999999999, 6.90575, 6.802389999999999, 7.00307, 7.074960000000001, 7.5606, 6.16331, 5.94803, 6.43775, 7.282760000000001, 6.39693, 6.813439999999999, 6.694560000000001, 6.29157, 6.23048, 6.16331, 6.88755, 6.95655, 7.56008, 6.28227, 6.30992, 6.05912, 6.602589999999999, 7.47307, 6.2146099999999995, 6.95655, 6.90575, 6.461469999999999, 7.09008, 7.46737, 6.829789999999999, 6.60665, 6.74052, 6.745239999999999, 7.6009, 6.62007, 6.551080000000001, 6.663130000000001, 7.60589, 6.53669, 6.5582, 6.16121, 6.19236, 6.2146099999999995, 7.37776, 6.58617, 6.23832, 6.27476, 6.48311, 6.69084, 6.54965, 6.882439999999999, 6.663130000000001, 5.70378, 6.7226300000000005, 7.20786, 6.802389999999999, 6.79122, 6.62007, 6.42162, 6.12249, 6.90575, 6.28227, 6.206580000000001, 5.99146, 6.682110000000001, 6.49677, 7.408530000000001, 6.10925, 6.317159999999999, 6.2146099999999995, 6.551080000000001, 6.25575, 7.0884100000000005, 6.16331, 6.68461, 5.8999, 7.01392, 7.1107, 6.9363399999999995, 6.90575, 6.1070199999999994, 6.85646, 6.44572, 6.551080000000001, 6.84588, 8.10168, 7.31255, 5.99645, 6.90575, 6.802389999999999, 6.2146099999999995, 6.66696, 6.907760000000001, 6.90575, 6.6592899999999995, 8.047189999999999, 6.62407, 7.0076, 6.30992, 6.17379, 6.55393, 6.24611, 7.78322, 6.60665, 7.12448, 6.507280000000001, 6.461469999999999, 6.8977, 7.82405, 7.75148, 6.62407, 6.2146099999999995, 7.1309, 6.51471, 5.96615, 6.84055, 7.041410000000001, 6.51471, 6.551080000000001, 7.346010000000001, 6.966019999999999, 6.90575, 7.17012, 6.5820300000000005, 7.04752, 6.354369999999999, 6.59578, 7.82405, 6.5467900000000006, 6.551080000000001, 6.39693, 6.88755, 6.39693, 6.39693, 6.65286, 6.36647, 6.622739999999999, 6.90575, 5.7525699999999995, 6.15273, 7.04752, 5.52146, 6.770789999999999, 6.907760000000001, 7.00125, 7.064760000000001, 7.00307, 6.05209, 6.745239999999999, 7.045780000000001, 6.54535, 6.37673, 6.62007, 6.907760000000001, 6.10925, 6.39693, 8.16052, 6.745239999999999, 7.03527, 6.765039999999999, 7.1309, 6.77422, 6.87213, 6.551080000000001, 6.907760000000001, 6.6567300000000005, 6.80017, 7.226210000000001, 6.10925, 6.90575, 6.70073, 7.495539999999999, 8.05516, 6.9256, 7.06987, 6.694560000000001, 6.90575, 6.43775, 6.97261, 7.29709, 7.179310000000001, 7.313219999999999, 6.7226300000000005, 6.82437, 6.715380000000001, 7.173189999999999, 6.62007, 6.7226300000000005, 6.85118, 6.49224, 7.313219999999999, 6.62007, 7.158510000000001, 6.68461, 6.57647, 5.89715, 6.34564, 6.556780000000001, 6.7093, 6.93925, 7.00307, 6.551080000000001, 6.90575, 6.53669, 6.69084, 7.313219999999999, 6.05209, 6.90575, 6.62007, 6.4552, 6.77422, 6.87005, 6.65544, 6.42162, 5.9269300000000005, 6.317159999999999, 6.42972, 6.62007, 6.96508, 6.19236, 6.61607, 5.5606800000000005, 6.57368, 6.2634, 6.715380000000001, 7.408530000000001, 6.17379, 7.333019999999999, 6.37502, 6.317159999999999, 7.04752, 6.68461, 6.98008, 6.912739999999999, 6.86693, 7.3670800000000005, 6.68461, 6.90575, 6.90575, 6.62007, 6.45362, 6.47697, 6.9431199999999995, 6.90575, 6.10925, 6.67203, 6.7334, 7.34278, 6.90575, 6.658010000000001, 6.9256, 6.90575, 6.91075, 6.6592899999999995, 6.6592899999999995, 6.16331, 7.441319999999999, 6.47851, 7.07834, 6.745239999999999, 7.20786, 6.36475, 6.63857, 7.475910000000001, 6.62007, 6.4892, 7.00307, 6.56948, 7.43838, 7.15383, 7.064760000000001, 6.88755, 7.26193, 6.23245, 6.30445, 6.715380000000001, 7.313219999999999, 7.37776, 5.8579300000000005, 6.85646, 6.2441699999999996, 6.90575, 6.907760000000001, 6.272880000000001, 6.66568, 7.481560000000001, 7.04752, 6.61338, 6.40688, 5.8579300000000005, 7.57558, 6.83518, 6.38856, 6.768489999999999, 6.90575, 6.39693, 6.34739, 7.1507, 6.58617, 7.282760000000001, 7.00307, 6.66058, 6.58064, 6.90575, 6.10925, 6.64249, 6.715380000000001, 6.62007, 7.1309, 5.99146, 6.95655, 6.65286, 6.16331, 6.24611, 7.1309, 7.1333, 7.24423, 6.04025, 6.86901, 6.802389999999999, 6.70073, 6.1203, 6.90575, 7.313219999999999, 6.54822, 6.95655, 7.50108, 6.39693, 7.07918, 5.8579300000000005, 5.70378, 6.7369699999999995, 7.745, 6.87213, 6.39693, 6.30628, 6.8773, 6.708080000000001, 6.818919999999999, 7.041410000000001, 6.882439999999999, 6.94986, 6.703189999999999, 6.37502, 7.03615, 7.37776, 5.66988, 6.907760000000001, 6.882439999999999, 6.752269999999999, 6.48158, 6.47697, 6.802389999999999, 6.984719999999999, 5.9269300000000005, 6.49224, 6.385190000000001, 7.1309, 7.663880000000001, 7.07242, 6.907760000000001, 6.43775, 8.05516, 6.807930000000001, 6.907760000000001, 6.403569999999999, 6.035480000000001, 7.24423, 6.05209, 7.00307, 5.99146, 6.33683, 6.07993, 7.488289999999999, 6.51175, 5.7365699999999995, 6.90575, 6.697030000000001, 6.354369999999999, 6.802389999999999, 6.62007, 6.68461, 6.68835, 5.8260000000000005, 6.85646, 6.44572, 6.95655, 7.20786, 6.3716099999999996, 6.8977, 6.47697, 6.802389999999999, 6.84055, 7.676010000000001, 6.85646, 6.43775, 7.20786, 6.89163, 7.0121199999999995, 6.85646, 6.77422, 6.54965, 6.05209, 6.697030000000001, 6.90575, 6.68461, 6.62007, 7.24423, 6.36819, 6.8844899999999996, 6.62007, 6.745239999999999, 6.19236, 6.39693, 6.85646, 6.7334, 5.98896, 6.48004, 6.55393, 6.5903, 7.02643, 7.15305, 6.19236, 6.43615, 6.6871100000000006, 6.42162, 6.06379, 6.93537, 7.09008, 6.802389999999999, 6.47697, 6.2634, 7.79028, 6.10032, 6.0282800000000005, 7.408530000000001, 6.6174, 6.907760000000001, 6.90575, 5.99146, 6.2441699999999996, 6.00141, 6.79122, 6.9196800000000005, 6.9147300000000005, 6.90575, 6.646389999999999, 6.746410000000001, 6.30992, 6.42972, 6.18826, 6.5467900000000006, 7.522939999999999, 6.7334, 6.07993, 6.907760000000001, 6.90575, 7.04752, 6.66185, 6.47697, 7.23418, 6.54247, 6.753439999999999, 6.51471, 7.034389999999999, 6.65286, 7.262630000000001, 7.20786, 6.90575, 6.30992, 6.984719999999999, 6.30445, 6.05209, 6.34564, 6.95655, 6.49224, 6.62007, 5.82895, 6.39693, 6.06146, 6.43775, 6.03787, 6.3952599999999995, 6.22654, 7.144410000000001, 6.90575, 6.91374, 5.70378, 6.5903, 7.1592899999999995, 6.57786, 6.6783399999999995, 6.72383, 6.41182, 6.53233, 6.907760000000001, 6.7334, 7.236339999999999, 6.20456, 6.10925, 6.715380000000001, 6.72743, 7.084230000000001, 6.97635, 7.20786, 7.00307, 6.35089, 6.59167, 6.461469999999999, 6.984719999999999, 6.53233, 6.646389999999999, 6.39693, 7.459910000000001, 6.19848, 7.0255399999999995, 6.745239999999999, 6.22654, 6.10925, 7.08171, 6.64249, 7.49332, 7.495539999999999, 7.1546199999999995, 7.1309, 6.745239999999999, 6.18415, 5.82895, 6.10925, 6.58617, 6.48158, 6.20456, 7.313219999999999, 6.94022, 6.90575, 6.41836, 6.10925, 7.48717, 7.0193, 6.983789999999999, 6.633319999999999, 6.29157, 7.49109, 6.91672, 6.90575, 6.715380000000001, 6.47697, 7.37212, 6.646389999999999, 7.0184, 6.84055, 7.24423, 7.09008, 6.52942, 7.4553, 7.00307, 6.37502, 7.24423, 6.48158, 6.68461, 6.10925, 6.90575, 6.90575, 7.75577, 6.82437, 6.18415, 6.43775, 6.90575, 7.1107, 6.44572, 6.42162, 6.769639999999999, 6.93245, 6.818919999999999, 6.551080000000001, 6.58617, 6.96508, 6.44572, 6.7093, 6.28972, 7.1082399999999994, 7.135689999999999, 6.49072, 7.251339999999999, 8.51719, 6.807930000000001, 7.14756, 7.33368, 6.77422, 6.60394, 6.68461, 7.1309, 5.99146, 7.201169999999999, 6.10925, 6.68461, 6.39693, 6.927560000000001, 6.85751, 6.95655, 6.08677, 7.24423, 7.1309, 6.17587, 6.30992, 6.36303, 6.77422, 6.2860000000000005, 6.828710000000001, 6.47697, 6.72743, 6.55251, 6.62407, 5.9814099999999994, 6.76273, 7.06902, 5.9269300000000005, 6.80128, 7.313219999999999, 6.966019999999999, 6.6592899999999995, 6.39693, 6.57786, 6.65286, 6.293419999999999, 5.87493, 6.79122, 6.987489999999999, 6.30992, 6.55536, 7.09008, 6.2146099999999995, 7.04752, 6.90575, 6.10925, 6.6783399999999995, 6.39693, 7.259119999999999, 7.43838, 6.47697, 7.1309, 6.77422, 6.2634, 6.739339999999999, 6.47697, 6.90575, 7.279319999999999, 6.815639999999999, 6.65028, 6.27099, 7.17012, 6.354369999999999, 6.29157, 6.802389999999999, 6.602589999999999, 6.47697, 6.58755, 6.77422, 6.907760000000001, 7.09589, 6.882439999999999, 5.45959, 6.05209, 7.67322, 5.8579300000000005, 6.2146099999999995, 7.2957399999999994, 5.84354, 6.802389999999999, 6.58064, 6.2634, 7.00307, 6.90575, 7.21891, 7.503839999999999, 6.45677, 6.950810000000001, 5.97126, 6.23048, 6.15273, 7.57558, 6.96035, 6.3716099999999996, 6.2146099999999995, 6.7334, 6.86066, 6.378430000000001, 6.48004, 7.00307, 6.8200199999999995, 6.47697, 6.90575, 7.39388, 7.4787300000000005, 6.2146099999999995, 6.802389999999999, 6.43775, 7.24065, 6.13773, 6.3952599999999995, 7.1025, 7.04752, 7.09008, 6.77992, 6.9256, 6.035480000000001, 7.22766, 7.475339999999999, 5.72031, 6.272880000000001, 6.01616, 6.27099, 7.91936, 6.85646, 6.354369999999999, 6.2634, 6.51471, 6.92166, 6.253830000000001, 6.745239999999999, 6.30992, 7.3651800000000005, 6.24998, 6.893660000000001, 6.53669, 6.43615, 7.04752, 6.30992, 6.39693, 6.1334, 6.765039999999999, 6.85646, 6.892639999999999, 6.95655, 5.99146, 6.43775, 6.90575, 6.81124, 6.966019999999999, 6.8865300000000005, 6.62007, 7.334980000000001, 6.72743, 6.93245, 7.27031, 7.03878, 7.0255399999999995, 6.83518, 6.77992, 6.68461, 7.696210000000001, 6.53669, 6.52942, 6.126869999999999, 6.54965, 6.715380000000001, 7.31122, 5.8693, 6.90575, 6.0282800000000005, 6.30992, 6.23245, 6.31536, 7.486610000000001, 6.52942, 6.14204, 6.88755, 6.62007, 6.34564, 6.44413, 5.99146, 6.93245, 7.37776, 6.907760000000001, 7.18917, 6.7093, 6.75926, 6.3315, 6.5439099999999994, 6.1717, 7.9459100000000005, 6.77422, 7.424760000000001, 5.70378, 6.43775, 6.90575, 7.6009, 6.90575, 7.46737, 6.694560000000001, 8.16052, 6.984719999999999, 6.802389999999999, 5.99146, 6.802389999999999, 7.32647, 7.1309, 5.96101, 6.62007, 6.84055, 6.58617, 7.1309, 7.00307, 7.78322, 6.62007, 5.7525699999999995, 6.62407, 6.795710000000001, 7.212289999999999, 6.05209, 6.38856, 6.93925, 6.47697, 6.8773, 6.354369999999999, 7.9724699999999995, 6.703189999999999, 6.47697, 6.50429, 6.58617, 6.51471, 6.06611, 6.68461, 6.65544, 7.331060000000001, 6.64118, 6.47697, 7.475910000000001, 6.72743, 7.20786, 6.81124, 7.0201899999999995, 7.279319999999999, 6.80461, 5.99645, 7.10906, 6.40523, 6.77422, 7.01571, 6.54822, 6.14204, 6.47697, 7.24423, 5.93225, 7.46737, 6.69084, 6.47697, 6.85646, 6.88755, 7.24423, 6.95655, 6.67077, 7.313219999999999, 6.98008, 6.75577, 6.566669999999999, 7.09008, 6.697030000000001, 6.79794, 6.2634, 6.61874, 6.64118, 7.1309, 6.98101, 6.90575, 5.90263, 6.17794, 6.77422, 6.96035, 6.6515699999999995, 6.35957, 6.829789999999999, 6.66568, 7.09008, 6.10925, 6.85646, 6.90575, 6.95655, 6.126869999999999, 7.1309, 6.4552, 6.58617, 7.23778, 6.66568, 6.21261, 6.57925, 6.802389999999999, 6.88755, 7.08171, 6.6567300000000005, 7.696210000000001, 6.68461, 6.43775, 6.802389999999999, 6.6592899999999995, 6.48311, 6.408530000000001, 6.84055, 7.17778, 6.2634, 6.4892, 6.95177, 6.785589999999999, 7.033510000000001, 6.57647, 6.23637, 6.530880000000001, 6.43775, 6.90575, 6.30992, 6.85646, 6.79122, 6.30992, 6.62007, 5.76832, 6.81014, 6.551080000000001, 6.56526, 6.551080000000001, 7.09008, 6.9613, 6.7901, 6.95655, 6.65286, 5.9814099999999994, 6.28227, 7.46737, 7.18007, 7.46737, 6.90575, 6.52209, 7.37776, 6.90575, 5.99146, 7.46737, 5.99146, 6.18826, 6.59987, 6.68461, 7.6009, 7.14913, 7.27031, 6.317159999999999, 6.72503, 5.99146, 6.62007, 6.6871100000000006, 7.17012, 6.802389999999999, 5.93754, 6.995769999999999, 6.802389999999999, 6.52356, 6.55251, 6.56526, 6.72383, 7.09008, 6.68461, 6.52209, 7.313219999999999, 6.94698, 6.561030000000001, 6.907760000000001, 7.71869, 5.96615, 6.41673, 6.29157, 7.00307, 6.802389999999999, 6.90375, 6.1944099999999995, 7.09008, 6.90575, 6.47697, 7.26193, 6.60665, 6.424869999999999, 7.37776, 6.13773, 6.907760000000001, 6.858569999999999, 6.745239999999999, 7.495539999999999, 7.1546199999999995, 6.2804, 6.6592899999999995, 6.77422, 6.893660000000001, 6.86693, 7.408530000000001, 6.72743, 6.42972, 6.633319999999999, 7.0579, 6.68461, 7.185389999999999, 7.26543, 7.05099, 6.10925, 6.60123, 7.233460000000001, 6.90575, 6.77194, 6.6567300000000005, 6.3243599999999995, 6.55393, 6.9613, 6.90575, 6.907760000000001, 6.90975, 7.64969, 7.1309, 6.745239999999999, 5.99146, 6.354369999999999, 5.4161, 6.55536, 6.02102, 6.7334, 6.47697, 6.47697, 6.53669, 6.95655, 6.551080000000001, 7.6009, 6.90575, 7.17242, 6.3421199999999995, 6.9196800000000005, 6.51471, 6.85646, 6.551080000000001, 6.35611, 6.90575, 6.34914, 7.696210000000001, 7.17012, 6.802389999999999, 6.253830000000001, 6.90575, 6.48464, 6.49224, 6.82763, 6.90575, 7.014810000000001, 6.2634, 7.04752, 6.90575, 7.20786, 7.02997, 7.803839999999999, 6.31355, 6.89467, 6.829789999999999, 7.17012, 7.54961, 7.28207, 6.69084, 7.1929300000000005, 6.33328, 5.84354, 6.85646, 6.912739999999999, 6.80017, 6.97635, 6.2653, 7.1309, 7.17012, 7.0884100000000005, 7.16627, 6.19644, 6.39693, 5.9814099999999994, 6.90575, 6.90575, 6.6958, 5.01728, 7.279319999999999, 7.136480000000001, 6.608, 6.68461, 7.9831, 6.9828600000000005, 6.30992, 6.2146099999999995, 7.09506, 6.44572, 6.90575, 6.90575, 7.08339, 5.96615, 6.9622399999999995, 7.11233, 6.912739999999999, 6.68461, 6.8254600000000005, 7.346010000000001, 6.68085, 7.24423, 6.62007, 6.1070199999999994, 6.33328, 6.15698, 6.30262, 6.253830000000001, 7.30317, 6.829789999999999, 6.56808, 6.36303, 7.20786, 6.752269999999999, 6.95655, 6.02102, 6.633319999999999, 6.2634, 7.183110000000001, 6.907760000000001, 6.6174, 7.43838, 6.45047, 6.9707300000000005, 6.3952599999999995, 7.09008, 6.49979, 6.94986, 7.06902, 6.68461, 7.22766, 6.68461, 7.1309, 6.975410000000001, 6.2672, 6.50279, 6.551080000000001, 6.59987, 6.7334, 6.2146099999999995, 6.44572, 7.408530000000001, 7.09008, 6.614730000000001, 6.17379, 7.03615, 6.05209, 6.83518, 7.09008, 6.63857, 6.17794, 6.551080000000001, 6.30992, 7.07834, 6.39693, 6.57228, 6.938280000000001, 6.715380000000001, 6.7511, 6.715380000000001, 6.58617, 5.59842, 6.3935900000000006, 7.26193, 6.49072, 6.829789999999999, 6.745239999999999, 6.721430000000001, 6.59715, 6.00389, 6.9828600000000005, 6.62007, 6.85646, 7.04752, 6.23441, 6.551080000000001, 6.14633, 6.563860000000001, 6.73102, 6.2634, 6.3243599999999995, 6.721430000000001, 6.6796, 7.062189999999999, 6.10925, 7.313219999999999, 6.34564, 6.561030000000001, 6.17379, 7.06987, 6.87626, 6.505780000000001, 6.745239999999999, 6.966019999999999, 6.4488900000000005, 7.1309, 6.68461, 6.575080000000001, 6.40192, 6.70073, 6.56808, 6.7334, 6.30992, 7.0775, 6.6796, 6.8384100000000005, 7.03615, 6.85751, 6.745239999999999, 7.313219999999999, 6.86693, 7.08171, 6.85646, 6.47697, 6.47697, 6.28972, 7.46737, 7.2724, 6.61874, 6.30079, 7.0255399999999995, 6.27099, 6.90575, 6.34564, 6.9828600000000005, 7.450080000000001, 6.224559999999999, 6.551080000000001, 6.23441, 7.1309, 6.52209, 7.49332, 6.39192, 6.739339999999999, 7.4832399999999994, 6.16331, 6.68461, 6.90575, 6.90575, 7.1309, 6.86171, 6.715380000000001, 6.551080000000001, 6.33683, 6.9187, 7.0579, 6.35611, 7.02376, 5.5797300000000005, 6.90575, 6.82655, 6.90575, 5.9269300000000005, 7.42833, 5.87212, 6.463030000000001, 7.52833, 6.86797, 6.60665, 6.90575, 6.4677, 7.3651800000000005, 6.748760000000001, 6.77992, 6.975410000000001, 7.43838, 7.82405, 6.5439099999999994, 6.42162, 6.8844899999999996, 7.16085, 6.52209, 6.04025, 5.52146, 6.90575, 7.00307, 6.907760000000001, 6.817830000000001, 7.279319999999999, 6.907760000000001, 7.54961, 7.323169999999999, 6.90575, 6.41017, 6.90575, 6.787839999999999, 6.62007, 7.0967199999999995, 5.9269300000000005, 6.55393, 6.17379, 7.00307, 7.31122, 7.31122, 6.31355, 6.44572, 6.59578, 6.47697, 6.69332, 6.7511, 6.77422, 7.09008, 5.8579300000000005, 7.183110000000001, 7.728860000000001, 6.54965, 7.04752, 7.25488, 6.9256, 6.907760000000001, 5.65249, 7.041410000000001, 6.4599, 6.96035, 7.1333, 6.99942, 6.38012, 7.200419999999999, 7.18007, 7.1309, 6.461469999999999, 6.85646, 7.17012, 7.03527, 6.19848, 6.62007, 7.313219999999999, 6.907760000000001, 6.90575, 7.1452, 5.82895, 6.33683, 6.04025, 6.2146099999999995, 7.8935699999999995, 6.34564, 6.64249, 6.8977, 6.3699, 6.6567300000000005, 6.813439999999999, 6.53669, 6.90575, 6.47697, 6.05209, 7.21524, 6.551080000000001, 6.66568, 6.57925, 6.2146099999999995, 6.8426800000000005, 6.907760000000001, 6.90575, 7.106610000000001, 6.424869999999999, 6.65415, 6.86693, 6.745239999999999, 6.88346, 6.53669, 6.3207699999999996, 7.696210000000001, 7.64779, 7.313219999999999, 6.95655, 6.715380000000001, 6.44254, 6.61338, 6.23245, 6.95655, 6.768489999999999, 7.3981699999999995, 6.68461, 7.12287, 6.813439999999999, 6.752269999999999, 6.551080000000001, 6.7334, 6.318969999999999, 6.79122, 5.95324, 6.745239999999999, 7.1309, 6.54103, 7.06048, 6.24222, 6.68461, 6.05209, 6.78672, 7.09008, 7.1309, 6.47697, 7.1025, 5.9814099999999994, 7.24423, 6.44254, 7.451239999999999, 7.198180000000001, 7.27101, 7.245660000000001, 7.279319999999999, 6.85646, 7.279319999999999, 7.67322, 6.76273, 6.82437, 6.47697, 6.885510000000001, 7.07918, 7.279319999999999, 7.1309, 6.966019999999999, 6.73102, 6.633319999999999, 7.00307, 7.6009, 6.907760000000001, 6.32615, 6.508769999999999, 6.551080000000001, 7.0884100000000005, 6.829789999999999, 7.31986, 6.21661, 7.11802, 6.77422, 7.26193, 6.90575, 7.00307, 5.99146, 7.46737, 6.57786, 6.3081, 6.90575, 6.311730000000001, 6.39693, 6.95655, 6.62007, 6.3952599999999995, 6.48311, 6.39693, 6.90575, 6.60665, 6.90575, 6.318969999999999, 6.802389999999999, 6.70441, 6.51471, 6.77992, 6.68461, 6.29157, 6.40523, 6.18826, 7.24423, 6.83518, 7.09008, 7.84502, 7.1624, 6.813439999999999, 6.907760000000001, 6.68461, 6.14633, 7.17012, 6.53814, 6.882439999999999, 6.36647, 6.47697, 7.54697, 6.60665, 6.68461, 7.408530000000001, 7.2724, 6.46614, 6.90575, 5.7462, 6.36303, 7.04752, 6.551080000000001, 6.58064, 6.17379, 6.83195, 7.20786, 6.62007, 6.95655, 6.90575, 6.34564, 7.09008, 7.014810000000001, 6.73815, 6.65028, 7.03878, 6.10032, 7.266830000000001, 6.95655, 7.20786, 6.602589999999999, 6.551080000000001, 6.87626, 5.16479, 7.54961, 6.551080000000001, 6.49224, 6.58893, 6.60665, 6.907760000000001, 7.64969, 6.9177100000000005, 6.18415, 6.68461, 7.43838, 6.66441, 6.551080000000001, 6.41182, 6.43775, 6.43775, 6.4599, 7.00307, 5.99146, 6.852239999999999, 6.5439099999999994, 6.6515699999999995, 7.522939999999999, 6.16331, 6.551080000000001, 6.907760000000001, 7.04752, 6.44572, 6.3243599999999995, 6.41346, 6.551080000000001, 6.802389999999999, 6.62007, 6.5439099999999994, 6.57925, 6.38012, 6.4151, 6.52209, 6.29157, 6.2146099999999995, 6.97167, 6.75926, 6.66823, 7.37776, 7.1309, 6.90575, 6.10925, 7.408530000000001, 6.39693, 6.04025, 7.0396600000000005, 7.09589, 7.10003, 6.73102, 6.87523, 6.90575, 7.20786, 7.173960000000001, 6.90575, 6.47389, 6.99026, 7.0884100000000005, 6.206580000000001, 6.56526, 6.44572, 6.551080000000001, 6.53379, 6.90575, 6.46614, 6.61338, 6.90575, 6.85646, 6.47389, 6.10925, 6.99118, 6.2441699999999996, 7.1592899999999995, 6.90575, 6.59987, 7.01571, 6.42162, 6.716589999999999, 6.85646, 7.46737, 6.58617, 6.95655, 6.29157, 6.907760000000001, 6.46459, 6.62007, 6.95177, 6.58617, 6.50129, 6.2952699999999995, 6.85646, 6.15698, 6.90575, 7.6009, 7.00307, 6.17379, 6.15273, 6.62007, 7.346010000000001, 6.90575, 6.68461, 6.50429, 7.0942300000000005, 5.78383, 6.54535, 6.3716099999999996, 7.86327, 6.62007, 7.09008, 6.703189999999999, 6.53233, 6.58617, 7.46737, 6.39693, 6.38012, 6.802389999999999, 6.43935, 7.044910000000001, 6.42162, 6.90575, 6.802389999999999, 6.44413, 7.127689999999999, 6.45677, 6.40192, 6.55393, 7.06902, 6.59987, 6.715380000000001, 6.715380000000001, 6.39693, 6.57786, 6.68461, 7.00307, 6.42972, 6.85435, 6.937310000000001, 6.2106, 6.708080000000001, 6.0845, 6.907760000000001, 6.16331, 6.2441699999999996, 6.74406, 6.85646, 6.73221, 5.72031, 7.54961, 6.37673, 6.90575, 6.62007, 6.768489999999999, 6.63595, 5.82895, 6.90575, 6.75577, 6.77194, 6.77422, 5.8999, 6.2146099999999995, 6.2146099999999995, 6.62007, 6.9489, 7.354360000000001, 7.279319999999999, 5.8861, 6.6592899999999995, 7.06305, 6.61338, 7.00307, 6.49224, 6.84588, 6.35611, 6.35611, 6.8977, 7.20786, 6.90575, 7.1309, 7.393260000000001, 6.95655, 6.834110000000001, 6.07993, 7.10988, 6.802389999999999, 6.224559999999999, 6.57925, 6.927560000000001, 6.90575, 7.09008, 7.1309, 6.90575, 6.907760000000001, 6.16542, 6.62007, 7.6009, 6.95655, 6.90575, 6.90575, 6.796819999999999, 6.66568, 6.907760000000001, 6.8533, 6.813439999999999, 7.196689999999999, 6.43615, 6.9147300000000005, 6.77194, 6.90575, 6.90575, 6.47697, 7.0255399999999995, 7.522939999999999, 6.62007, 6.354369999999999, 7.1546199999999995, 6.90575, 6.551080000000001, 6.753439999999999, 6.77422, 7.313219999999999, 6.967910000000001, 6.816739999999999, 7.6009, 6.745239999999999, 7.37588, 6.86485, 6.41346, 6.7093, 6.551080000000001, 6.22654, 7.24423, 6.06146, 6.16331, 7.05359, 6.86171, 6.58617, 7.1309, 6.77422, 7.93737, 6.39693, 6.58617, 7.67322, 6.551080000000001, 6.2146099999999995, 6.77422, 6.99485, 6.45047, 6.66185, 6.94119, 7.21891, 7.57558, 7.495539999999999, 6.10925, 6.59715, 6.03787, 6.556780000000001, 6.354369999999999, 7.6009, 6.83303, 6.551080000000001, 7.279319999999999, 6.354369999999999, 7.925160000000001, 6.77422, 7.183110000000001, 6.1136800000000004, 6.77992, 6.62007, 7.00307, 7.86327, 6.70073, 7.1309, 6.32794, 6.16121, 5.6801699999999995, 6.65286, 6.802389999999999, 6.715380000000001, 6.95655, 6.78333, 6.90575, 6.67582, 6.47697, 6.907760000000001, 6.90575, 6.53233, 6.882439999999999, 7.0255399999999995, 6.23048, 6.715380000000001, 7.872839999999999, 6.49072, 6.90575, 6.4892, 6.63726, 6.3613, 6.79122, 6.53233, 6.05209, 6.697030000000001, 6.8742, 6.08677, 6.6280399999999995, 6.907760000000001, 6.05209, 5.70378, 7.02997, 6.715380000000001, 6.2146099999999995, 6.90575, 7.313219999999999, 6.3699, 6.07074, 6.54822, 6.62007, 6.59987, 6.7226300000000005, 6.51026, 6.907760000000001, 6.50429, 6.47697, 6.58617, 6.77422, 6.8977, 5.9135, 6.17379, 8.047189999999999, 6.93537, 6.2146099999999995, 6.507280000000001, 7.46737, 5.82895, 7.034389999999999, 6.7569300000000005, 6.95655, 6.17794, 6.68461, 7.495539999999999, 6.62007, 6.88755, 6.45205, 6.802389999999999, 6.32794, 6.68461, 8.03916, 6.829789999999999, 6.6745600000000005, 6.714169999999999, 6.43775, 7.00307, 6.43455, 6.90575, 7.346660000000001, 7.6009, 7.10988, 7.24423, 6.7569300000000005, 6.48004, 6.889589999999999, 7.313219999999999, 6.9256, 6.59167, 6.57786, 6.53669, 6.39693, 6.33328, 6.33328, 7.313219999999999, 6.551080000000001, 7.408530000000001, 7.3908, 6.90575, 6.9256, 6.95655, 6.13123, 6.551080000000001, 7.06561, 6.57925, 6.90575, 6.73102, 7.09008, 6.566669999999999, 6.43775, 6.62007, 6.424869999999999, 6.646389999999999, 6.2146099999999995, 6.802389999999999, 6.90575, 6.9613, 6.78672, 6.65286, 7.24423, 7.09008, 6.602589999999999, 6.42162, 7.0422899999999995, 7.034389999999999, 6.59987, 6.44572, 6.20456, 6.57925, 6.38012, 6.16331, 6.818919999999999, 6.551080000000001, 6.53669, 6.95655, 5.76832, 7.2100800000000005, 6.48311, 6.507280000000001, 6.45362, 6.765039999999999, 6.2634, 6.2691, 7.18917, 6.2146099999999995, 6.802389999999999, 6.50129, 6.2634, 7.38647, 6.96885, 6.10925, 7.196689999999999, 6.3403599999999996, 6.818919999999999, 6.72623, 6.90575, 6.7569300000000005, 6.62936, 7.09008, 6.62007, 5.9839400000000005, 6.95655, 7.49332, 6.62007, 6.62007, 6.753439999999999, 6.77422, 6.2653, 7.495539999999999, 6.7334, 6.95655, 6.56526, 6.88755, 7.47307, 6.47697, 6.90575, 6.90575, 7.909860000000001, 6.69084, 6.3716099999999996, 6.52209, 7.106610000000001, 6.40523, 6.69084, 5.627619999999999, 6.6567300000000005, 6.68461, 6.697030000000001, 6.22654, 7.740660000000001, 6.907760000000001, 6.43775, 6.43775, 6.813439999999999, 5.76832, 6.9256, 7.64969, 6.47697, 6.10925, 7.1309, 5.89715, 6.907760000000001, 6.745239999999999, 6.43775, 6.85646, 6.77422, 6.768489999999999, 7.029089999999999, 6.62007, 7.06133, 7.24423, 6.95177, 7.54961, 6.354369999999999, 6.87626, 6.318969999999999, 6.570880000000001, 7.61332, 7.09008, 6.7511, 6.551080000000001, 7.034389999999999, 6.49072, 6.30992, 6.55393, 6.72743, 6.05209, 7.0967199999999995, 6.90575, 6.551080000000001, 6.907760000000001, 6.785589999999999, 6.39693, 6.05209, 6.90575, 6.697030000000001, 6.814539999999999, 6.639880000000001, 6.62007, 7.24423, 6.77194, 6.551080000000001, 6.802389999999999, 5.8999, 6.57228, 7.062189999999999, 6.47697, 6.2441699999999996, 6.829789999999999, 6.95655, 6.907760000000001, 6.38012, 7.293019999999999, 6.91175, 6.45834, 6.556780000000001, 6.5582, 6.91175, 6.45362, 7.1309, 6.8773, 6.955589999999999, 7.80588, 6.9613, 5.4161, 6.907760000000001, 6.90575, 7.18992, 6.90575, 6.385190000000001, 7.31122, 6.6107, 6.807930000000001, 6.79794, 6.1717, 6.16331, 6.6592899999999995, 7.0483899999999995, 6.598510000000001, 6.09131, 7.106610000000001, 6.90575, 7.66153, 7.22548, 6.48768, 6.87213, 7.17012, 6.23245, 6.39693, 7.35244, 7.183110000000001, 6.56948, 8.00637, 7.05272, 6.33328, 6.90575, 6.802389999999999, 6.30992, 6.551080000000001, 6.10925, 6.77422, 6.30992, 6.49979, 6.802389999999999, 7.05704, 7.16858, 6.802389999999999, 6.58617, 6.551080000000001, 7.20564, 7.1507, 6.852239999999999, 7.6009, 6.70564, 5.7525699999999995, 6.90575, 6.11147, 6.95655, 6.84375, 6.95655, 6.8977, 7.34923, 6.93245, 6.34564, 7.03878, 7.400010000000001, 5.8579300000000005, 7.37588, 6.83195, 7.00307, 6.84162, 6.354369999999999, 6.93342, 6.608, 6.85646, 6.61607, 6.056780000000001, 6.90575, 6.697030000000001, 6.5395900000000005, 6.6120399999999995, 6.63726, 7.1309, 6.739339999999999, 7.86327, 6.55393, 6.47697, 6.7511, 6.907760000000001, 6.05912, 6.54535, 6.551080000000001, 7.00307, 6.51471, 6.57925, 6.66823, 7.1309, 6.551080000000001, 6.44572, 7.00307, 6.253830000000001, 5.99146, 7.2724, 6.907760000000001, 6.90575, 6.3315, 6.3699, 6.39693, 7.82405, 6.95655, 6.09582, 6.07535, 6.90575, 6.8426800000000005, 7.0518600000000005, 6.993930000000001, 6.907760000000001, 6.79122, 6.7511, 6.2146099999999995, 6.78897, 6.67203, 7.259119999999999, 7.6811, 6.745239999999999, 7.27031, 6.721430000000001, 6.90575, 6.563860000000001, 6.99485, 7.37776, 7.06048, 6.30992, 6.84375, 7.0282, 6.66696, 6.90575, 6.47235, 6.56244, 8.0229, 6.90575, 6.6592899999999995, 6.80351, 6.92658, 6.4892, 6.28227, 7.06902, 6.08677, 7.1309, 5.68698, 6.33683, 6.984719999999999, 6.753439999999999, 6.354369999999999, 6.52209, 6.52209, 7.362010000000001, 6.8200199999999995, 6.73102, 6.39693, 6.8773, 6.507280000000001, 6.81014, 6.802389999999999, 6.49072, 7.46737, 6.745239999999999, 6.11147, 6.2634, 7.181589999999999, 6.551080000000001, 7.05618, 5.86079, 6.51619, 6.56948, 6.937310000000001, 6.9256, 6.90575, 6.10925, 6.39693, 7.09008, 6.82437, 6.753439999999999, 6.966019999999999, 6.802389999999999, 7.239210000000001, 6.5582, 6.907760000000001, 6.98008, 6.62407, 5.70378, 6.551080000000001, 6.41673, 7.313219999999999, 6.62007, 6.84588, 6.42162, 6.68461, 6.715380000000001, 6.85646, 6.57786, 5.8579300000000005, 6.2146099999999995, 7.313219999999999, 7.37776, 6.30992, 7.1309, 6.69084, 6.70564, 5.7462, 6.16752, 7.279319999999999, 6.73102, 6.53669, 6.24222, 7.03527, 7.04752, 6.507280000000001, 6.93049, 6.59715, 7.09008, 6.45047, 6.33328, 6.68461, 6.62007, 6.90575, 7.04752, 6.6346300000000005, 6.59167, 6.41836, 7.2724, 6.56526, 7.91936, 6.54103, 6.90575, 7.57558, 6.20456, 6.802389999999999, 7.484369999999999, 6.90575, 6.51471, 5.7462, 6.39693, 6.94698, 7.084230000000001, 6.96885, 6.907760000000001, 7.00307, 7.293019999999999, 7.173189999999999, 6.77422, 6.815639999999999, 6.43294, 6.813439999999999, 6.90575, 6.88857, 6.90575, 7.09008, 6.90575, 7.226210000000001, 7.279319999999999, 6.05912, 6.68461, 6.6592899999999995, 7.91936, 6.507280000000001, 7.00307, 6.47697, 6.551080000000001, 6.90575, 6.2146099999999995, 6.907760000000001, 6.715380000000001, 6.96885, 6.68461, 6.57368, 6.745239999999999, 6.53669, 5.76832, 6.2146099999999995, 6.8426800000000005, 7.520230000000001, 5.5797300000000005, 6.51323, 7.1082399999999994, 6.5582, 7.17012, 6.768489999999999, 6.39693, 7.393260000000001, 6.6958, 6.95177, 6.2146099999999995, 6.5582, 6.9613, 6.4892, 7.676010000000001, 6.715380000000001, 6.907760000000001, 6.3935900000000006, 7.54961, 6.86171, 5.79606, 6.83087, 6.6783399999999995, 6.54535, 6.593039999999999, 6.77422, 6.44572, 7.04752, 7.37776, 7.17012, 6.8426800000000005, 7.00307, 6.126869999999999, 6.50129, 6.8773, 6.56526, 6.354369999999999, 6.96885, 6.575080000000001, 6.62007, 6.42811, 6.752269999999999, 6.90575, 6.78672, 8.12089, 6.829789999999999, 7.00307, 6.2146099999999995, 6.1944099999999995, 7.740660000000001, 6.907760000000001, 6.2146099999999995, 6.96979, 6.68461, 7.14283, 6.139880000000001, 7.1293, 6.89467, 5.43808, 7.183110000000001, 6.5467900000000006, 6.34388, 6.39024, 7.0255399999999995, 6.424869999999999, 6.68461, 6.49979, 7.37776, 6.7901, 6.17379, 6.4488900000000005, 6.614730000000001, 6.60665, 7.09008, 6.51323, 6.93245, 6.6592899999999995, 6.30992, 7.37776, 6.09807, 6.8977, 6.35784, 6.37502, 6.57925, 7.7021, 7.46737, 7.6009, 7.36455, 6.59715, 6.639880000000001, 6.36303, 5.82895, 6.59715, 6.62007, 6.551080000000001, 7.09008, 6.78333, 6.563860000000001, 7.0076, 6.880380000000001, 6.745239999999999, 6.82437, 6.4677, 7.127689999999999, 7.1309, 6.62007, 7.82084, 7.288930000000001, 6.39693, 6.68461, 7.10988, 6.563860000000001, 6.354369999999999, 6.7546, 7.196689999999999, 5.99146, 6.74052, 6.67203, 6.86485, 7.1309, 7.6009, 6.6107, 7.24423, 6.9256, 7.11314, 6.86693, 6.58617, 6.85646, 5.70378, 6.2146099999999995, 6.92363, 6.84588, 6.86171, 6.813439999999999, 6.50279, 5.7589, 6.7417, 7.18917, 6.2146099999999995, 6.93245, 6.78897, 6.74759, 7.00307, 6.3935900000000006, 7.09008, 7.84385, 6.802389999999999, 6.57647, 6.78672, 6.39693, 6.9707300000000005, 8.3082, 7.1309, 7.17012, 6.593039999999999, 6.90575, 6.62007, 6.86693, 6.259580000000001, 6.41999, 5.52146, 6.907760000000001, 7.43838, 6.64509, 7.09008, 6.39693, 7.0255399999999995, 7.903969999999999, 6.745239999999999, 6.80461, 7.037030000000001, 7.04752, 6.47697, 6.65286, 6.76388, 6.90575, 6.87626, 6.90575, 7.1507, 7.07834, 7.21082, 6.52942, 6.701960000000001, 6.8426800000000005, 6.3207699999999996, 6.24611, 6.57786, 6.18826, 6.975410000000001, 7.16085, 6.30992, 6.83303, 7.61874, 6.48158, 6.44095, 6.99485, 6.907760000000001, 6.8384100000000005, 6.79122, 6.551080000000001, 6.6695, 7.279319999999999, 6.57925, 6.813439999999999, 6.30992, 6.68461, 6.47389, 6.802389999999999, 6.785589999999999, 7.313219999999999, 6.551080000000001, 7.29097, 5.8861, 6.98008, 6.802389999999999, 7.20786, 6.802389999999999, 6.983789999999999, 6.75926, 6.68461, 6.55962, 6.8977, 6.05912, 6.90575, 7.4570300000000005, 7.1309, 6.566669999999999, 6.829789999999999, 6.85646, 6.643789999999999, 6.77422, 7.90101, 6.32794, 6.25767, 7.81883, 6.966019999999999, 6.33328, 6.77422, 6.8384100000000005, 6.62007, 6.813439999999999, 6.551080000000001, 6.920669999999999, 7.195189999999999, 6.62007, 6.3315, 6.69332, 6.745239999999999, 6.90575, 7.0396600000000005, 6.90575, 6.07535, 6.30992, 6.96885, 6.47697, 6.39693, 7.24423, 7.12367, 7.17012, 6.18415, 6.68461, 6.44413, 6.4677, 6.47697, 6.907760000000001, 6.4552, 7.1546199999999995, 7.37776, 7.18917, 6.10925, 6.5903, 7.136480000000001, 5.95584, 7.03878, 6.461469999999999, 6.697030000000001, 5.9839400000000005, 6.66568, 6.2146099999999995, 6.56526, 6.51471, 5.61677, 6.49375, 7.06048, 6.715380000000001, 6.10925, 6.95655, 7.1309, 6.95655, 6.90575, 6.76273, 6.311730000000001, 6.29157, 6.86693, 6.68461, 6.90575, 6.95655, 7.17012, 7.0255399999999995, 6.86171, 7.495539999999999, 6.49224, 6.90575, 6.8865300000000005, 7.57353, 6.602589999999999, 6.30992, 6.23048, 6.5467900000000006, 6.530880000000001, 6.802389999999999, 7.6009, 6.46459, 6.834110000000001, 7.313219999999999, 6.802389999999999, 6.66441, 7.251339999999999, 5.87774, 7.43838, 6.35957, 6.43775, 6.5820300000000005, 6.768489999999999, 7.17012, 5.6733199999999995, 6.90575, 7.281389999999999, 7.17702, 6.90575, 6.95845, 6.44572, 6.583410000000001, 6.91672, 6.90575, 8.229510000000001, 7.027310000000001, 6.551080000000001, 7.136480000000001, 6.71174, 6.74288, 7.0934, 7.200419999999999, 6.83087, 7.37776, 6.79122, 6.67203, 6.55393, 6.39693, 7.46737, 6.802389999999999, 7.165489999999999, 6.62007, 6.90575, 7.0255399999999995, 7.70661, 6.47389, 6.35957, 6.07535, 6.907760000000001, 7.20786, 6.43775, 6.556780000000001, 6.966019999999999, 6.95273, 6.3716099999999996, 6.43133, 6.907760000000001, 6.68461, 6.64898, 6.28972, 7.00307, 6.2146099999999995, 6.66058, 7.016610000000001, 7.09008, 6.85646, 6.90575, 5.66988, 7.09008, 6.53379, 6.84801, 5.99146, 7.21891, 6.90575, 6.745239999999999, 7.07242, 7.6009, 6.817830000000001, 7.346010000000001, 6.6592899999999995, 7.46737, 6.975410000000001, 6.79122, 6.719010000000001, 6.720219999999999, 6.90575, 6.90575, 6.68336, 6.892639999999999, 6.86485, 6.947939999999999, 6.955589999999999, 6.90575, 6.551080000000001, 5.66988, 7.0255399999999995, 7.04752, 6.3935900000000006, 6.807930000000001, 6.74288, 6.802389999999999, 6.4599, 6.354369999999999, 6.18208, 7.398789999999999, 7.37776, 7.35883, 6.47697, 7.18463, 6.745239999999999, 7.05876, 6.84588, 6.68461, 7.64969, 6.59578, 6.715380000000001, 6.04025, 6.507280000000001, 6.23441, 7.098380000000001, 6.2804, 7.6256, 6.633319999999999, 6.6346300000000005, 6.43455, 6.52649, 7.54961, 7.09008, 6.36475, 5.7462, 6.77422, 6.10925, 6.73459, 7.1293, 6.49224, 6.28413, 7.17012, 6.90575, 6.6515699999999995, 6.56948, 6.80461, 6.03787, 7.313219999999999, 6.11589, 6.68461, 7.09008, 5.96615, 8.26873, 6.17794, 6.3935900000000006, 7.12287, 6.43775, 5.95324, 6.6796, 6.758089999999999, 6.68461, 6.90575, 7.495539999999999, 6.84588, 6.745239999999999, 6.21261, 6.10032, 8.048789999999999, 7.313219999999999, 6.802389999999999, 6.745239999999999, 6.907760000000001, 6.90575, 5.82305, 6.90575, 7.17012, 6.2441699999999996, 8.08641, 5.59842, 7.08171, 6.9594, 6.97354, 7.30653, 6.55962, 6.58617, 6.74406, 7.56008, 6.1944099999999995, 7.408530000000001, 6.61338, 6.01616, 6.32794, 7.18007, 6.74052, 6.95655, 6.58617, 6.66568, 6.85646, 6.44572, 7.313219999999999, 7.1309, 5.99146, 6.18826, 5.59842, 6.49224, 6.821110000000001, 6.56526, 6.47697, 6.813439999999999, 7.43838, 6.30262, 6.38351, 6.551080000000001, 5.45959, 6.43775, 6.90575, 6.53233, 6.61874, 6.06843, 6.1203, 7.88231, 6.90575, 6.7569300000000005, 5.7651900000000005, 6.938280000000001, 7.08255, 6.41346, 6.882439999999999, 7.37776, 6.44413, 6.90575, 6.51471, 6.5439099999999994, 6.551080000000001, 6.90575, 7.35372, 7.135689999999999, 7.46737, 6.63595, 6.802389999999999, 7.346010000000001, 6.90575, 6.86693, 7.1309, 5.78383, 6.829789999999999, 6.65286, 6.7334, 7.2998, 6.65415, 6.9256, 6.90575, 6.39693, 6.52209, 6.3699, 6.770789999999999, 6.39693, 6.49072, 6.02345, 7.32251, 6.13123, 6.29711, 7.04752, 6.799060000000001, 6.272880000000001, 6.49527, 6.57925, 6.697030000000001, 6.703189999999999, 7.04752, 6.65286, 6.752269999999999, 6.2146099999999995, 6.42162, 6.90575, 7.014810000000001, 6.62007, 6.85646, 6.745239999999999, 6.9256, 6.58617, 6.51471, 5.96615, 6.90575, 6.52942, 6.16331, 6.56526, 6.813439999999999, 7.09008, 5.8141300000000005, 6.769639999999999, 6.08677, 6.7369699999999995, 7.064760000000001, 7.11883, 6.51175, 7.46737, 6.57228, 6.551080000000001, 7.67322, 6.35957, 6.907760000000001, 6.58617, 7.1309, 6.57925, 6.43294, 6.39693, 7.46737, 6.95655, 6.54247, 6.3716099999999996, 7.293019999999999, 6.08677, 7.64969, 6.95655, 8.13153, 6.3613, 6.10925, 6.551080000000001, 6.907760000000001, 6.907760000000001, 6.43775, 6.3243599999999995, 6.83518, 6.993930000000001, 6.6567300000000005, 6.984719999999999, 7.062189999999999, 6.907760000000001, 6.77992, 7.195189999999999, 7.185389999999999, 6.07993, 6.01616, 6.72743, 6.33683, 6.70073, 7.20786, 7.0103100000000005, 6.551080000000001, 7.1309, 6.7334, 7.495539999999999, 6.24028, 6.354369999999999, 6.90575, 6.551080000000001, 7.00307, 6.85013, 7.0255399999999995, 6.39693, 7.495539999999999, 6.768489999999999, 6.23441, 6.461469999999999, 6.5395900000000005, 6.907760000000001, 6.05209, 6.28413, 6.126869999999999, 7.12287, 6.745239999999999, 7.21744, 6.39693, 6.49072, 6.47697, 6.05209, 7.24423, 6.802389999999999, 7.09008, 6.44572, 7.00307, 6.966019999999999, 6.721430000000001, 6.62936, 6.813439999999999, 6.28227, 7.64969, 6.9575, 7.3696, 6.461469999999999, 6.90575, 7.20786, 6.78333, 6.57647, 6.5903, 7.00307, 6.74993, 6.57925, 6.907760000000001, 6.16331, 6.59578, 6.802389999999999, 6.272880000000001, 7.014810000000001, 6.2146099999999995, 6.43615, 6.64509, 6.608, 6.68461, 6.58617, 6.62007, 7.00307, 6.95655, 6.12249, 6.62007, 7.09008, 6.83303, 6.98101, 6.6871100000000006, 6.81014, 7.37776, 6.51767, 6.85435, 7.64969, 7.91936, 6.907760000000001, 6.9256, 6.6733, 7.5574699999999995, 6.13773, 6.67203, 6.30992, 6.47697, 6.8956800000000005, 6.56948, 6.33328, 6.802389999999999, 6.9707300000000005, 8.00637, 6.65286, 6.57368, 5.70711, 6.57786, 6.92363, 6.57368, 7.37776, 6.2146099999999995, 7.408530000000001, 7.1155800000000005, 7.91936, 7.09008, 7.37776, 7.1309, 6.58617, 6.14633, 6.6592899999999995, 6.90575, 7.092569999999999, 6.86485, 7.57558, 7.200419999999999, 6.95655, 6.2146099999999995, 6.05209, 6.44254, 6.4599, 6.60394, 6.975410000000001, 7.400010000000001, 8.537, 6.07993, 7.36645, 6.67708, 6.99942, 6.61338, 7.64969, 6.68461, 6.57925, 7.09008, 7.1082399999999994, 6.83518, 7.09008, 6.58617, 6.90575, 6.43615, 6.84162, 7.313219999999999, 6.55962, 6.07993, 6.3952599999999995, 6.633319999999999, 6.42162, 7.09008, 7.313219999999999, 6.30992, 6.79122, 6.720219999999999, 6.66823, 7.2861899999999995, 6.802389999999999, 6.703189999999999, 5.98896, 7.620710000000001, 7.09008, 7.6009, 6.28972, 6.48768, 6.68461, 6.41182, 7.37776, 7.525639999999999, 6.74993, 6.72623, 7.09008, 7.25347, 7.585789999999999, 6.45362, 6.354369999999999, 6.984719999999999, 6.90575, 6.937310000000001, 7.0775, 7.346010000000001, 7.027310000000001, 6.907760000000001, 6.9489, 6.907760000000001, 7.495539999999999, 6.01127, 6.802389999999999, 6.745239999999999, 6.90575, 6.633319999999999, 6.80572, 6.2480400000000005, 6.2634, 6.31355, 7.35819, 6.49677, 6.68461, 6.633319999999999, 7.30317, 6.95655, 6.907760000000001, 5.742999999999999, 6.39693, 7.313219999999999, 7.09008, 6.47697, 7.196689999999999, 6.47697, 6.30262, 6.745239999999999, 7.07412, 6.354369999999999, 6.10925, 6.68461, 7.42357, 6.95655, 6.715380000000001, 6.9828600000000005, 7.02465, 6.49224, 6.49979, 6.27099, 5.8861, 7.393260000000001, 6.829789999999999, 6.32794, 6.28786, 5.9839400000000005, 6.68461, 5.84354, 6.62007, 7.12287, 6.2146099999999995, 6.84162, 7.00307, 6.2146099999999995, 6.983789999999999, 6.35611, 6.17379, 6.95655, 6.39693, 6.88755, 7.04316, 6.90575, 6.84162, 6.45362, 6.83518, 6.85646, 6.46925, 5.99146, 6.62007, 7.00307, 5.99146, 6.22654, 6.633319999999999, 6.77308, 7.1107, 6.95655, 6.967910000000001, 6.995769999999999, 6.66568, 6.594410000000001, 6.90575, 6.5439099999999994, 6.62007, 6.60665, 7.04752, 7.062189999999999, 7.313219999999999, 7.04752, 7.0884100000000005, 6.937310000000001, 6.90575, 6.23441, 6.25767, 6.551080000000001, 6.90575, 7.09008, 6.68461, 6.2146099999999995, 6.386880000000001, 6.44413, 6.58617, 6.10925, 6.90073, 6.745239999999999, 7.2233, 6.8773, 6.813439999999999, 7.037030000000001, 6.40523, 6.2146099999999995, 6.17379, 7.6009, 6.30992, 6.685860000000001, 6.38856, 6.47697, 7.46737, 6.551080000000001, 6.9226399999999995, 6.87213, 6.73102, 6.30992, 7.45298, 5.72359, 6.882439999999999, 5.940169999999999, 6.90675, 6.551080000000001, 6.9147300000000005, 6.85646, 6.563860000000001, 6.381819999999999, 5.78996, 6.769639999999999, 6.73102, 7.06133, 6.68461, 6.2146099999999995, 6.4708, 7.08171, 6.90575, 7.6009, 6.52062, 6.907760000000001, 6.60935, 6.51471, 6.9828600000000005, 6.85646, 6.30992, 7.338889999999999, 6.22654, 6.311730000000001, 7.01392, 6.49224, 6.2205900000000005, 7.44659, 7.388330000000001, 6.85118, 7.24423, 6.632000000000001, 6.90575, 7.10906, 6.944089999999999, 6.83518, 6.222580000000001, 6.84588, 7.17012, 6.52503, 6.2860000000000005, 6.80128, 6.07993 ], "y0": "yes&male" } ], "layout": { "legend": { "tracegroupgap": 0, "x": 1.1, "xanchor": "right", "y": 1.1 }, "margin": { "b": 40, "l": 80, "r": 10, "t": 10 }, "paper_bgcolor": "#eeeeff", "plot_bgcolor": "#ffffff", "showlegend": true, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "barpolar" } ], "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" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "colorscale": { "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" ] ], "sequential": [ [ 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, "#f0f921" ] ], "sequentialminus": [ [ 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, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "text": "Married & Gender ~ Wage", "x": 0.5 }, "violingap": 0, "violingroupgap": 0, "violinmode": "overlay", "xaxis": { "showgrid": false, "showline": true, "showticklabels": true, "title": { "text": "Wage (log)" }, "visible": true, "zeroline": true }, "yaxis": { "showgrid": true, "showline": true, "showticklabels": true, "side": "left", "title": { "text": "Married & Gender" }, "visible": true, "zeroline": true } } }, "text/html": [ "
\n", " \n", " \n", "
\n", " \n", "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "#intersection of two different Xcolumns:\n", "traces,layout=cmplot(train, xcol=[\"married\",\"sex\"], ycol=\"lwage\",ycolorgroups=False,\n", " side=\"pos\",pointshapes=[\"star-diamond\"],pointsmaxdisplayed=500)\n", "layout[\"legend_tracegroupgap\"]=0\n", "layout[\"title_text\"]=\"Married & Gender ~ Wage\"\n", "layout[\"yaxis_title\"]=\"Married & Gender\"\n", "layout[\"xaxis_title\"]=\"Wage (log)\"\n", "go.Figure(traces,layout)\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Or with three:" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "fillcolor": "hsla(41, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(41, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.4, "legendgroup": "female&no&no", "line": { "color": "hsla(41, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(41, 70%, 70%,1)", "line": { "color": "hsla(41, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "diamond" }, "meanline": { "color": "hsla(41, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage female&no&no", "orientation": "h", "pointpos": 0, "points": "all", "scalegroup": "female&no&no", "scalemode": "count", "showlegend": true, "side": "both", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.05209, 5.73334, 6.47697, 5.99146, 5.93489, 5.7525699999999995, 5.95324, 6.05209, 5.51745, 6.715380000000001, 6.16331, 6.95655, 5.34711, 5.64545, 6.12905, 5.883319999999999, 5.59842, 6.386880000000001, 5.8141300000000005, 5.86647, 6.01616, 6.278519999999999, 6.36819, 5.8861, 5.65948, 5.940169999999999, 6.77422, 5.82008, 5.42935, 6.45834, 5.8141300000000005, 6.3952599999999995, 5.42053, 6.52209, 7.20786, 5.52146, 6.0822199999999995, 6.39693, 5.8579300000000005, 5.01064, 6.30992, 5.97635, 6.07993, 5.70378, 6.63068, 5.68698, 6.12249, 6.14847, 6.10925, 5.86079, 5.9135, 7.18917, 5.52146, 6.47697, 5.8861, 5.43808, 6.0845, 6.58617, 6.2146099999999995, 6.206580000000001, 6.2634, 6.646389999999999, 5.5797300000000005, 6.07993, 6.583410000000001, 6.44731, 5.82895, 5.01064, 6.05209, 5.84354, 5.99894, 5.8999, 5.47227, 5.7365699999999995, 5.64191, 6.21261, 6.95655, 6.62672, 6.23441, 5.53339, 5.7365699999999995, 5.76832, 5.5797300000000005, 6.16331, 6.551080000000001, 5.66988, 5.66988, 6.06611, 6.56244, 6.05209, 5.8579300000000005, 5.19296 ], "y0": "female&no&no" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(41, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(41, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "female&no&no", "line": { "width": 0 }, "marker": { "color": "hsla(41, 50%, 50%,0.9)", "line": { "color": "hsla(41, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "diamond" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "female&no&no", "showlegend": false, "side": "both", "span": [ 5.937832522772803, 6.120573967492352 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 6.05209, 5.73334, 6.47697, 5.99146, 5.93489, 5.7525699999999995, 5.95324, 6.05209, 5.51745, 6.715380000000001, 6.16331, 6.95655, 5.34711, 5.64545, 6.12905, 5.883319999999999, 5.59842, 6.386880000000001, 5.8141300000000005, 5.86647, 6.01616, 6.278519999999999, 6.36819, 5.8861, 5.65948, 5.940169999999999, 6.77422, 5.82008, 5.42935, 6.45834, 5.8141300000000005, 6.3952599999999995, 5.42053, 6.52209, 7.20786, 5.52146, 6.0822199999999995, 6.39693, 5.8579300000000005, 5.01064, 6.30992, 5.97635, 6.07993, 5.70378, 6.63068, 5.68698, 6.12249, 6.14847, 6.10925, 5.86079, 5.9135, 7.18917, 5.52146, 6.47697, 5.8861, 5.43808, 6.0845, 6.58617, 6.2146099999999995, 6.206580000000001, 6.2634, 6.646389999999999, 5.5797300000000005, 6.07993, 6.583410000000001, 6.44731, 5.82895, 5.01064, 6.05209, 5.84354, 5.99894, 5.8999, 5.47227, 5.7365699999999995, 5.64191, 6.21261, 6.95655, 6.62672, 6.23441, 5.53339, 5.7365699999999995, 5.76832, 5.5797300000000005, 6.16331, 6.551080000000001, 5.66988, 5.66988, 6.06611, 6.56244, 6.05209, 5.8579300000000005, 5.19296 ], "y0": "female&no&no" }, { "fillcolor": "hsla(82, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(82, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.4, "legendgroup": "female&no&yes", "line": { "color": "hsla(82, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(82, 70%, 70%,1)", "line": { "color": "hsla(82, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "hexagon" }, "meanline": { "color": "hsla(82, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage female&no&yes", "orientation": "h", "pointpos": 0, "points": false, "scalegroup": "female&no&yes", "scalemode": "count", "showlegend": true, "side": "both", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.55536, 6.39693, 6.907760000000001, 6.50279, 6.614730000000001, 6.30992, 6.62007, 6.17379, 6.2146099999999995, 6.65286, 6.30992, 6.48158, 6.907760000000001, 5.8999, 6.43775, 6.907760000000001, 5.463830000000001, 5.43808, 6.77422, 5.68358, 6.2146099999999995, 6.10925, 6.6783399999999995, 7.1309, 6.39693, 6.77422, 5.96615, 5.90808, 6.39693, 5.0814, 4.605169999999999, 6.7901, 6.65286, 6.86485, 6.92461, 6.85646, 5.4161, 6.30079, 5.76832, 6.16542, 7.04752, 6.19644, 6.318969999999999, 5.9454199999999995, 6.4677, 6.768489999999999, 6.2480400000000005, 6.33328, 6.48311, 7.00307, 5.8999, 6.62007, 6.36475, 6.65286, 5.7525699999999995, 6.025869999999999, 6.20456, 6.31536, 6.1070199999999994, 5.9269300000000005, 6.85646, 6.85646, 6.32972, 6.802389999999999, 6.2634, 6.3716099999999996, 6.10925, 6.93537, 6.56244, 6.23245, 7.1309, 6.57925, 6.30992, 6.34388, 7.279319999999999, 6.58064, 6.33683, 6.5582, 6.354369999999999, 5.95324, 5.9454199999999995, 5.7525699999999995, 6.28972, 6.2952699999999995, 6.05209, 6.551080000000001, 6.621410000000001, 5.82305, 6.02345, 6.907760000000001, 6.58617, 6.901739999999999, 5.8579300000000005, 6.17379, 5.81711, 6.44254, 6.30079, 6.745239999999999, 6.7901, 6.51471, 6.17379, 6.07993, 6.11589, 5.74939, 6.33328, 7.0255399999999995, 6.30992, 6.10925, 6.785589999999999, 6.47697, 7.04752, 6.04025, 6.39693, 6.43775, 5.940169999999999, 6.35957, 6.2146099999999995, 6.253830000000001, 6.1025599999999995, 6.1025599999999995, 6.15698, 6.96885, 6.885510000000001, 6.1717, 5.958419999999999, 5.98645, 5.8579300000000005, 6.715380000000001, 6.10925, 6.65286, 6.39693, 6.26149, 6.551080000000001, 6.29157, 5.50126, 6.4708, 6.15698, 5.8999, 5.99146, 6.33328, 6.9707300000000005, 6.6567300000000005, 6.745239999999999, 6.93049, 6.849069999999999, 6.1070199999999994, 6.712960000000001, 5.97635, 6.29157, 6.86901, 6.0282800000000005, 6.39859, 6.6592899999999995, 6.907760000000001, 6.47697, 6.551080000000001, 6.68461, 6.88755, 6.23441, 6.463030000000001, 6.65286, 6.39693, 5.8141300000000005, 6.06379, 5.8861, 5.8861, 6.05209, 5.52146, 6.06379, 6.2205900000000005, 7.04752, 6.3952599999999995, 6.70073, 6.07993, 6.46925, 6.22654, 6.58755, 6.8254600000000005, 5.99146, 6.62007, 6.62007, 6.29895, 6.745239999999999, 5.93225, 6.49072, 5.78383, 6.35957, 5.82008, 6.04025, 6.39693, 6.59715, 6.77422, 5.5606800000000005, 6.8426800000000005, 6.30992, 6.602589999999999, 6.424869999999999, 6.259580000000001, 6.2634, 6.04025, 6.551080000000001, 6.17587, 5.8693, 6.43775, 6.73459, 6.29157, 6.2146099999999995, 6.682110000000001, 6.19236, 5.88053, 6.38856, 5.99894, 5.39363, 5.96615, 6.52209, 5.96615, 6.6896, 6.14419, 6.692080000000001, 6.013719999999999, 6.224559999999999, 6.07304, 6.2146099999999995, 6.802389999999999, 5.95324, 5.8579300000000005, 6.33683, 5.97889, 6.2146099999999995, 6.34388, 6.1070199999999994, 6.30992, 6.36819, 6.23637, 6.47697, 6.36303, 6.748760000000001, 6.633319999999999, 6.04025, 5.7525699999999995, 6.0330900000000005, 5.82305, 5.39363, 5.95324, 5.8999, 6.2146099999999995, 6.2804, 6.39693, 5.89715, 6.06611, 6.2146099999999995, 5.48064, 6.3952599999999995, 6.27099, 6.035480000000001, 6.39859, 6.551080000000001, 6.43775, 6.02345, 5.9269300000000005, 6.72743, 5.4161, 6.47697, 5.50126, 6.2146099999999995, 6.73815, 6.802389999999999, 6.77422, 6.1944099999999995, 6.70073, 6.593039999999999, 6.85646, 6.745239999999999, 6.85646, 6.79347, 5.65249, 6.39693, 6.317159999999999, 6.35611, 5.8579300000000005, 6.18415, 6.46925, 6.77765, 6.30992, 5.8861, 7.216710000000001, 6.65286, 6.2146099999999995, 6.88857, 5.76205, 5.68698, 6.1203, 5.7365699999999995, 5.7365699999999995, 6.2146099999999995, 6.2146099999999995, 7.04752, 6.30992, 7.17012, 6.551080000000001, 6.47697, 5.61313, 5.7462, 6.056780000000001, 5.8944, 5.84932, 6.06843, 6.49375, 6.23832, 5.79606, 6.19644, 6.19236, 6.6253899999999994, 5.7525699999999995, 6.14633, 6.712960000000001, 6.3716099999999996, 6.62007, 6.30992, 6.47697, 6.62007, 6.18002, 6.745239999999999, 5.96358, 6.39693, 6.14204, 5.5797300000000005, 6.11147, 5.73334, 5.90808, 5.9269300000000005, 6.2186, 6.68461, 6.643789999999999, 6.39693, 6.57786, 5.43808, 5.8141300000000005, 6.3315, 6.86485, 6.04025, 6.7901, 6.253830000000001, 6.57228, 5.93225, 5.273, 6.2186, 6.1717, 6.47697, 6.05209, 6.86693, 6.36303, 6.39693, 5.95584, 6.7093, 6.62007, 6.41017, 6.556780000000001, 5.8141300000000005, 6.30992, 6.39693, 6.26149, 5.94803, 6.65544, 6.3081 ], "y0": "female&no&yes" }, { "box": { "visible": false }, "fillcolor": "rgba(0, 0, 0, 0)", "hoverinfo": "x", "hoveron": "points", "jitter": 0.4, "legendgroup": "female&no&yes", "line": { "color": "rgba(0, 0, 0, 0)", "width": 0 }, "marker": { "color": "hsla(82, 70%, 70%,1)", "line": { "color": "hsla(82, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "hexagon" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "all", "scalegroup": "female&no&yes", "showlegend": false, "side": "both", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.55536, 6.39693, 6.907760000000001, 6.50279, 6.614730000000001, 6.30992, 6.62007, 6.17379, 6.2146099999999995, 6.65286, 6.30992, 6.48158, 6.907760000000001, 5.8999, 6.43775, 6.907760000000001, 5.463830000000001, 5.43808, 6.77422, 5.68358, 6.2146099999999995, 6.10925, 6.6783399999999995, 7.1309, 6.39693, 6.77422, 5.96615, 5.90808, 6.39693, 5.0814, 4.605169999999999, 6.7901, 6.65286, 6.86485, 6.92461, 6.85646, 5.4161, 6.30079, 5.76832, 6.16542, 7.04752, 6.19644, 6.318969999999999, 5.9454199999999995, 6.4677, 6.768489999999999, 6.2480400000000005, 6.33328, 6.48311, 7.00307, 5.8999, 6.62007, 6.36475, 6.65286, 5.7525699999999995, 6.025869999999999, 6.20456, 6.31536, 6.1070199999999994, 5.9269300000000005, 6.85646, 6.85646, 6.32972, 6.802389999999999, 6.2634, 6.3716099999999996, 6.10925, 6.93537, 6.56244, 6.23245, 7.1309, 6.57925, 6.30992, 6.34388, 7.279319999999999, 6.58064, 6.33683, 6.5582, 6.354369999999999, 5.95324, 5.9454199999999995, 5.7525699999999995, 6.28972, 6.2952699999999995, 6.05209, 6.551080000000001, 6.621410000000001, 5.82305, 6.02345, 6.907760000000001, 6.58617, 6.901739999999999, 5.8579300000000005, 6.17379, 5.81711, 6.44254, 6.30079, 6.745239999999999, 6.7901, 6.51471, 6.17379, 6.07993, 6.11589, 5.74939, 6.33328, 7.0255399999999995, 6.30992, 6.10925, 6.785589999999999, 6.47697, 7.04752, 6.04025, 6.39693, 6.43775, 5.940169999999999, 6.35957, 6.2146099999999995, 6.253830000000001, 6.1025599999999995, 6.1025599999999995, 6.15698, 6.96885, 6.885510000000001, 6.1717, 5.958419999999999, 5.98645, 5.8579300000000005, 6.715380000000001, 6.10925, 6.65286, 6.39693, 6.26149, 6.551080000000001, 6.29157, 5.50126, 6.4708, 6.15698, 5.8999, 5.99146, 6.33328, 6.9707300000000005, 6.6567300000000005, 6.745239999999999, 6.93049, 6.849069999999999, 6.1070199999999994, 6.712960000000001, 5.97635, 6.29157, 6.86901, 6.0282800000000005, 6.39859, 6.6592899999999995, 6.907760000000001, 6.47697, 6.551080000000001, 6.68461, 6.88755, 6.23441, 6.463030000000001, 6.65286, 6.39693, 5.8141300000000005, 6.06379, 5.8861, 5.8861, 6.05209, 5.52146, 6.06379, 6.2205900000000005, 7.04752, 6.3952599999999995, 6.70073, 6.07993, 6.46925, 6.22654, 6.58755, 6.8254600000000005, 5.99146, 6.62007, 6.62007, 6.29895, 6.745239999999999, 5.93225, 6.49072, 5.78383, 6.35957, 5.82008, 6.04025, 6.39693, 6.59715, 6.77422, 5.5606800000000005, 6.8426800000000005, 6.30992, 6.602589999999999, 6.424869999999999, 6.259580000000001, 6.2634, 6.04025, 6.551080000000001, 6.17587, 5.8693, 6.43775, 6.73459, 6.29157, 6.2146099999999995, 6.682110000000001, 6.19236, 5.88053, 6.38856, 5.99894, 5.39363, 5.96615, 6.52209, 5.96615, 6.6896, 6.14419, 6.692080000000001, 6.013719999999999, 6.224559999999999, 6.07304, 6.2146099999999995, 6.802389999999999, 5.95324, 5.8579300000000005, 6.33683, 5.97889, 6.2146099999999995, 6.34388, 6.1070199999999994, 6.30992, 6.36819, 6.23637, 6.47697, 6.36303, 6.748760000000001, 6.633319999999999, 6.04025, 5.7525699999999995, 6.0330900000000005, 5.82305, 5.39363, 5.95324, 5.8999, 6.2146099999999995, 6.2804, 6.39693, 5.89715, 6.06611, 6.2146099999999995, 5.48064, 6.3952599999999995, 6.27099, 6.035480000000001, 6.39859, 6.551080000000001, 6.43775, 6.02345, 5.9269300000000005, 6.72743, 5.4161, 6.47697, 5.50126, 6.2146099999999995, 6.73815, 6.802389999999999, 6.77422, 6.1944099999999995, 6.70073, 6.593039999999999, 6.85646, 6.745239999999999, 6.85646, 6.79347, 5.65249, 6.39693, 6.317159999999999, 6.35611, 5.8579300000000005, 6.18415, 6.46925, 6.77765, 6.30992, 5.8861, 7.216710000000001, 6.65286, 6.2146099999999995, 6.88857, 5.76205, 5.68698, 6.1203, 5.7365699999999995, 5.7365699999999995, 6.2146099999999995, 6.2146099999999995, 7.04752, 6.30992, 7.17012, 6.551080000000001 ], "y0": "female&no&yes" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(82, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(82, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "female&no&yes", "line": { "width": 0 }, "marker": { "color": "hsla(82, 50%, 50%,0.9)", "line": { "color": "hsla(82, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "hexagon" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "female&no&yes", "showlegend": false, "side": "both", "span": [ 6.26912137637722, 6.350171921307866 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 6.55536, 6.39693, 6.907760000000001, 6.50279, 6.614730000000001, 6.30992, 6.62007, 6.17379, 6.2146099999999995, 6.65286, 6.30992, 6.48158, 6.907760000000001, 5.8999, 6.43775, 6.907760000000001, 5.463830000000001, 5.43808, 6.77422, 5.68358, 6.2146099999999995, 6.10925, 6.6783399999999995, 7.1309, 6.39693, 6.77422, 5.96615, 5.90808, 6.39693, 5.0814, 4.605169999999999, 6.7901, 6.65286, 6.86485, 6.92461, 6.85646, 5.4161, 6.30079, 5.76832, 6.16542, 7.04752, 6.19644, 6.318969999999999, 5.9454199999999995, 6.4677, 6.768489999999999, 6.2480400000000005, 6.33328, 6.48311, 7.00307, 5.8999, 6.62007, 6.36475, 6.65286, 5.7525699999999995, 6.025869999999999, 6.20456, 6.31536, 6.1070199999999994, 5.9269300000000005, 6.85646, 6.85646, 6.32972, 6.802389999999999, 6.2634, 6.3716099999999996, 6.10925, 6.93537, 6.56244, 6.23245, 7.1309, 6.57925, 6.30992, 6.34388, 7.279319999999999, 6.58064, 6.33683, 6.5582, 6.354369999999999, 5.95324, 5.9454199999999995, 5.7525699999999995, 6.28972, 6.2952699999999995, 6.05209, 6.551080000000001, 6.621410000000001, 5.82305, 6.02345, 6.907760000000001, 6.58617, 6.901739999999999, 5.8579300000000005, 6.17379, 5.81711, 6.44254, 6.30079, 6.745239999999999, 6.7901, 6.51471, 6.17379, 6.07993, 6.11589, 5.74939, 6.33328, 7.0255399999999995, 6.30992, 6.10925, 6.785589999999999, 6.47697, 7.04752, 6.04025, 6.39693, 6.43775, 5.940169999999999, 6.35957, 6.2146099999999995, 6.253830000000001, 6.1025599999999995, 6.1025599999999995, 6.15698, 6.96885, 6.885510000000001, 6.1717, 5.958419999999999, 5.98645, 5.8579300000000005, 6.715380000000001, 6.10925, 6.65286, 6.39693, 6.26149, 6.551080000000001, 6.29157, 5.50126, 6.4708, 6.15698, 5.8999, 5.99146, 6.33328, 6.9707300000000005, 6.6567300000000005, 6.745239999999999, 6.93049, 6.849069999999999, 6.1070199999999994, 6.712960000000001, 5.97635, 6.29157, 6.86901, 6.0282800000000005, 6.39859, 6.6592899999999995, 6.907760000000001, 6.47697, 6.551080000000001, 6.68461, 6.88755, 6.23441, 6.463030000000001, 6.65286, 6.39693, 5.8141300000000005, 6.06379, 5.8861, 5.8861, 6.05209, 5.52146, 6.06379, 6.2205900000000005, 7.04752, 6.3952599999999995, 6.70073, 6.07993, 6.46925, 6.22654, 6.58755, 6.8254600000000005, 5.99146, 6.62007, 6.62007, 6.29895, 6.745239999999999, 5.93225, 6.49072, 5.78383, 6.35957, 5.82008, 6.04025, 6.39693, 6.59715, 6.77422, 5.5606800000000005, 6.8426800000000005, 6.30992, 6.602589999999999, 6.424869999999999, 6.259580000000001, 6.2634, 6.04025, 6.551080000000001, 6.17587, 5.8693, 6.43775, 6.73459, 6.29157, 6.2146099999999995, 6.682110000000001, 6.19236, 5.88053, 6.38856, 5.99894, 5.39363, 5.96615, 6.52209, 5.96615, 6.6896, 6.14419, 6.692080000000001, 6.013719999999999, 6.224559999999999, 6.07304, 6.2146099999999995, 6.802389999999999, 5.95324, 5.8579300000000005, 6.33683, 5.97889, 6.2146099999999995, 6.34388, 6.1070199999999994, 6.30992, 6.36819, 6.23637, 6.47697, 6.36303, 6.748760000000001, 6.633319999999999, 6.04025, 5.7525699999999995, 6.0330900000000005, 5.82305, 5.39363, 5.95324, 5.8999, 6.2146099999999995, 6.2804, 6.39693, 5.89715, 6.06611, 6.2146099999999995, 5.48064, 6.3952599999999995, 6.27099, 6.035480000000001, 6.39859, 6.551080000000001, 6.43775, 6.02345, 5.9269300000000005, 6.72743, 5.4161, 6.47697, 5.50126, 6.2146099999999995, 6.73815, 6.802389999999999, 6.77422, 6.1944099999999995, 6.70073, 6.593039999999999, 6.85646, 6.745239999999999, 6.85646, 6.79347, 5.65249, 6.39693, 6.317159999999999, 6.35611, 5.8579300000000005, 6.18415, 6.46925, 6.77765, 6.30992, 5.8861, 7.216710000000001, 6.65286, 6.2146099999999995, 6.88857, 5.76205, 5.68698, 6.1203, 5.7365699999999995, 5.7365699999999995, 6.2146099999999995, 6.2146099999999995, 7.04752, 6.30992, 7.17012, 6.551080000000001, 6.47697, 5.61313, 5.7462, 6.056780000000001, 5.8944, 5.84932, 6.06843, 6.49375, 6.23832, 5.79606, 6.19644, 6.19236, 6.6253899999999994, 5.7525699999999995, 6.14633, 6.712960000000001, 6.3716099999999996, 6.62007, 6.30992, 6.47697, 6.62007, 6.18002, 6.745239999999999, 5.96358, 6.39693, 6.14204, 5.5797300000000005, 6.11147, 5.73334, 5.90808, 5.9269300000000005, 6.2186, 6.68461, 6.643789999999999, 6.39693, 6.57786, 5.43808, 5.8141300000000005, 6.3315, 6.86485, 6.04025, 6.7901, 6.253830000000001, 6.57228, 5.93225, 5.273, 6.2186, 6.1717, 6.47697, 6.05209, 6.86693, 6.36303, 6.39693, 5.95584, 6.7093, 6.62007, 6.41017, 6.556780000000001, 5.8141300000000005, 6.30992, 6.39693, 6.26149, 5.94803, 6.65544, 6.3081 ], "y0": "female&no&yes" }, { "fillcolor": "hsla(123, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(123, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.4, "legendgroup": "female&yes&no", "line": { "color": "hsla(123, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(123, 70%, 70%,1)", "line": { "color": "hsla(123, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "star-triangle-up" }, "meanline": { "color": "hsla(123, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage female&yes&no", "orientation": "h", "pointpos": 0, "points": "all", "scalegroup": "female&yes&no", "scalemode": "count", "showlegend": true, "side": "both", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.10925, 6.0282800000000005, 5.8579300000000005, 5.8861, 5.99146 ], "y0": "female&yes&no" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(123, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(123, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "female&yes&no", "line": { "width": 0 }, "marker": { "color": "hsla(123, 50%, 50%,0.9)", "line": { "color": "hsla(123, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "star-triangle-up" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "female&yes&no", "showlegend": false, "side": "both", "span": [ 5.855728375354832, 6.084131723274724 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 6.10925, 6.0282800000000005, 5.8579300000000005, 5.8861, 5.99146 ], "y0": "female&yes&no" }, { "fillcolor": "hsla(164, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(164, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.4, "legendgroup": "female&yes&yes", "line": { "color": "hsla(164, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(164, 70%, 70%,1)", "line": { "color": "hsla(164, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "pentagon" }, "meanline": { "color": "hsla(164, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage female&yes&yes", "orientation": "h", "pointpos": 0, "points": "all", "scalegroup": "female&yes&yes", "scalemode": "count", "showlegend": true, "side": "both", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.3952599999999995, 7.09008, 6.49224, 6.43615, 7.0422899999999995, 6.73102, 6.745239999999999 ], "y0": "female&yes&yes" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(164, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(164, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "female&yes&yes", "line": { "width": 0 }, "marker": { "color": "hsla(164, 50%, 50%,0.9)", "line": { "color": "hsla(164, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "pentagon" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "female&yes&yes", "showlegend": false, "side": "both", "span": [ 6.4703058032647585, 6.947860724758759 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 6.3952599999999995, 7.09008, 6.49224, 6.43615, 7.0422899999999995, 6.73102, 6.745239999999999 ], "y0": "female&yes&yes" }, { "fillcolor": "hsla(205, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(205, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.4, "legendgroup": "male&no&no", "line": { "color": "hsla(205, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(205, 70%, 70%,1)", "line": { "color": "hsla(205, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "circle" }, "meanline": { "color": "hsla(205, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage male&no&no", "orientation": "h", "pointpos": 0, "points": "all", "scalegroup": "male&no&no", "scalemode": "count", "showlegend": true, "side": "both", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 7.313219999999999, 6.10925, 6.993930000000001, 6.16331, 5.8579300000000005, 7.26193, 6.551080000000001, 5.70378, 7.1309, 6.83195, 6.29157, 5.59842, 6.62007, 5.4161, 7.46737, 6.63857, 6.85646, 5.70378, 6.62007, 6.62007, 6.45362, 6.98008, 7.64969, 6.85646, 6.907760000000001, 5.4161, 6.62007, 6.62007, 6.86693, 6.4552, 5.8861, 6.95655, 6.6280399999999995, 6.63726, 6.77422, 6.715380000000001, 5.70378, 6.802389999999999, 5.4161, 6.95655, 6.62007, 6.02102, 6.86066, 6.51471, 6.2146099999999995, 7.20786, 7.04316, 5.70378, 5.2983199999999995, 6.51175, 6.43775, 6.2146099999999995, 6.6567300000000005, 6.963189999999999, 6.66823, 6.51471, 6.62007, 6.802389999999999, 5.4161, 7.04752, 6.31355, 6.62007, 5.70378, 7.507689999999999, 5.5797300000000005, 7.522939999999999, 6.551080000000001, 7.6009, 5.958419999999999, 6.62007, 6.30992, 5.76832, 7.09008, 7.09008, 6.3716099999999996, 6.85118, 5.67675, 6.69827, 6.45362, 6.745239999999999, 7.00307, 6.85646, 6.84055, 6.77878, 6.694560000000001, 6.49527, 5.70378, 5.52146, 6.49979, 7.18917, 5.72031, 6.77878, 6.768489999999999, 6.912739999999999 ], "y0": "male&no&no" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(205, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(205, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "male&no&no", "line": { "width": 0 }, "marker": { "color": "hsla(205, 50%, 50%,0.9)", "line": { "color": "hsla(205, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "circle" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "male&no&no", "showlegend": false, "side": "both", "span": [ 6.40883669328036, 6.6362783788787425 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 7.313219999999999, 6.10925, 6.993930000000001, 6.16331, 5.8579300000000005, 7.26193, 6.551080000000001, 5.70378, 7.1309, 6.83195, 6.29157, 5.59842, 6.62007, 5.4161, 7.46737, 6.63857, 6.85646, 5.70378, 6.62007, 6.62007, 6.45362, 6.98008, 7.64969, 6.85646, 6.907760000000001, 5.4161, 6.62007, 6.62007, 6.86693, 6.4552, 5.8861, 6.95655, 6.6280399999999995, 6.63726, 6.77422, 6.715380000000001, 5.70378, 6.802389999999999, 5.4161, 6.95655, 6.62007, 6.02102, 6.86066, 6.51471, 6.2146099999999995, 7.20786, 7.04316, 5.70378, 5.2983199999999995, 6.51175, 6.43775, 6.2146099999999995, 6.6567300000000005, 6.963189999999999, 6.66823, 6.51471, 6.62007, 6.802389999999999, 5.4161, 7.04752, 6.31355, 6.62007, 5.70378, 7.507689999999999, 5.5797300000000005, 7.522939999999999, 6.551080000000001, 7.6009, 5.958419999999999, 6.62007, 6.30992, 5.76832, 7.09008, 7.09008, 6.3716099999999996, 6.85118, 5.67675, 6.69827, 6.45362, 6.745239999999999, 7.00307, 6.85646, 6.84055, 6.77878, 6.694560000000001, 6.49527, 5.70378, 5.52146, 6.49979, 7.18917, 5.72031, 6.77878, 6.768489999999999, 6.912739999999999 ], "y0": "male&no&no" }, { "fillcolor": "hsla(246, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(246, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.4, "legendgroup": "male&no&yes", "line": { "color": "hsla(246, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(246, 70%, 70%,1)", "line": { "color": "hsla(246, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "hexagram" }, "meanline": { "color": "hsla(246, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage male&no&yes", "orientation": "h", "pointpos": 0, "points": "all", "scalegroup": "male&no&yes", "scalemode": "count", "showlegend": true, "side": "both", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 5.99146, 6.67203, 6.6995, 6.745239999999999, 6.745239999999999, 7.111510000000001, 6.563860000000001, 7.346010000000001, 6.77878, 6.818919999999999, 6.43455, 6.49072, 6.802389999999999, 6.73815, 6.86693, 6.51471, 5.89715, 6.52942, 6.06611, 7.04752, 6.785589999999999, 7.338889999999999, 7.0255399999999995, 5.7365699999999995, 6.90575, 5.9269300000000005, 6.39693, 6.408530000000001, 6.47697, 7.6009, 6.551080000000001, 6.685860000000001, 6.8977, 5.70378, 6.51323, 5.8141300000000005, 6.834110000000001, 7.24423, 6.43775, 5.99146, 6.802389999999999, 5.8999, 7.1309, 5.78074, 6.2146099999999995, 5.9269300000000005, 6.8426800000000005, 5.99146, 6.907760000000001, 6.658010000000001, 6.893660000000001, 8.02027, 6.57786, 5.9269300000000005, 6.2634, 5.78383, 7.1107, 6.85646, 6.04025, 7.346010000000001, 7.143619999999999, 6.907760000000001, 6.354369999999999, 6.745239999999999, 6.882439999999999, 6.68461, 6.90575, 6.10925, 6.16331, 7.24423, 6.86693, 6.07535, 6.59715, 6.77992, 6.2634, 6.85646, 6.8426800000000005, 6.893660000000001, 6.43775, 6.16331, 6.694560000000001, 6.6783399999999995, 6.72743, 7.346010000000001, 6.551080000000001, 7.0255399999999995, 7.226210000000001, 6.05209, 5.95584, 6.8966899999999995, 6.8426800000000005, 6.9177100000000005, 5.940169999999999, 7.17012, 7.04752, 6.50429, 6.95655, 6.8533, 6.58617, 6.68461, 6.84055, 5.99146, 6.10925, 6.73102, 6.802389999999999, 6.697030000000001, 7.01392, 7.24423, 6.354369999999999, 6.9622399999999995, 6.593039999999999, 6.802389999999999, 6.58893, 6.13123, 6.99485, 6.58617, 7.59287, 6.551080000000001, 5.78383, 6.2634, 6.90575, 7.09008, 6.795710000000001, 6.12249, 6.907760000000001, 6.77992, 6.8966899999999995, 6.07993, 7.2998, 6.9256, 6.802389999999999, 6.9966800000000005, 6.68461, 5.70378, 7.43838, 6.8977, 7.40914, 6.68461, 7.6009, 6.4677, 6.802389999999999, 6.79122, 7.71869, 5.52146, 7.401839999999999, 7.313219999999999, 6.82437, 6.29157, 7.2998, 5.83188, 6.95655, 6.07993, 6.6592899999999995, 7.43838, 6.1181, 6.90575, 6.899719999999999, 5.70378, 6.39693, 5.70378, 7.1309, 6.551080000000001, 6.621410000000001, 6.802389999999999, 6.30992, 6.7226300000000005, 6.72743, 7.24423, 6.62936, 6.90575, 6.08904, 6.802389999999999, 5.99146, 6.2146099999999995, 5.8260000000000005, 6.60394, 6.72623, 6.2146099999999995, 7.1507, 6.55962, 6.7334, 6.802389999999999, 6.68461, 6.787839999999999, 7.1107, 6.593039999999999, 6.30992, 6.83518, 6.967910000000001, 6.68461, 6.90575, 6.23637, 5.78383, 7.027310000000001, 5.84644, 6.2146099999999995, 7.195189999999999, 6.51915, 7.00307, 6.72743, 7.251339999999999, 7.2717, 7.2998, 6.354369999999999, 6.01616, 6.48158, 6.97261, 6.19032, 7.313219999999999, 7.09008, 6.35957, 6.51471, 6.39693, 6.13123, 6.0822199999999995, 6.907760000000001, 6.58617, 6.90575, 6.2146099999999995, 7.1309, 6.2634, 6.84055 ], "y0": "male&no&yes" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(246, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(246, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "male&no&yes", "line": { "width": 0 }, "marker": { "color": "hsla(246, 50%, 50%,0.9)", "line": { "color": "hsla(246, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "hexagram" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "male&no&yes", "showlegend": false, "side": "both", "span": [ 6.588159877293448, 6.710607110179051 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 5.99146, 6.67203, 6.6995, 6.745239999999999, 6.745239999999999, 7.111510000000001, 6.563860000000001, 7.346010000000001, 6.77878, 6.818919999999999, 6.43455, 6.49072, 6.802389999999999, 6.73815, 6.86693, 6.51471, 5.89715, 6.52942, 6.06611, 7.04752, 6.785589999999999, 7.338889999999999, 7.0255399999999995, 5.7365699999999995, 6.90575, 5.9269300000000005, 6.39693, 6.408530000000001, 6.47697, 7.6009, 6.551080000000001, 6.685860000000001, 6.8977, 5.70378, 6.51323, 5.8141300000000005, 6.834110000000001, 7.24423, 6.43775, 5.99146, 6.802389999999999, 5.8999, 7.1309, 5.78074, 6.2146099999999995, 5.9269300000000005, 6.8426800000000005, 5.99146, 6.907760000000001, 6.658010000000001, 6.893660000000001, 8.02027, 6.57786, 5.9269300000000005, 6.2634, 5.78383, 7.1107, 6.85646, 6.04025, 7.346010000000001, 7.143619999999999, 6.907760000000001, 6.354369999999999, 6.745239999999999, 6.882439999999999, 6.68461, 6.90575, 6.10925, 6.16331, 7.24423, 6.86693, 6.07535, 6.59715, 6.77992, 6.2634, 6.85646, 6.8426800000000005, 6.893660000000001, 6.43775, 6.16331, 6.694560000000001, 6.6783399999999995, 6.72743, 7.346010000000001, 6.551080000000001, 7.0255399999999995, 7.226210000000001, 6.05209, 5.95584, 6.8966899999999995, 6.8426800000000005, 6.9177100000000005, 5.940169999999999, 7.17012, 7.04752, 6.50429, 6.95655, 6.8533, 6.58617, 6.68461, 6.84055, 5.99146, 6.10925, 6.73102, 6.802389999999999, 6.697030000000001, 7.01392, 7.24423, 6.354369999999999, 6.9622399999999995, 6.593039999999999, 6.802389999999999, 6.58893, 6.13123, 6.99485, 6.58617, 7.59287, 6.551080000000001, 5.78383, 6.2634, 6.90575, 7.09008, 6.795710000000001, 6.12249, 6.907760000000001, 6.77992, 6.8966899999999995, 6.07993, 7.2998, 6.9256, 6.802389999999999, 6.9966800000000005, 6.68461, 5.70378, 7.43838, 6.8977, 7.40914, 6.68461, 7.6009, 6.4677, 6.802389999999999, 6.79122, 7.71869, 5.52146, 7.401839999999999, 7.313219999999999, 6.82437, 6.29157, 7.2998, 5.83188, 6.95655, 6.07993, 6.6592899999999995, 7.43838, 6.1181, 6.90575, 6.899719999999999, 5.70378, 6.39693, 5.70378, 7.1309, 6.551080000000001, 6.621410000000001, 6.802389999999999, 6.30992, 6.7226300000000005, 6.72743, 7.24423, 6.62936, 6.90575, 6.08904, 6.802389999999999, 5.99146, 6.2146099999999995, 5.8260000000000005, 6.60394, 6.72623, 6.2146099999999995, 7.1507, 6.55962, 6.7334, 6.802389999999999, 6.68461, 6.787839999999999, 7.1107, 6.593039999999999, 6.30992, 6.83518, 6.967910000000001, 6.68461, 6.90575, 6.23637, 5.78383, 7.027310000000001, 5.84644, 6.2146099999999995, 7.195189999999999, 6.51915, 7.00307, 6.72743, 7.251339999999999, 7.2717, 7.2998, 6.354369999999999, 6.01616, 6.48158, 6.97261, 6.19032, 7.313219999999999, 7.09008, 6.35957, 6.51471, 6.39693, 6.13123, 6.0822199999999995, 6.907760000000001, 6.58617, 6.90575, 6.2146099999999995, 7.1309, 6.2634, 6.84055 ], "y0": "male&no&yes" }, { "fillcolor": "hsla(287, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(287, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.4, "legendgroup": "male&yes&no", "line": { "color": "hsla(287, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(287, 70%, 70%,1)", "line": { "color": "hsla(287, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "triangle-up" }, "meanline": { "color": "hsla(287, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage male&yes&no", "orientation": "h", "pointpos": 0, "points": false, "scalegroup": "male&yes&no", "scalemode": "count", "showlegend": true, "side": "both", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.99942, 5.99146, 7.09008, 5.61677, 7.02643, 6.95845, 7.06902, 6.04025, 6.30079, 7.068169999999999, 6.07535, 6.882439999999999, 6.47697, 6.57925, 7.1309, 6.907760000000001, 6.94505, 6.9546399999999995, 6.593039999999999, 6.5439099999999994, 6.51471, 6.30992, 6.46925, 6.85646, 5.94803, 6.88857, 6.66696, 6.30992, 6.787839999999999, 6.802389999999999, 6.16331, 5.94803, 6.43775, 7.282760000000001, 6.813439999999999, 6.694560000000001, 6.29157, 6.16331, 6.88755, 6.95655, 6.90575, 6.461469999999999, 6.60665, 6.745239999999999, 6.551080000000001, 6.663130000000001, 6.16121, 6.19236, 6.2146099999999995, 6.58617, 6.23832, 6.27476, 6.54965, 5.70378, 6.12249, 6.206580000000001, 5.99146, 6.10925, 6.317159999999999, 6.2146099999999995, 6.25575, 5.8999, 6.90575, 6.1070199999999994, 6.85646, 6.44572, 6.551080000000001, 5.99645, 6.802389999999999, 6.2146099999999995, 6.6592899999999995, 7.0076, 6.30992, 6.24611, 6.60665, 7.75148, 6.62407, 6.2146099999999995, 7.1309, 5.96615, 7.041410000000001, 6.551080000000001, 6.966019999999999, 7.17012, 7.04752, 6.5467900000000006, 6.39693, 6.88755, 6.39693, 6.36647, 6.15273, 5.52146, 6.05209, 6.54535, 6.39693, 6.745239999999999, 6.907760000000001, 7.226210000000001, 6.10925, 6.70073, 6.9256, 7.06987, 6.694560000000001, 6.715380000000001, 6.62007, 6.57647, 5.89715, 6.556780000000001, 6.7093, 6.93925, 7.00307, 6.05209, 6.4552, 6.77422, 5.9269300000000005, 6.317159999999999, 6.62007, 5.5606800000000005, 6.2634, 6.17379, 7.04752, 6.912739999999999, 6.90575, 6.62007, 6.45362, 6.10925, 6.67203, 7.34278, 6.90575, 6.91075, 7.441319999999999, 6.36475, 7.475910000000001, 6.56948, 7.064760000000001, 7.26193, 6.715380000000001, 5.8579300000000005, 7.04752, 6.61338, 7.57558, 6.83518, 6.90575, 6.39693, 6.34739, 6.58064, 6.10925, 6.715380000000001, 6.62007, 7.1309, 5.99146, 6.65286, 6.16331, 7.1309, 7.1333, 6.04025, 6.86901, 6.1203, 6.95655, 6.39693, 7.07918, 5.8579300000000005, 6.39693, 6.708080000000001, 6.882439999999999, 6.703189999999999, 7.03615, 7.37776, 5.66988, 6.752269999999999, 6.48158, 5.9269300000000005, 8.05516, 6.403569999999999, 6.035480000000001, 6.05209, 6.33683, 6.51175, 5.7365699999999995, 6.802389999999999, 6.68835, 5.8260000000000005, 6.95655, 6.3716099999999996, 6.8977, 6.85646, 6.54965, 6.05209, 6.697030000000001, 6.68461, 7.24423, 6.36819, 6.62007, 6.745239999999999, 6.19236, 6.39693, 6.7334, 5.98896, 6.5903, 7.15305, 6.19236, 6.43615, 6.6871100000000006, 6.06379, 6.93537, 6.802389999999999, 6.47697, 7.79028, 6.10032, 6.0282800000000005, 7.408530000000001, 6.6174, 5.99146, 6.00141, 6.42972, 6.18826, 6.5467900000000006, 6.7334, 6.66185, 6.95655, 6.49224, 5.82895, 6.43775, 6.03787, 6.3952599999999995, 6.22654, 7.144410000000001, 6.90575, 5.70378, 6.5903, 6.41182, 6.7334, 6.20456, 7.084230000000001, 7.00307, 6.35089, 6.984719999999999, 6.39693, 6.19848, 6.745239999999999, 6.745239999999999, 6.18415, 5.82895, 6.58617, 7.313219999999999, 6.41836, 6.983789999999999, 6.90575, 6.646389999999999, 6.84055, 6.37502, 6.10925, 6.18415, 6.43775, 7.1107, 6.44572, 6.818919999999999, 6.58617, 6.96508, 6.44572, 6.7093, 7.1082399999999994, 7.135689999999999, 6.49072, 5.99146, 6.68461, 6.39693, 6.85751, 6.08677, 6.17587, 6.30992, 6.36303, 6.47697, 6.72743, 6.62407, 5.9814099999999994, 7.06902, 6.39693, 6.57786, 6.65286, 6.293419999999999, 5.87493, 6.30992, 6.2146099999999995, 6.10925, 6.815639999999999, 6.65028, 6.802389999999999, 5.45959, 6.05209, 5.8579300000000005, 7.2957399999999994, 5.84354, 6.2634, 7.21891, 6.45677, 5.97126, 6.23048, 6.15273, 6.3716099999999996, 6.378430000000001, 6.48004, 7.00307, 6.8200199999999995, 6.47697, 6.2146099999999995, 6.802389999999999, 7.09008, 6.77992, 7.475339999999999, 5.72031, 6.85646, 6.2634, 6.92166, 6.253830000000001, 6.745239999999999, 6.893660000000001, 6.53669, 6.43615, 6.1334, 5.99146, 6.966019999999999, 6.62007, 7.334980000000001, 6.83518, 6.68461, 6.0282800000000005, 6.30992, 6.23245, 6.31536, 6.52942, 6.14204, 6.88755, 5.99146, 6.907760000000001, 6.75926, 6.3315, 6.5439099999999994, 6.1717, 6.77422, 5.70378, 7.6009, 6.90575, 7.46737, 6.694560000000001, 6.984719999999999, 5.99146, 5.96101, 6.62007, 6.795710000000001, 7.212289999999999, 6.05209, 6.93925, 6.8773, 6.354369999999999, 6.50429, 6.58617, 6.51471, 6.06611, 6.68461, 7.20786, 5.99645, 6.40523, 7.01571, 6.54822, 6.14204, 5.93225, 7.313219999999999, 6.697030000000001, 6.79794, 6.2634, 6.64118, 5.90263, 6.17794, 6.96035, 6.35957, 6.829789999999999, 6.10925, 6.85646, 6.58617, 7.23778, 6.66568, 6.21261, 6.57925, 6.802389999999999, 6.88755, 6.43775, 7.17778, 6.57647, 6.85646, 6.62007, 6.56526, 6.9613, 6.28227, 6.52209, 5.99146, 5.99146, 6.59987, 7.14913, 5.99146, 6.62007, 6.56526, 6.94698, 5.96615, 6.41673, 6.29157, 7.00307, 6.1944099999999995, 7.09008, 6.47697, 6.60665, 6.424869999999999, 6.13773, 6.2804, 6.6592899999999995, 6.77422, 6.86693, 6.42972, 7.0579, 7.05099, 6.10925, 6.6567300000000005, 6.3243599999999995, 6.907760000000001, 7.64969, 6.745239999999999, 5.99146, 5.4161, 6.02102, 6.47697, 6.95655, 6.551080000000001, 6.90575, 6.9196800000000005, 6.51471, 6.90575, 6.802389999999999, 6.48464, 6.82763, 7.014810000000001, 7.20786, 6.829789999999999, 7.1929300000000005, 6.33328, 5.84354, 6.97635, 6.2653, 7.0884100000000005, 6.19644, 6.39693, 5.9814099999999994, 6.90575, 6.6958, 6.68461, 6.9828600000000005, 6.30992, 6.44572, 7.11233, 6.68461, 6.8254600000000005, 6.33328, 6.15698, 6.30262, 6.253830000000001, 6.95655, 6.633319999999999, 6.2634, 6.6174, 7.43838, 6.45047, 6.9707300000000005, 6.3952599999999995, 7.09008, 7.06902, 7.22766, 6.2672, 6.50279, 6.2146099999999995, 6.44572, 7.408530000000001, 7.09008, 6.614730000000001, 6.17379, 7.03615, 6.17794, 6.30992, 6.39693, 6.715380000000001, 6.58617, 5.59842, 6.745239999999999, 6.59715, 6.00389, 6.85646, 7.04752, 6.23441, 6.563860000000001, 6.2634, 6.3243599999999995, 6.6796, 6.10925, 6.17379, 7.06987, 6.87626, 6.505780000000001, 6.745239999999999, 7.1309, 6.40192, 6.70073, 6.56808, 7.0775, 6.6796, 6.85751, 7.08171, 6.85646, 6.47697, 7.46737, 6.27099, 6.34564, 6.52209, 6.68461, 6.90575, 6.86171, 6.551080000000001, 5.5797300000000005, 5.9269300000000005, 6.4677, 6.748760000000001, 7.43838, 6.42162, 6.52209, 5.52146, 7.00307, 6.907760000000001, 6.41017, 6.62007, 5.9269300000000005, 6.17379, 6.31355, 6.47697, 6.69332, 6.7511, 7.09008, 7.728860000000001, 6.907760000000001, 5.65249, 6.99942, 7.200419999999999, 7.1309, 6.19848, 6.62007, 7.313219999999999, 6.907760000000001, 6.90575, 5.82895, 6.2146099999999995, 6.34564, 6.3699, 6.6567300000000005, 6.47697, 6.551080000000001, 6.66568, 6.57925, 6.86693, 6.88346, 6.53669, 6.3207699999999996, 7.696210000000001, 6.95655, 6.715380000000001, 6.44254, 6.61338, 6.23245, 6.813439999999999, 6.551080000000001, 6.79122, 6.54103, 6.24222, 6.68461, 6.05209, 5.9814099999999994, 6.44254, 7.198180000000001, 6.85646, 6.76273, 6.47697, 6.32615, 6.551080000000001, 7.0884100000000005, 6.21661, 6.3081, 6.39693, 6.62007, 6.90575, 6.70441, 6.29157, 6.18826, 6.83518, 6.36647, 6.47697, 7.54697, 6.60665, 6.68461, 7.408530000000001, 7.2724, 5.7462, 6.551080000000001, 6.58064, 6.17379, 6.62007, 6.34564, 6.65028, 6.10032, 7.266830000000001, 6.551080000000001, 6.49224, 6.68461, 6.66441, 6.41182, 6.43775, 6.43775, 5.99146, 7.522939999999999, 6.16331, 6.44572, 6.3243599999999995, 6.802389999999999, 6.4151, 6.2146099999999995, 6.10925, 6.39693, 7.10003, 7.173960000000001, 6.56526, 6.61338, 6.85646, 6.47389, 6.10925, 6.99118, 7.1592899999999995, 6.59987, 6.716589999999999, 7.46737, 6.58617, 6.95655, 6.29157, 6.907760000000001, 6.85646, 6.15698, 7.6009, 6.17379, 6.15273, 6.62007, 6.68461, 5.78383, 6.3716099999999996, 7.86327, 6.53233, 6.58617, 6.43935, 7.044910000000001, 6.715380000000001, 6.42972, 6.2106, 6.708080000000001, 6.907760000000001, 6.16331, 6.2441699999999996, 6.74406, 5.72031, 7.54961, 5.82895, 5.8999, 6.2146099999999995, 6.62007, 5.8861, 6.49224, 6.35611, 7.1309, 7.393260000000001, 6.834110000000001, 6.16542, 6.90575, 6.66568, 6.813439999999999, 6.43615, 7.0255399999999995, 6.354369999999999, 6.90575, 6.77422, 6.816739999999999, 6.745239999999999, 6.551080000000001, 6.22654, 6.06146, 6.58617, 6.77422, 6.2146099999999995, 6.77422, 6.99485, 6.45047, 6.556780000000001, 6.77422, 6.1136800000000004, 6.32794, 5.6801699999999995, 6.802389999999999, 6.715380000000001, 6.95655, 6.23048, 6.4892, 6.697030000000001, 6.08677, 5.70378, 6.715380000000001, 6.2146099999999995, 7.313219999999999, 6.3699, 6.59987, 6.51026, 6.58617, 6.8977, 5.9135, 6.17379, 6.2146099999999995, 6.507280000000001, 5.82895, 7.034389999999999, 6.17794, 6.68461, 7.495539999999999, 6.68461, 6.6745600000000005, 6.714169999999999, 7.00307, 6.43455, 7.10988, 7.24423, 6.39693, 6.33328, 6.33328, 6.551080000000001, 6.9256, 6.551080000000001, 7.06561, 6.57925, 6.73102, 6.424869999999999, 6.2146099999999995, 6.9613, 6.78672, 6.602589999999999, 6.59987, 6.38012, 6.95655, 5.76832, 7.2100800000000005, 6.507280000000001, 6.45362, 6.2691, 6.2146099999999995, 6.3403599999999996, 6.72623, 6.7569300000000005, 5.9839400000000005, 6.62007, 6.2653, 6.7334, 6.95655, 6.56526, 6.88755, 6.52209, 6.69084, 6.6567300000000005, 6.22654, 6.43775, 5.76832, 5.89715, 6.43775, 6.768489999999999, 6.354369999999999, 6.570880000000001, 7.09008, 6.49072, 6.05209, 6.907760000000001, 6.785589999999999, 6.05209, 6.697030000000001, 6.814539999999999, 6.77194, 6.551080000000001, 6.802389999999999, 6.57228, 6.2441699999999996, 6.38012, 5.4161, 6.385190000000001, 6.16331, 7.0483899999999995, 6.598510000000001, 6.48768, 6.23245, 7.183110000000001, 6.33328, 6.10925, 6.30992, 6.49979, 6.802389999999999, 7.16858, 6.58617, 7.20564, 6.852239999999999, 6.70564, 6.11147, 5.8579300000000005, 7.00307, 6.93342, 6.61607, 6.056780000000001, 6.6120399999999995, 6.63726, 7.1309, 6.55393, 6.907760000000001, 6.05912, 6.54535, 7.00307, 6.51471, 6.66823, 6.253830000000001, 7.2724, 6.907760000000001, 6.3315, 6.09582, 6.07535, 6.907760000000001, 6.7511, 6.67203, 6.563860000000001, 7.06048, 7.0282, 6.47235, 6.56244, 6.6592899999999995, 6.92658, 6.4892, 6.28227, 7.06902, 7.1309, 5.68698, 6.753439999999999, 6.52209, 6.52209, 7.362010000000001, 6.8200199999999995, 6.11147, 6.551080000000001, 5.86079, 6.9256, 6.10925, 7.09008, 5.70378, 6.84588, 6.30992, 7.1309, 6.69084, 6.70564, 5.7462, 6.16752, 6.24222, 7.03527, 6.59715, 6.33328, 7.04752, 6.6346300000000005, 6.41836, 6.54103, 7.57558, 6.20456, 6.51471, 5.7462, 6.39693, 7.084230000000001, 7.00307, 6.77422, 6.43294, 6.88857, 6.05912, 6.68461, 6.6592899999999995, 6.507280000000001, 6.90575, 6.2146099999999995, 5.76832, 6.2146099999999995, 5.5797300000000005, 6.51323, 7.17012, 6.768489999999999, 6.5582, 6.4892, 7.676010000000001, 6.715380000000001, 6.3935900000000006, 6.86171, 6.6783399999999995, 6.77422, 6.44572, 7.17012, 7.00307, 6.126869999999999, 6.50129, 6.8773, 6.56526, 6.354369999999999, 6.575080000000001, 6.62007, 6.42811, 6.829789999999999, 6.2146099999999995, 6.2146099999999995, 6.68461, 7.1293, 5.43808, 6.5467900000000006, 6.424869999999999, 6.49979, 6.7901, 6.4488900000000005, 6.614730000000001, 6.60665, 6.93245, 6.09807, 6.8977, 6.35784, 6.37502, 6.57925, 7.7021, 6.36303, 5.82895, 6.59715, 6.4677, 7.1309, 7.82084, 6.39693, 7.10988, 6.563860000000001, 7.196689999999999, 5.99146, 6.74052, 6.67203, 6.6107, 5.70378, 6.2146099999999995, 6.813439999999999, 6.50279, 5.7589, 7.18917, 6.93245, 6.802389999999999, 6.90575, 6.62007, 6.41999, 5.52146, 7.43838, 7.0255399999999995, 7.903969999999999, 6.745239999999999, 7.04752, 6.701960000000001, 6.8426800000000005, 6.3207699999999996, 6.24611, 6.30992, 6.44095, 6.30992, 6.47389, 5.8861, 6.802389999999999, 6.68461, 6.8977, 6.05912, 6.643789999999999, 6.25767, 7.81883, 6.33328, 6.77422, 6.920669999999999, 7.195189999999999, 6.62007, 6.745239999999999, 7.0396600000000005, 6.30992, 7.17012, 6.18415, 6.68461, 6.10925, 6.5903, 5.9839400000000005, 6.66568, 5.61677, 6.10925, 6.311730000000001, 6.29157, 6.86171, 6.5467900000000006, 6.802389999999999, 7.6009, 6.5820300000000005, 5.6733199999999995, 6.44572, 6.583410000000001, 6.91672, 7.027310000000001, 6.551080000000001, 6.71174, 6.74288, 7.0934, 6.83087, 6.79122, 6.67203, 6.55393, 7.0255399999999995, 6.907760000000001, 6.556780000000001, 6.966019999999999, 6.95273, 6.43133, 6.68461, 6.64898, 6.2146099999999995, 6.66058, 7.016610000000001, 6.85646, 5.66988, 6.53379, 5.99146, 7.21891, 6.745239999999999, 6.975410000000001, 6.719010000000001, 6.90575, 6.551080000000001, 5.66988, 6.3935900000000006, 6.807930000000001, 6.802389999999999, 6.4599, 6.18208, 6.47697, 6.84588, 6.59578, 6.715380000000001, 6.6346300000000005, 6.52649, 6.36475, 5.7462, 6.77422, 6.10925, 7.17012, 6.03787, 6.11589, 5.96615, 6.17794, 6.3935900000000006, 5.95324, 7.495539999999999, 6.21261, 6.802389999999999, 5.82305, 7.17012, 5.59842, 6.9594, 6.01616, 6.74052, 6.66568, 6.85646, 6.44572, 5.99146, 5.59842, 6.56526, 6.30262, 6.38351, 5.45959, 6.06843, 6.1203, 5.7651900000000005, 6.938280000000001, 6.41346, 6.882439999999999, 6.5439099999999994, 7.135689999999999, 6.63595, 7.1309, 5.78383, 6.39693, 6.3699, 6.770789999999999, 6.02345, 6.13123, 6.799060000000001, 6.49527, 6.57925, 6.697030000000001, 6.703189999999999, 6.65286, 6.2146099999999995, 7.014810000000001, 6.58617, 5.96615, 6.52942, 7.09008, 5.8141300000000005, 6.769639999999999, 7.064760000000001, 6.51175, 6.57228, 6.551080000000001, 7.67322, 6.57925, 6.43294, 6.95655, 6.10925, 6.3243599999999995, 6.993930000000001, 6.6567300000000005, 6.907760000000001, 6.07993, 6.72743, 7.0103100000000005, 6.7334, 7.495539999999999, 6.24028, 7.00307, 7.495539999999999, 6.461469999999999, 6.05209, 6.28413, 6.126869999999999, 6.39693, 6.47697, 6.05209, 7.09008, 6.721430000000001, 6.813439999999999, 6.9575, 6.461469999999999, 6.78333, 6.74993, 6.16331, 6.802389999999999, 6.272880000000001, 6.2146099999999995, 6.43615, 6.6871100000000006, 6.51767, 6.907760000000001, 6.67203, 6.8956800000000005, 6.56948, 6.33328, 6.9707300000000005, 8.00637, 6.57786, 6.92363, 6.57368, 6.2146099999999995, 7.37776, 6.14633, 6.05209, 6.44254, 6.4599, 6.60394, 6.975410000000001, 7.36645, 6.67708, 7.09008, 6.58617, 6.43615, 6.3952599999999995, 6.42162, 6.30992, 6.720219999999999, 5.98896, 7.620710000000001, 6.48768, 6.41182, 7.525639999999999, 6.984719999999999, 6.937310000000001, 7.0775, 6.907760000000001, 6.01127, 6.802389999999999, 6.633319999999999, 6.2480400000000005, 6.31355, 7.35819, 6.49677, 6.47697, 6.745239999999999, 6.354369999999999, 6.10925, 6.95655, 7.02465, 6.49224, 5.8861, 5.9839400000000005, 5.84354, 7.00307, 6.35611, 6.17379, 6.39693, 6.83518, 5.99146, 6.62007, 6.633319999999999, 6.77308, 7.1107, 6.95655, 6.995769999999999, 6.594410000000001, 6.5439099999999994, 6.937310000000001, 6.23441, 6.25767, 6.68461, 6.2146099999999995, 6.44413, 6.10925, 6.40523, 6.2146099999999995, 6.17379, 6.30992, 6.9226399999999995, 5.72359, 5.940169999999999, 6.9147300000000005, 5.78996, 6.907760000000001, 6.51471, 6.85646, 6.30992, 6.311730000000001, 6.49224, 6.944089999999999, 6.83518, 6.222580000000001, 6.80128, 6.07993 ], "y0": "male&yes&no" }, { "box": { "visible": false }, "fillcolor": "rgba(0, 0, 0, 0)", "hoverinfo": "x", "hoveron": "points", "jitter": 0.4, "legendgroup": "male&yes&no", "line": { "color": "rgba(0, 0, 0, 0)", "width": 0 }, "marker": { "color": "hsla(287, 70%, 70%,1)", "line": { "color": "hsla(287, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "triangle-up" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "all", "scalegroup": "male&yes&no", "showlegend": false, "side": "both", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.99942, 5.99146, 7.09008, 5.61677, 7.02643, 6.95845, 7.06902, 6.04025, 6.30079, 7.068169999999999, 6.07535, 6.882439999999999, 6.47697, 6.57925, 7.1309, 6.907760000000001, 6.94505, 6.9546399999999995, 6.593039999999999, 6.5439099999999994, 6.51471, 6.30992, 6.46925, 6.85646, 5.94803, 6.88857, 6.66696, 6.30992, 6.787839999999999, 6.802389999999999, 6.16331, 5.94803, 6.43775, 7.282760000000001, 6.813439999999999, 6.694560000000001, 6.29157, 6.16331, 6.88755, 6.95655, 6.90575, 6.461469999999999, 6.60665, 6.745239999999999, 6.551080000000001, 6.663130000000001, 6.16121, 6.19236, 6.2146099999999995, 6.58617, 6.23832, 6.27476, 6.54965, 5.70378, 6.12249, 6.206580000000001, 5.99146, 6.10925, 6.317159999999999, 6.2146099999999995, 6.25575, 5.8999, 6.90575, 6.1070199999999994, 6.85646, 6.44572, 6.551080000000001, 5.99645, 6.802389999999999, 6.2146099999999995, 6.6592899999999995, 7.0076, 6.30992, 6.24611, 6.60665, 7.75148, 6.62407, 6.2146099999999995, 7.1309, 5.96615, 7.041410000000001, 6.551080000000001, 6.966019999999999, 7.17012, 7.04752, 6.5467900000000006, 6.39693, 6.88755, 6.39693, 6.36647, 6.15273, 5.52146, 6.05209, 6.54535, 6.39693, 6.745239999999999, 6.907760000000001, 7.226210000000001, 6.10925, 6.70073, 6.9256, 7.06987, 6.694560000000001, 6.715380000000001, 6.62007, 6.57647, 5.89715, 6.556780000000001, 6.7093, 6.93925, 7.00307, 6.05209, 6.4552, 6.77422, 5.9269300000000005, 6.317159999999999, 6.62007, 5.5606800000000005, 6.2634, 6.17379, 7.04752, 6.912739999999999, 6.90575, 6.62007, 6.45362, 6.10925, 6.67203, 7.34278, 6.90575, 6.91075, 7.441319999999999, 6.36475, 7.475910000000001, 6.56948, 7.064760000000001, 7.26193, 6.715380000000001, 5.8579300000000005, 7.04752, 6.61338, 7.57558, 6.83518, 6.90575, 6.39693, 6.34739, 6.58064, 6.10925, 6.715380000000001, 6.62007, 7.1309, 5.99146, 6.65286, 6.16331, 7.1309, 7.1333, 6.04025, 6.86901, 6.1203, 6.95655, 6.39693, 7.07918, 5.8579300000000005, 6.39693, 6.708080000000001, 6.882439999999999, 6.703189999999999, 7.03615, 7.37776, 5.66988, 6.752269999999999, 6.48158, 5.9269300000000005, 8.05516, 6.403569999999999, 6.035480000000001, 6.05209, 6.33683, 6.51175, 5.7365699999999995, 6.802389999999999, 6.68835, 5.8260000000000005, 6.95655, 6.3716099999999996, 6.8977, 6.85646, 6.54965, 6.05209, 6.697030000000001, 6.68461, 7.24423, 6.36819, 6.62007, 6.745239999999999, 6.19236, 6.39693, 6.7334, 5.98896, 6.5903, 7.15305, 6.19236, 6.43615, 6.6871100000000006, 6.06379, 6.93537, 6.802389999999999, 6.47697, 7.79028, 6.10032, 6.0282800000000005, 7.408530000000001, 6.6174, 5.99146, 6.00141, 6.42972, 6.18826, 6.5467900000000006, 6.7334, 6.66185, 6.95655, 6.49224, 5.82895, 6.43775, 6.03787, 6.3952599999999995, 6.22654, 7.144410000000001, 6.90575, 5.70378, 6.5903, 6.41182, 6.7334, 6.20456, 7.084230000000001, 7.00307, 6.35089, 6.984719999999999, 6.39693, 6.19848, 6.745239999999999, 6.745239999999999, 6.18415, 5.82895, 6.58617, 7.313219999999999, 6.41836, 6.983789999999999, 6.90575, 6.646389999999999, 6.84055, 6.37502, 6.10925, 6.18415, 6.43775, 7.1107, 6.44572, 6.818919999999999, 6.58617, 6.96508, 6.44572, 6.7093, 7.1082399999999994, 7.135689999999999, 6.49072, 5.99146, 6.68461, 6.39693, 6.85751, 6.08677, 6.17587, 6.30992, 6.36303, 6.47697, 6.72743, 6.62407, 5.9814099999999994, 7.06902, 6.39693, 6.57786, 6.65286, 6.293419999999999, 5.87493, 6.30992, 6.2146099999999995, 6.10925, 6.815639999999999, 6.65028, 6.802389999999999, 5.45959, 6.05209, 5.8579300000000005, 7.2957399999999994, 5.84354, 6.2634, 7.21891, 6.45677, 5.97126, 6.23048, 6.15273, 6.3716099999999996 ], "y0": "male&yes&no" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(287, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(287, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "male&yes&no", "line": { "width": 0 }, "marker": { "color": "hsla(287, 50%, 50%,0.9)", "line": { "color": "hsla(287, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "triangle-up" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "male&yes&no", "showlegend": false, "side": "both", "span": [ 6.552805211037719, 6.598807251148748 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 6.99942, 5.99146, 7.09008, 5.61677, 7.02643, 6.95845, 7.06902, 6.04025, 6.30079, 7.068169999999999, 6.07535, 6.882439999999999, 6.47697, 6.57925, 7.1309, 6.907760000000001, 6.94505, 6.9546399999999995, 6.593039999999999, 6.5439099999999994, 6.51471, 6.30992, 6.46925, 6.85646, 5.94803, 6.88857, 6.66696, 6.30992, 6.787839999999999, 6.802389999999999, 6.16331, 5.94803, 6.43775, 7.282760000000001, 6.813439999999999, 6.694560000000001, 6.29157, 6.16331, 6.88755, 6.95655, 6.90575, 6.461469999999999, 6.60665, 6.745239999999999, 6.551080000000001, 6.663130000000001, 6.16121, 6.19236, 6.2146099999999995, 6.58617, 6.23832, 6.27476, 6.54965, 5.70378, 6.12249, 6.206580000000001, 5.99146, 6.10925, 6.317159999999999, 6.2146099999999995, 6.25575, 5.8999, 6.90575, 6.1070199999999994, 6.85646, 6.44572, 6.551080000000001, 5.99645, 6.802389999999999, 6.2146099999999995, 6.6592899999999995, 7.0076, 6.30992, 6.24611, 6.60665, 7.75148, 6.62407, 6.2146099999999995, 7.1309, 5.96615, 7.041410000000001, 6.551080000000001, 6.966019999999999, 7.17012, 7.04752, 6.5467900000000006, 6.39693, 6.88755, 6.39693, 6.36647, 6.15273, 5.52146, 6.05209, 6.54535, 6.39693, 6.745239999999999, 6.907760000000001, 7.226210000000001, 6.10925, 6.70073, 6.9256, 7.06987, 6.694560000000001, 6.715380000000001, 6.62007, 6.57647, 5.89715, 6.556780000000001, 6.7093, 6.93925, 7.00307, 6.05209, 6.4552, 6.77422, 5.9269300000000005, 6.317159999999999, 6.62007, 5.5606800000000005, 6.2634, 6.17379, 7.04752, 6.912739999999999, 6.90575, 6.62007, 6.45362, 6.10925, 6.67203, 7.34278, 6.90575, 6.91075, 7.441319999999999, 6.36475, 7.475910000000001, 6.56948, 7.064760000000001, 7.26193, 6.715380000000001, 5.8579300000000005, 7.04752, 6.61338, 7.57558, 6.83518, 6.90575, 6.39693, 6.34739, 6.58064, 6.10925, 6.715380000000001, 6.62007, 7.1309, 5.99146, 6.65286, 6.16331, 7.1309, 7.1333, 6.04025, 6.86901, 6.1203, 6.95655, 6.39693, 7.07918, 5.8579300000000005, 6.39693, 6.708080000000001, 6.882439999999999, 6.703189999999999, 7.03615, 7.37776, 5.66988, 6.752269999999999, 6.48158, 5.9269300000000005, 8.05516, 6.403569999999999, 6.035480000000001, 6.05209, 6.33683, 6.51175, 5.7365699999999995, 6.802389999999999, 6.68835, 5.8260000000000005, 6.95655, 6.3716099999999996, 6.8977, 6.85646, 6.54965, 6.05209, 6.697030000000001, 6.68461, 7.24423, 6.36819, 6.62007, 6.745239999999999, 6.19236, 6.39693, 6.7334, 5.98896, 6.5903, 7.15305, 6.19236, 6.43615, 6.6871100000000006, 6.06379, 6.93537, 6.802389999999999, 6.47697, 7.79028, 6.10032, 6.0282800000000005, 7.408530000000001, 6.6174, 5.99146, 6.00141, 6.42972, 6.18826, 6.5467900000000006, 6.7334, 6.66185, 6.95655, 6.49224, 5.82895, 6.43775, 6.03787, 6.3952599999999995, 6.22654, 7.144410000000001, 6.90575, 5.70378, 6.5903, 6.41182, 6.7334, 6.20456, 7.084230000000001, 7.00307, 6.35089, 6.984719999999999, 6.39693, 6.19848, 6.745239999999999, 6.745239999999999, 6.18415, 5.82895, 6.58617, 7.313219999999999, 6.41836, 6.983789999999999, 6.90575, 6.646389999999999, 6.84055, 6.37502, 6.10925, 6.18415, 6.43775, 7.1107, 6.44572, 6.818919999999999, 6.58617, 6.96508, 6.44572, 6.7093, 7.1082399999999994, 7.135689999999999, 6.49072, 5.99146, 6.68461, 6.39693, 6.85751, 6.08677, 6.17587, 6.30992, 6.36303, 6.47697, 6.72743, 6.62407, 5.9814099999999994, 7.06902, 6.39693, 6.57786, 6.65286, 6.293419999999999, 5.87493, 6.30992, 6.2146099999999995, 6.10925, 6.815639999999999, 6.65028, 6.802389999999999, 5.45959, 6.05209, 5.8579300000000005, 7.2957399999999994, 5.84354, 6.2634, 7.21891, 6.45677, 5.97126, 6.23048, 6.15273, 6.3716099999999996, 6.378430000000001, 6.48004, 7.00307, 6.8200199999999995, 6.47697, 6.2146099999999995, 6.802389999999999, 7.09008, 6.77992, 7.475339999999999, 5.72031, 6.85646, 6.2634, 6.92166, 6.253830000000001, 6.745239999999999, 6.893660000000001, 6.53669, 6.43615, 6.1334, 5.99146, 6.966019999999999, 6.62007, 7.334980000000001, 6.83518, 6.68461, 6.0282800000000005, 6.30992, 6.23245, 6.31536, 6.52942, 6.14204, 6.88755, 5.99146, 6.907760000000001, 6.75926, 6.3315, 6.5439099999999994, 6.1717, 6.77422, 5.70378, 7.6009, 6.90575, 7.46737, 6.694560000000001, 6.984719999999999, 5.99146, 5.96101, 6.62007, 6.795710000000001, 7.212289999999999, 6.05209, 6.93925, 6.8773, 6.354369999999999, 6.50429, 6.58617, 6.51471, 6.06611, 6.68461, 7.20786, 5.99645, 6.40523, 7.01571, 6.54822, 6.14204, 5.93225, 7.313219999999999, 6.697030000000001, 6.79794, 6.2634, 6.64118, 5.90263, 6.17794, 6.96035, 6.35957, 6.829789999999999, 6.10925, 6.85646, 6.58617, 7.23778, 6.66568, 6.21261, 6.57925, 6.802389999999999, 6.88755, 6.43775, 7.17778, 6.57647, 6.85646, 6.62007, 6.56526, 6.9613, 6.28227, 6.52209, 5.99146, 5.99146, 6.59987, 7.14913, 5.99146, 6.62007, 6.56526, 6.94698, 5.96615, 6.41673, 6.29157, 7.00307, 6.1944099999999995, 7.09008, 6.47697, 6.60665, 6.424869999999999, 6.13773, 6.2804, 6.6592899999999995, 6.77422, 6.86693, 6.42972, 7.0579, 7.05099, 6.10925, 6.6567300000000005, 6.3243599999999995, 6.907760000000001, 7.64969, 6.745239999999999, 5.99146, 5.4161, 6.02102, 6.47697, 6.95655, 6.551080000000001, 6.90575, 6.9196800000000005, 6.51471, 6.90575, 6.802389999999999, 6.48464, 6.82763, 7.014810000000001, 7.20786, 6.829789999999999, 7.1929300000000005, 6.33328, 5.84354, 6.97635, 6.2653, 7.0884100000000005, 6.19644, 6.39693, 5.9814099999999994, 6.90575, 6.6958, 6.68461, 6.9828600000000005, 6.30992, 6.44572, 7.11233, 6.68461, 6.8254600000000005, 6.33328, 6.15698, 6.30262, 6.253830000000001, 6.95655, 6.633319999999999, 6.2634, 6.6174, 7.43838, 6.45047, 6.9707300000000005, 6.3952599999999995, 7.09008, 7.06902, 7.22766, 6.2672, 6.50279, 6.2146099999999995, 6.44572, 7.408530000000001, 7.09008, 6.614730000000001, 6.17379, 7.03615, 6.17794, 6.30992, 6.39693, 6.715380000000001, 6.58617, 5.59842, 6.745239999999999, 6.59715, 6.00389, 6.85646, 7.04752, 6.23441, 6.563860000000001, 6.2634, 6.3243599999999995, 6.6796, 6.10925, 6.17379, 7.06987, 6.87626, 6.505780000000001, 6.745239999999999, 7.1309, 6.40192, 6.70073, 6.56808, 7.0775, 6.6796, 6.85751, 7.08171, 6.85646, 6.47697, 7.46737, 6.27099, 6.34564, 6.52209, 6.68461, 6.90575, 6.86171, 6.551080000000001, 5.5797300000000005, 5.9269300000000005, 6.4677, 6.748760000000001, 7.43838, 6.42162, 6.52209, 5.52146, 7.00307, 6.907760000000001, 6.41017, 6.62007, 5.9269300000000005, 6.17379, 6.31355, 6.47697, 6.69332, 6.7511, 7.09008, 7.728860000000001, 6.907760000000001, 5.65249, 6.99942, 7.200419999999999, 7.1309, 6.19848, 6.62007, 7.313219999999999, 6.907760000000001, 6.90575, 5.82895, 6.2146099999999995, 6.34564, 6.3699, 6.6567300000000005, 6.47697, 6.551080000000001, 6.66568, 6.57925, 6.86693, 6.88346, 6.53669, 6.3207699999999996, 7.696210000000001, 6.95655, 6.715380000000001, 6.44254, 6.61338, 6.23245, 6.813439999999999, 6.551080000000001, 6.79122, 6.54103, 6.24222, 6.68461, 6.05209, 5.9814099999999994, 6.44254, 7.198180000000001, 6.85646, 6.76273, 6.47697, 6.32615, 6.551080000000001, 7.0884100000000005, 6.21661, 6.3081, 6.39693, 6.62007, 6.90575, 6.70441, 6.29157, 6.18826, 6.83518, 6.36647, 6.47697, 7.54697, 6.60665, 6.68461, 7.408530000000001, 7.2724, 5.7462, 6.551080000000001, 6.58064, 6.17379, 6.62007, 6.34564, 6.65028, 6.10032, 7.266830000000001, 6.551080000000001, 6.49224, 6.68461, 6.66441, 6.41182, 6.43775, 6.43775, 5.99146, 7.522939999999999, 6.16331, 6.44572, 6.3243599999999995, 6.802389999999999, 6.4151, 6.2146099999999995, 6.10925, 6.39693, 7.10003, 7.173960000000001, 6.56526, 6.61338, 6.85646, 6.47389, 6.10925, 6.99118, 7.1592899999999995, 6.59987, 6.716589999999999, 7.46737, 6.58617, 6.95655, 6.29157, 6.907760000000001, 6.85646, 6.15698, 7.6009, 6.17379, 6.15273, 6.62007, 6.68461, 5.78383, 6.3716099999999996, 7.86327, 6.53233, 6.58617, 6.43935, 7.044910000000001, 6.715380000000001, 6.42972, 6.2106, 6.708080000000001, 6.907760000000001, 6.16331, 6.2441699999999996, 6.74406, 5.72031, 7.54961, 5.82895, 5.8999, 6.2146099999999995, 6.62007, 5.8861, 6.49224, 6.35611, 7.1309, 7.393260000000001, 6.834110000000001, 6.16542, 6.90575, 6.66568, 6.813439999999999, 6.43615, 7.0255399999999995, 6.354369999999999, 6.90575, 6.77422, 6.816739999999999, 6.745239999999999, 6.551080000000001, 6.22654, 6.06146, 6.58617, 6.77422, 6.2146099999999995, 6.77422, 6.99485, 6.45047, 6.556780000000001, 6.77422, 6.1136800000000004, 6.32794, 5.6801699999999995, 6.802389999999999, 6.715380000000001, 6.95655, 6.23048, 6.4892, 6.697030000000001, 6.08677, 5.70378, 6.715380000000001, 6.2146099999999995, 7.313219999999999, 6.3699, 6.59987, 6.51026, 6.58617, 6.8977, 5.9135, 6.17379, 6.2146099999999995, 6.507280000000001, 5.82895, 7.034389999999999, 6.17794, 6.68461, 7.495539999999999, 6.68461, 6.6745600000000005, 6.714169999999999, 7.00307, 6.43455, 7.10988, 7.24423, 6.39693, 6.33328, 6.33328, 6.551080000000001, 6.9256, 6.551080000000001, 7.06561, 6.57925, 6.73102, 6.424869999999999, 6.2146099999999995, 6.9613, 6.78672, 6.602589999999999, 6.59987, 6.38012, 6.95655, 5.76832, 7.2100800000000005, 6.507280000000001, 6.45362, 6.2691, 6.2146099999999995, 6.3403599999999996, 6.72623, 6.7569300000000005, 5.9839400000000005, 6.62007, 6.2653, 6.7334, 6.95655, 6.56526, 6.88755, 6.52209, 6.69084, 6.6567300000000005, 6.22654, 6.43775, 5.76832, 5.89715, 6.43775, 6.768489999999999, 6.354369999999999, 6.570880000000001, 7.09008, 6.49072, 6.05209, 6.907760000000001, 6.785589999999999, 6.05209, 6.697030000000001, 6.814539999999999, 6.77194, 6.551080000000001, 6.802389999999999, 6.57228, 6.2441699999999996, 6.38012, 5.4161, 6.385190000000001, 6.16331, 7.0483899999999995, 6.598510000000001, 6.48768, 6.23245, 7.183110000000001, 6.33328, 6.10925, 6.30992, 6.49979, 6.802389999999999, 7.16858, 6.58617, 7.20564, 6.852239999999999, 6.70564, 6.11147, 5.8579300000000005, 7.00307, 6.93342, 6.61607, 6.056780000000001, 6.6120399999999995, 6.63726, 7.1309, 6.55393, 6.907760000000001, 6.05912, 6.54535, 7.00307, 6.51471, 6.66823, 6.253830000000001, 7.2724, 6.907760000000001, 6.3315, 6.09582, 6.07535, 6.907760000000001, 6.7511, 6.67203, 6.563860000000001, 7.06048, 7.0282, 6.47235, 6.56244, 6.6592899999999995, 6.92658, 6.4892, 6.28227, 7.06902, 7.1309, 5.68698, 6.753439999999999, 6.52209, 6.52209, 7.362010000000001, 6.8200199999999995, 6.11147, 6.551080000000001, 5.86079, 6.9256, 6.10925, 7.09008, 5.70378, 6.84588, 6.30992, 7.1309, 6.69084, 6.70564, 5.7462, 6.16752, 6.24222, 7.03527, 6.59715, 6.33328, 7.04752, 6.6346300000000005, 6.41836, 6.54103, 7.57558, 6.20456, 6.51471, 5.7462, 6.39693, 7.084230000000001, 7.00307, 6.77422, 6.43294, 6.88857, 6.05912, 6.68461, 6.6592899999999995, 6.507280000000001, 6.90575, 6.2146099999999995, 5.76832, 6.2146099999999995, 5.5797300000000005, 6.51323, 7.17012, 6.768489999999999, 6.5582, 6.4892, 7.676010000000001, 6.715380000000001, 6.3935900000000006, 6.86171, 6.6783399999999995, 6.77422, 6.44572, 7.17012, 7.00307, 6.126869999999999, 6.50129, 6.8773, 6.56526, 6.354369999999999, 6.575080000000001, 6.62007, 6.42811, 6.829789999999999, 6.2146099999999995, 6.2146099999999995, 6.68461, 7.1293, 5.43808, 6.5467900000000006, 6.424869999999999, 6.49979, 6.7901, 6.4488900000000005, 6.614730000000001, 6.60665, 6.93245, 6.09807, 6.8977, 6.35784, 6.37502, 6.57925, 7.7021, 6.36303, 5.82895, 6.59715, 6.4677, 7.1309, 7.82084, 6.39693, 7.10988, 6.563860000000001, 7.196689999999999, 5.99146, 6.74052, 6.67203, 6.6107, 5.70378, 6.2146099999999995, 6.813439999999999, 6.50279, 5.7589, 7.18917, 6.93245, 6.802389999999999, 6.90575, 6.62007, 6.41999, 5.52146, 7.43838, 7.0255399999999995, 7.903969999999999, 6.745239999999999, 7.04752, 6.701960000000001, 6.8426800000000005, 6.3207699999999996, 6.24611, 6.30992, 6.44095, 6.30992, 6.47389, 5.8861, 6.802389999999999, 6.68461, 6.8977, 6.05912, 6.643789999999999, 6.25767, 7.81883, 6.33328, 6.77422, 6.920669999999999, 7.195189999999999, 6.62007, 6.745239999999999, 7.0396600000000005, 6.30992, 7.17012, 6.18415, 6.68461, 6.10925, 6.5903, 5.9839400000000005, 6.66568, 5.61677, 6.10925, 6.311730000000001, 6.29157, 6.86171, 6.5467900000000006, 6.802389999999999, 7.6009, 6.5820300000000005, 5.6733199999999995, 6.44572, 6.583410000000001, 6.91672, 7.027310000000001, 6.551080000000001, 6.71174, 6.74288, 7.0934, 6.83087, 6.79122, 6.67203, 6.55393, 7.0255399999999995, 6.907760000000001, 6.556780000000001, 6.966019999999999, 6.95273, 6.43133, 6.68461, 6.64898, 6.2146099999999995, 6.66058, 7.016610000000001, 6.85646, 5.66988, 6.53379, 5.99146, 7.21891, 6.745239999999999, 6.975410000000001, 6.719010000000001, 6.90575, 6.551080000000001, 5.66988, 6.3935900000000006, 6.807930000000001, 6.802389999999999, 6.4599, 6.18208, 6.47697, 6.84588, 6.59578, 6.715380000000001, 6.6346300000000005, 6.52649, 6.36475, 5.7462, 6.77422, 6.10925, 7.17012, 6.03787, 6.11589, 5.96615, 6.17794, 6.3935900000000006, 5.95324, 7.495539999999999, 6.21261, 6.802389999999999, 5.82305, 7.17012, 5.59842, 6.9594, 6.01616, 6.74052, 6.66568, 6.85646, 6.44572, 5.99146, 5.59842, 6.56526, 6.30262, 6.38351, 5.45959, 6.06843, 6.1203, 5.7651900000000005, 6.938280000000001, 6.41346, 6.882439999999999, 6.5439099999999994, 7.135689999999999, 6.63595, 7.1309, 5.78383, 6.39693, 6.3699, 6.770789999999999, 6.02345, 6.13123, 6.799060000000001, 6.49527, 6.57925, 6.697030000000001, 6.703189999999999, 6.65286, 6.2146099999999995, 7.014810000000001, 6.58617, 5.96615, 6.52942, 7.09008, 5.8141300000000005, 6.769639999999999, 7.064760000000001, 6.51175, 6.57228, 6.551080000000001, 7.67322, 6.57925, 6.43294, 6.95655, 6.10925, 6.3243599999999995, 6.993930000000001, 6.6567300000000005, 6.907760000000001, 6.07993, 6.72743, 7.0103100000000005, 6.7334, 7.495539999999999, 6.24028, 7.00307, 7.495539999999999, 6.461469999999999, 6.05209, 6.28413, 6.126869999999999, 6.39693, 6.47697, 6.05209, 7.09008, 6.721430000000001, 6.813439999999999, 6.9575, 6.461469999999999, 6.78333, 6.74993, 6.16331, 6.802389999999999, 6.272880000000001, 6.2146099999999995, 6.43615, 6.6871100000000006, 6.51767, 6.907760000000001, 6.67203, 6.8956800000000005, 6.56948, 6.33328, 6.9707300000000005, 8.00637, 6.57786, 6.92363, 6.57368, 6.2146099999999995, 7.37776, 6.14633, 6.05209, 6.44254, 6.4599, 6.60394, 6.975410000000001, 7.36645, 6.67708, 7.09008, 6.58617, 6.43615, 6.3952599999999995, 6.42162, 6.30992, 6.720219999999999, 5.98896, 7.620710000000001, 6.48768, 6.41182, 7.525639999999999, 6.984719999999999, 6.937310000000001, 7.0775, 6.907760000000001, 6.01127, 6.802389999999999, 6.633319999999999, 6.2480400000000005, 6.31355, 7.35819, 6.49677, 6.47697, 6.745239999999999, 6.354369999999999, 6.10925, 6.95655, 7.02465, 6.49224, 5.8861, 5.9839400000000005, 5.84354, 7.00307, 6.35611, 6.17379, 6.39693, 6.83518, 5.99146, 6.62007, 6.633319999999999, 6.77308, 7.1107, 6.95655, 6.995769999999999, 6.594410000000001, 6.5439099999999994, 6.937310000000001, 6.23441, 6.25767, 6.68461, 6.2146099999999995, 6.44413, 6.10925, 6.40523, 6.2146099999999995, 6.17379, 6.30992, 6.9226399999999995, 5.72359, 5.940169999999999, 6.9147300000000005, 5.78996, 6.907760000000001, 6.51471, 6.85646, 6.30992, 6.311730000000001, 6.49224, 6.944089999999999, 6.83518, 6.222580000000001, 6.80128, 6.07993 ], "y0": "male&yes&no" }, { "fillcolor": "hsla(328, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(328, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.4, "legendgroup": "male&yes&yes", "line": { "color": "hsla(328, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(328, 70%, 70%,1)", "line": { "color": "hsla(328, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "triangle-left" }, "meanline": { "color": "hsla(328, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage male&yes&yes", "orientation": "h", "pointpos": 0, "points": false, "scalegroup": "male&yes&yes", "scalemode": "count", "showlegend": true, "side": "both", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 7.67322, 6.646389999999999, 6.4552, 7.32975, 6.907760000000001, 7.91936, 6.745239999999999, 6.7417, 7.71869, 6.77878, 6.907760000000001, 6.93342, 7.06902, 6.57368, 6.829789999999999, 7.557989999999999, 6.892639999999999, 7.0255399999999995, 6.47697, 6.551080000000001, 6.882439999999999, 6.682110000000001, 6.39693, 6.48004, 6.60665, 7.00307, 5.78383, 7.17012, 7.11477, 6.49979, 6.39192, 6.30992, 7.116389999999999, 7.554860000000001, 6.90675, 6.90575, 6.90575, 7.408530000000001, 7.0076, 7.35947, 6.39693, 7.041410000000001, 7.313219999999999, 6.90575, 7.00307, 7.074960000000001, 7.5606, 6.39693, 6.23048, 6.95655, 7.56008, 6.28227, 6.30992, 6.05912, 6.602589999999999, 7.47307, 6.2146099999999995, 7.09008, 7.46737, 6.829789999999999, 6.74052, 7.6009, 6.62007, 7.60589, 6.53669, 6.5582, 7.37776, 6.48311, 6.69084, 6.882439999999999, 6.663130000000001, 6.7226300000000005, 7.20786, 6.802389999999999, 6.79122, 6.62007, 6.42162, 6.90575, 6.28227, 6.682110000000001, 6.49677, 7.408530000000001, 6.551080000000001, 7.0884100000000005, 6.16331, 6.68461, 7.01392, 7.1107, 6.9363399999999995, 6.84588, 8.10168, 7.31255, 6.90575, 6.66696, 6.907760000000001, 6.90575, 8.047189999999999, 6.62407, 6.17379, 6.55393, 7.78322, 7.12448, 6.507280000000001, 6.461469999999999, 6.8977, 7.82405, 6.51471, 6.84055, 6.51471, 7.346010000000001, 6.90575, 6.5820300000000005, 6.354369999999999, 6.59578, 7.82405, 6.551080000000001, 6.39693, 6.65286, 6.622739999999999, 6.90575, 5.7525699999999995, 7.04752, 6.770789999999999, 6.907760000000001, 7.00125, 7.064760000000001, 7.00307, 6.745239999999999, 7.045780000000001, 6.37673, 6.62007, 6.907760000000001, 6.10925, 8.16052, 7.03527, 6.765039999999999, 7.1309, 6.77422, 6.87213, 6.551080000000001, 6.6567300000000005, 6.80017, 6.90575, 7.495539999999999, 8.05516, 6.90575, 6.43775, 6.97261, 7.29709, 7.179310000000001, 7.313219999999999, 6.7226300000000005, 6.82437, 7.173189999999999, 6.62007, 6.7226300000000005, 6.85118, 6.49224, 7.313219999999999, 7.158510000000001, 6.68461, 6.34564, 6.551080000000001, 6.90575, 6.53669, 6.69084, 7.313219999999999, 6.90575, 6.62007, 6.87005, 6.65544, 6.42162, 6.42972, 6.96508, 6.19236, 6.61607, 6.57368, 6.715380000000001, 7.408530000000001, 7.333019999999999, 6.37502, 6.317159999999999, 6.68461, 6.98008, 6.86693, 7.3670800000000005, 6.68461, 6.90575, 6.47697, 6.9431199999999995, 6.90575, 6.7334, 6.658010000000001, 6.9256, 6.90575, 6.6592899999999995, 6.6592899999999995, 6.16331, 6.47851, 7.07834, 6.745239999999999, 7.20786, 6.63857, 6.62007, 6.4892, 7.00307, 7.43838, 7.15383, 6.88755, 6.23245, 6.30445, 7.313219999999999, 7.37776, 6.85646, 6.2441699999999996, 6.90575, 6.907760000000001, 6.272880000000001, 6.66568, 7.481560000000001, 6.40688, 5.8579300000000005, 6.38856, 6.768489999999999, 7.1507, 6.58617, 7.282760000000001, 7.00307, 6.66058, 6.90575, 6.64249, 6.95655, 6.24611, 7.24423, 6.802389999999999, 6.70073, 6.90575, 7.313219999999999, 6.54822, 7.50108, 5.70378, 6.7369699999999995, 7.745, 6.87213, 6.30628, 6.8773, 6.818919999999999, 7.041410000000001, 6.94986, 6.37502, 6.907760000000001, 6.882439999999999, 6.47697, 6.802389999999999, 6.984719999999999, 6.49224, 6.385190000000001, 7.1309, 7.663880000000001, 7.07242, 6.907760000000001, 6.43775, 6.807930000000001, 6.907760000000001, 7.24423, 7.00307, 5.99146, 6.07993, 7.488289999999999, 6.90575, 6.697030000000001, 6.354369999999999, 6.62007, 6.68461, 6.85646, 6.44572, 7.20786, 6.47697, 6.802389999999999, 6.84055, 7.676010000000001, 6.43775, 7.20786, 6.89163, 7.0121199999999995, 6.85646, 6.77422, 6.90575, 6.62007, 6.8844899999999996, 6.85646, 6.48004, 6.55393, 7.02643, 6.42162, 7.09008, 6.2634, 6.907760000000001, 6.90575, 6.2441699999999996, 6.79122, 6.9196800000000005, 6.9147300000000005, 6.90575, 6.646389999999999, 6.746410000000001, 6.30992, 7.522939999999999, 6.07993, 6.907760000000001, 6.90575, 7.04752, 6.47697, 7.23418, 6.54247, 6.753439999999999, 6.51471, 7.034389999999999, 6.65286, 7.262630000000001, 7.20786, 6.90575, 6.30992, 6.984719999999999, 6.30445, 6.05209, 6.34564, 6.62007, 6.39693, 6.06146, 6.91374, 7.1592899999999995, 6.57786, 6.6783399999999995, 6.72383, 6.53233, 6.907760000000001, 7.236339999999999, 6.10925, 6.715380000000001, 6.72743, 6.97635, 7.20786, 6.59167, 6.461469999999999, 6.53233, 6.646389999999999, 7.459910000000001, 7.0255399999999995, 6.22654, 6.10925, 7.08171, 6.64249, 7.49332, 7.495539999999999, 7.1546199999999995, 7.1309, 6.10925, 6.48158, 6.20456, 6.94022, 6.90575, 6.10925, 7.48717, 7.0193, 6.633319999999999, 6.29157, 7.49109, 6.91672, 6.715380000000001, 6.47697, 7.37212, 7.0184, 7.24423, 7.09008, 6.52942, 7.4553, 7.00307, 7.24423, 6.48158, 6.68461, 6.90575, 6.90575, 7.75577, 6.82437, 6.90575, 6.42162, 6.769639999999999, 6.93245, 6.551080000000001, 6.28972, 7.251339999999999, 8.51719, 6.807930000000001, 7.14756, 7.33368, 6.77422, 6.60394, 6.68461, 7.1309, 7.201169999999999, 6.10925, 6.927560000000001, 6.95655, 7.24423, 7.1309, 6.77422, 6.2860000000000005, 6.828710000000001, 6.55251, 6.76273, 5.9269300000000005, 6.80128, 7.313219999999999, 6.966019999999999, 6.6592899999999995, 6.79122, 6.987489999999999, 6.55536, 7.09008, 7.04752, 6.90575, 6.6783399999999995, 6.39693, 7.259119999999999, 7.43838, 6.47697, 7.1309, 6.77422, 6.2634, 6.739339999999999, 6.47697, 6.90575, 7.279319999999999, 6.27099, 7.17012, 6.354369999999999, 6.29157, 6.602589999999999, 6.47697, 6.58755, 6.77422, 6.907760000000001, 7.09589, 6.882439999999999, 7.67322, 6.2146099999999995, 6.802389999999999, 6.58064, 7.00307, 6.90575, 7.503839999999999, 6.950810000000001, 7.57558, 6.96035, 6.2146099999999995, 6.7334, 6.86066, 6.90575, 7.39388, 7.4787300000000005, 6.43775, 7.24065, 6.13773, 6.3952599999999995, 7.1025, 7.04752, 6.9256, 6.035480000000001, 7.22766, 6.272880000000001, 6.01616, 6.27099, 7.91936, 6.354369999999999, 6.51471, 6.30992, 7.3651800000000005, 6.24998, 7.04752, 6.30992, 6.39693, 6.765039999999999, 6.85646, 6.892639999999999, 6.95655, 6.43775, 6.90575, 6.81124, 6.8865300000000005, 6.72743, 6.93245, 7.27031, 7.03878, 7.0255399999999995, 6.77992, 7.696210000000001, 6.53669, 6.52942, 6.126869999999999, 6.54965, 6.715380000000001, 7.31122, 5.8693, 6.90575, 7.486610000000001, 6.62007, 6.34564, 6.44413, 6.93245, 7.37776, 7.18917, 6.7093, 7.9459100000000005, 7.424760000000001, 6.43775, 6.90575, 8.16052, 6.802389999999999, 6.802389999999999, 7.32647, 7.1309, 6.84055, 6.58617, 7.1309, 7.00307, 7.78322, 6.62007, 5.7525699999999995, 6.62407, 6.38856, 6.47697, 7.9724699999999995, 6.703189999999999, 6.47697, 6.65544, 7.331060000000001, 6.64118, 6.47697, 7.475910000000001, 6.72743, 6.81124, 7.0201899999999995, 7.279319999999999, 6.80461, 7.10906, 6.77422, 6.47697, 7.24423, 7.46737, 6.69084, 6.47697, 6.85646, 6.88755, 7.24423, 6.95655, 6.67077, 6.98008, 6.75577, 6.566669999999999, 7.09008, 6.61874, 7.1309, 6.98101, 6.90575, 6.77422, 6.6515699999999995, 6.66568, 7.09008, 6.90575, 6.95655, 6.126869999999999, 7.1309, 6.4552, 7.08171, 6.6567300000000005, 7.696210000000001, 6.68461, 6.802389999999999, 6.6592899999999995, 6.48311, 6.408530000000001, 6.84055, 6.2634, 6.4892, 6.95177, 6.785589999999999, 7.033510000000001, 6.23637, 6.530880000000001, 6.43775, 6.90575, 6.30992, 6.79122, 6.30992, 5.76832, 6.81014, 6.551080000000001, 6.551080000000001, 7.09008, 6.7901, 6.95655, 6.65286, 5.9814099999999994, 7.46737, 7.18007, 7.46737, 6.90575, 7.37776, 6.90575, 7.46737, 6.18826, 6.68461, 7.6009, 7.27031, 6.317159999999999, 6.72503, 6.6871100000000006, 7.17012, 6.802389999999999, 5.93754, 6.995769999999999, 6.802389999999999, 6.52356, 6.55251, 6.72383, 7.09008, 6.68461, 6.52209, 7.313219999999999, 6.561030000000001, 6.907760000000001, 7.71869, 6.802389999999999, 6.90375, 6.90575, 7.26193, 7.37776, 6.907760000000001, 6.858569999999999, 6.745239999999999, 7.495539999999999, 7.1546199999999995, 6.893660000000001, 7.408530000000001, 6.72743, 6.633319999999999, 6.68461, 7.185389999999999, 7.26543, 6.60123, 7.233460000000001, 6.90575, 6.77194, 6.55393, 6.9613, 6.90575, 6.90975, 7.1309, 6.354369999999999, 6.55536, 6.7334, 6.47697, 6.53669, 7.6009, 7.17242, 6.3421199999999995, 6.85646, 6.551080000000001, 6.35611, 6.34914, 7.696210000000001, 7.17012, 6.253830000000001, 6.90575, 6.49224, 6.90575, 6.2634, 7.04752, 6.90575, 7.02997, 7.803839999999999, 6.31355, 6.89467, 7.17012, 7.54961, 7.28207, 6.69084, 6.85646, 6.912739999999999, 6.80017, 7.1309, 7.17012, 7.16627, 6.90575, 5.01728, 7.279319999999999, 7.136480000000001, 6.608, 7.9831, 6.2146099999999995, 7.09506, 6.90575, 6.90575, 7.08339, 5.96615, 6.9622399999999995, 6.912739999999999, 7.346010000000001, 6.68085, 7.24423, 6.62007, 6.1070199999999994, 7.30317, 6.829789999999999, 6.56808, 6.36303, 7.20786, 6.752269999999999, 6.02102, 7.183110000000001, 6.907760000000001, 6.49979, 6.94986, 6.68461, 6.68461, 7.1309, 6.975410000000001, 6.551080000000001, 6.59987, 6.7334, 6.05209, 6.83518, 7.09008, 6.63857, 6.551080000000001, 7.07834, 6.57228, 6.938280000000001, 6.7511, 6.715380000000001, 6.3935900000000006, 7.26193, 6.49072, 6.829789999999999, 6.721430000000001, 6.9828600000000005, 6.62007, 6.551080000000001, 6.14633, 6.73102, 6.721430000000001, 7.062189999999999, 7.313219999999999, 6.34564, 6.561030000000001, 6.966019999999999, 6.4488900000000005, 6.68461, 6.575080000000001, 6.7334, 6.30992, 6.8384100000000005, 7.03615, 6.745239999999999, 7.313219999999999, 6.86693, 6.47697, 6.28972, 7.2724, 6.61874, 6.30079, 7.0255399999999995, 6.90575, 6.9828600000000005, 7.450080000000001, 6.224559999999999, 6.551080000000001, 6.23441, 7.1309, 7.49332, 6.39192, 6.739339999999999, 7.4832399999999994, 6.16331, 6.90575, 7.1309, 6.715380000000001, 6.33683, 6.9187, 7.0579, 6.35611, 7.02376, 6.90575, 6.82655, 6.90575, 7.42833, 5.87212, 6.463030000000001, 7.52833, 6.86797, 6.60665, 6.90575, 7.3651800000000005, 6.77992, 6.975410000000001, 7.82405, 6.5439099999999994, 6.8844899999999996, 7.16085, 6.04025, 6.90575, 6.817830000000001, 7.279319999999999, 6.907760000000001, 7.54961, 7.323169999999999, 6.90575, 6.90575, 6.787839999999999, 7.0967199999999995, 6.55393, 7.00307, 7.31122, 7.31122, 6.44572, 6.59578, 6.77422, 5.8579300000000005, 7.183110000000001, 6.54965, 7.04752, 7.25488, 6.9256, 7.041410000000001, 6.4599, 6.96035, 7.1333, 6.38012, 7.18007, 6.461469999999999, 6.85646, 7.17012, 7.03527, 7.1452, 6.33683, 6.04025, 7.8935699999999995, 6.64249, 6.8977, 6.813439999999999, 6.53669, 6.90575, 6.05209, 7.21524, 6.2146099999999995, 6.8426800000000005, 6.907760000000001, 6.90575, 7.106610000000001, 6.424869999999999, 6.65415, 6.745239999999999, 7.64779, 7.313219999999999, 6.95655, 6.768489999999999, 7.3981699999999995, 6.68461, 7.12287, 6.752269999999999, 6.7334, 6.318969999999999, 5.95324, 6.745239999999999, 7.1309, 7.06048, 6.78672, 7.09008, 7.1309, 6.47697, 7.1025, 7.24423, 7.451239999999999, 7.27101, 7.245660000000001, 7.279319999999999, 7.279319999999999, 7.67322, 6.82437, 6.885510000000001, 7.07918, 7.279319999999999, 7.1309, 6.966019999999999, 6.73102, 6.633319999999999, 7.00307, 7.6009, 6.907760000000001, 6.508769999999999, 6.829789999999999, 7.31986, 7.11802, 6.77422, 7.26193, 6.90575, 7.00307, 5.99146, 7.46737, 6.57786, 6.90575, 6.311730000000001, 6.95655, 6.3952599999999995, 6.48311, 6.39693, 6.60665, 6.90575, 6.318969999999999, 6.802389999999999, 6.51471, 6.77992, 6.68461, 6.40523, 7.24423, 7.09008, 7.84502, 7.1624, 6.813439999999999, 6.907760000000001, 6.68461, 6.14633, 7.17012, 6.53814, 6.882439999999999, 6.46614, 6.90575, 6.36303, 7.04752, 6.83195, 7.20786, 6.95655, 6.90575, 7.09008, 7.014810000000001, 6.73815, 7.03878, 6.95655, 7.20786, 6.602589999999999, 6.551080000000001, 6.87626, 5.16479, 7.54961, 6.58893, 6.60665, 6.907760000000001, 7.64969, 6.9177100000000005, 6.18415, 7.43838, 6.551080000000001, 6.4599, 7.00307, 6.852239999999999, 6.5439099999999994, 6.6515699999999995, 6.551080000000001, 6.907760000000001, 7.04752, 6.41346, 6.551080000000001, 6.62007, 6.5439099999999994, 6.57925, 6.38012, 6.52209, 6.29157, 6.97167, 6.75926, 6.66823, 7.37776, 7.1309, 6.90575, 7.408530000000001, 6.04025, 7.0396600000000005, 7.09589, 6.73102, 6.87523, 6.90575, 7.20786, 6.90575, 6.47389, 6.99026, 7.0884100000000005, 6.206580000000001, 6.44572, 6.551080000000001, 6.53379, 6.90575, 6.46614, 6.90575, 6.2441699999999996, 6.90575, 7.01571, 6.42162, 6.85646, 6.46459, 6.62007, 6.95177, 6.58617, 6.50129, 6.2952699999999995, 6.90575, 7.00307, 7.346010000000001, 6.90575, 6.50429, 7.0942300000000005, 6.54535, 6.62007, 7.09008, 6.703189999999999, 7.46737, 6.39693, 6.38012, 6.802389999999999, 6.42162, 6.90575, 6.802389999999999, 6.44413, 7.127689999999999, 6.45677, 6.40192, 6.55393, 7.06902, 6.59987, 6.715380000000001, 6.39693, 6.57786, 6.68461, 7.00307, 6.85435, 6.937310000000001, 6.0845, 6.85646, 6.73221, 6.37673, 6.90575, 6.62007, 6.768489999999999, 6.63595, 6.90575, 6.75577, 6.77194, 6.77422, 6.2146099999999995, 6.9489, 7.354360000000001, 7.279319999999999, 6.6592899999999995, 7.06305, 6.61338, 7.00307, 6.84588, 6.35611, 6.8977, 7.20786, 6.90575, 6.95655, 6.07993, 7.10988, 6.802389999999999, 6.224559999999999, 6.57925, 6.927560000000001, 6.90575, 7.09008, 7.1309, 6.90575, 6.907760000000001, 6.62007, 7.6009, 6.95655, 6.90575, 6.796819999999999, 6.907760000000001, 6.8533, 7.196689999999999, 6.9147300000000005, 6.77194, 6.90575, 6.90575, 6.47697, 7.522939999999999, 6.62007, 7.1546199999999995, 6.551080000000001, 6.753439999999999, 7.313219999999999, 6.967910000000001, 7.6009, 7.37588, 6.86485, 6.41346, 6.7093, 7.24423, 6.16331, 7.05359, 6.86171, 7.1309, 7.93737, 6.39693, 6.58617, 7.67322, 6.551080000000001, 6.66185, 6.94119, 7.21891, 7.57558, 7.495539999999999, 6.10925, 6.59715, 6.03787, 6.354369999999999, 7.6009, 6.83303, 6.551080000000001, 7.279319999999999, 6.354369999999999, 7.925160000000001, 7.183110000000001, 6.77992, 6.62007, 7.00307, 7.86327, 6.70073, 7.1309, 6.16121, 6.65286, 6.78333, 6.90575, 6.67582, 6.47697, 6.907760000000001, 6.90575, 6.53233, 6.882439999999999, 7.0255399999999995, 6.715380000000001, 7.872839999999999, 6.49072, 6.90575, 6.63726, 6.3613, 6.79122, 6.53233, 6.05209, 6.8742, 6.6280399999999995, 6.907760000000001, 6.05209, 7.02997, 6.90575, 6.07074, 6.54822, 6.62007, 6.7226300000000005, 6.907760000000001, 6.50429, 6.47697, 6.77422, 8.047189999999999, 6.93537, 7.46737, 6.7569300000000005, 6.95655, 6.62007, 6.88755, 6.45205, 6.802389999999999, 6.32794, 8.03916, 6.829789999999999, 6.43775, 6.90575, 7.346660000000001, 7.6009, 6.7569300000000005, 6.48004, 6.889589999999999, 7.313219999999999, 6.9256, 6.59167, 6.57786, 6.53669, 7.313219999999999, 7.408530000000001, 7.3908, 6.90575, 6.95655, 6.13123, 6.90575, 7.09008, 6.566669999999999, 6.43775, 6.62007, 6.646389999999999, 6.802389999999999, 6.90575, 6.65286, 7.24423, 7.09008, 6.42162, 7.0422899999999995, 7.034389999999999, 6.44572, 6.20456, 6.57925, 6.16331, 6.818919999999999, 6.551080000000001, 6.53669, 6.48311, 6.765039999999999, 6.2634, 7.18917, 6.802389999999999, 6.50129, 6.2634, 7.38647, 6.96885, 6.10925, 7.196689999999999, 6.818919999999999, 6.90575, 6.62936, 7.09008, 6.62007, 6.95655, 7.49332, 6.62007, 6.753439999999999, 6.77422, 7.495539999999999, 7.47307, 6.47697, 6.90575, 6.90575, 7.909860000000001, 6.69084, 6.3716099999999996, 7.106610000000001, 6.40523, 5.627619999999999, 6.68461, 6.697030000000001, 7.740660000000001, 6.907760000000001, 6.43775, 6.813439999999999, 6.9256, 7.64969, 6.47697, 6.10925, 7.1309, 6.907760000000001, 6.745239999999999, 6.85646, 6.77422, 7.029089999999999, 6.62007, 7.06133, 7.24423, 6.95177, 7.54961, 6.87626, 6.318969999999999, 7.61332, 6.7511, 6.551080000000001, 7.034389999999999, 6.30992, 6.55393, 6.72743, 7.0967199999999995, 6.90575, 6.551080000000001, 6.39693, 6.90575, 6.639880000000001, 6.62007, 7.24423, 5.8999, 7.062189999999999, 6.47697, 6.829789999999999, 6.95655, 6.907760000000001, 7.293019999999999, 6.91175, 6.45834, 6.556780000000001, 6.5582, 6.91175, 6.45362, 7.1309, 6.8773, 6.955589999999999, 7.80588, 6.9613, 6.907760000000001, 6.90575, 7.18992, 6.90575, 7.31122, 6.6107, 6.807930000000001, 6.79794, 6.1717, 6.6592899999999995, 6.09131, 7.106610000000001, 6.90575, 7.66153, 7.22548, 6.87213, 7.17012, 6.39693, 7.35244, 6.56948, 8.00637, 7.05272, 6.90575, 6.802389999999999, 6.30992, 6.551080000000001, 6.77422, 7.05704, 6.802389999999999, 6.551080000000001, 7.1507, 7.6009, 5.7525699999999995, 6.90575, 6.95655, 6.84375, 6.95655, 6.8977, 7.34923, 6.93245, 6.34564, 7.03878, 7.400010000000001, 7.37588, 6.83195, 6.84162, 6.354369999999999, 6.608, 6.85646, 6.90575, 6.697030000000001, 6.5395900000000005, 6.739339999999999, 7.86327, 6.47697, 6.7511, 6.551080000000001, 6.57925, 7.1309, 6.551080000000001, 6.44572, 7.00307, 5.99146, 6.90575, 6.3699, 6.39693, 7.82405, 6.95655, 6.90575, 6.8426800000000005, 7.0518600000000005, 6.993930000000001, 6.79122, 6.2146099999999995, 6.78897, 7.259119999999999, 7.6811, 6.745239999999999, 7.27031, 6.721430000000001, 6.90575, 6.99485, 7.37776, 6.30992, 6.84375, 6.66696, 6.90575, 8.0229, 6.90575, 6.80351, 6.08677, 6.33683, 6.984719999999999, 6.354369999999999, 6.73102, 6.39693, 6.8773, 6.507280000000001, 6.81014, 6.802389999999999, 6.49072, 7.46737, 6.745239999999999, 6.2634, 7.181589999999999, 7.05618, 6.51619, 6.56948, 6.937310000000001, 6.90575, 6.39693, 6.82437, 6.753439999999999, 6.966019999999999, 6.802389999999999, 7.239210000000001, 6.5582, 6.907760000000001, 6.98008, 6.62407, 6.551080000000001, 6.41673, 7.313219999999999, 6.62007, 6.42162, 6.68461, 6.715380000000001, 6.85646, 6.57786, 5.8579300000000005, 6.2146099999999995, 7.313219999999999, 7.37776, 7.279319999999999, 6.73102, 6.53669, 7.04752, 6.507280000000001, 6.93049, 7.09008, 6.45047, 6.68461, 6.62007, 6.90575, 6.59167, 7.2724, 6.56526, 7.91936, 6.90575, 6.802389999999999, 7.484369999999999, 6.90575, 6.94698, 6.96885, 6.907760000000001, 7.293019999999999, 7.173189999999999, 6.815639999999999, 6.813439999999999, 6.90575, 6.90575, 7.09008, 6.90575, 7.226210000000001, 7.279319999999999, 7.91936, 7.00307, 6.47697, 6.551080000000001, 6.907760000000001, 6.715380000000001, 6.96885, 6.68461, 6.57368, 6.745239999999999, 6.53669, 6.8426800000000005, 7.520230000000001, 7.1082399999999994, 6.5582, 6.39693, 7.393260000000001, 6.6958, 6.95177, 6.2146099999999995, 6.9613, 6.907760000000001, 7.54961, 5.79606, 6.83087, 6.54535, 6.593039999999999, 7.04752, 7.37776, 6.8426800000000005, 6.96885, 6.752269999999999, 6.90575, 6.78672, 8.12089, 7.00307, 6.1944099999999995, 7.740660000000001, 6.907760000000001, 6.96979, 7.14283, 6.139880000000001, 6.89467, 7.183110000000001, 6.34388, 6.39024, 7.0255399999999995, 6.68461, 7.37776, 6.17379, 7.09008, 6.51323, 6.6592899999999995, 6.30992, 7.37776, 7.46737, 7.6009, 7.36455, 6.59715, 6.639880000000001, 6.62007, 6.551080000000001, 7.09008, 6.78333, 6.563860000000001, 7.0076, 6.880380000000001, 6.745239999999999, 6.82437, 7.127689999999999, 6.62007, 7.288930000000001, 6.68461, 6.354369999999999, 6.7546, 6.86485, 7.1309, 7.6009, 7.24423, 6.9256, 7.11314, 6.86693, 6.58617, 6.85646, 6.92363, 6.84588, 6.86171, 6.7417, 6.2146099999999995, 6.78897, 6.74759, 7.00307, 6.3935900000000006, 7.09008, 7.84385, 6.57647, 6.78672, 6.39693, 6.9707300000000005, 8.3082, 7.1309, 7.17012, 6.593039999999999, 6.86693, 6.259580000000001, 6.907760000000001, 6.64509, 7.09008, 6.39693, 6.80461, 7.037030000000001, 6.47697, 6.65286, 6.76388, 6.90575, 6.87626, 6.90575, 7.1507, 7.07834, 7.21082, 6.52942, 6.57786, 6.18826, 6.975410000000001, 7.16085, 6.83303, 7.61874, 6.48158, 6.99485, 6.907760000000001, 6.8384100000000005, 6.79122, 6.551080000000001, 6.6695, 7.279319999999999, 6.57925, 6.813439999999999, 6.68461, 6.802389999999999, 6.785589999999999, 7.313219999999999, 6.551080000000001, 7.29097, 6.98008, 7.20786, 6.802389999999999, 6.983789999999999, 6.75926, 6.55962, 6.90575, 7.4570300000000005, 7.1309, 6.566669999999999, 6.829789999999999, 6.85646, 6.77422, 7.90101, 6.32794, 6.966019999999999, 6.8384100000000005, 6.62007, 6.813439999999999, 6.551080000000001, 6.3315, 6.69332, 6.90575, 6.90575, 6.07535, 6.96885, 6.47697, 6.39693, 7.24423, 7.12367, 6.44413, 6.4677, 6.47697, 6.907760000000001, 6.4552, 7.1546199999999995, 7.37776, 7.18917, 7.136480000000001, 5.95584, 7.03878, 6.461469999999999, 6.697030000000001, 6.2146099999999995, 6.56526, 6.51471, 6.49375, 7.06048, 6.715380000000001, 6.95655, 7.1309, 6.95655, 6.90575, 6.76273, 6.86693, 6.68461, 6.90575, 6.95655, 7.17012, 7.0255399999999995, 7.495539999999999, 6.49224, 6.90575, 6.8865300000000005, 7.57353, 6.602589999999999, 6.30992, 6.23048, 6.530880000000001, 6.46459, 6.834110000000001, 7.313219999999999, 6.802389999999999, 6.66441, 7.251339999999999, 5.87774, 7.43838, 6.35957, 6.43775, 6.768489999999999, 7.17012, 6.90575, 7.281389999999999, 7.17702, 6.90575, 6.95845, 6.90575, 8.229510000000001, 7.136480000000001, 7.200419999999999, 7.37776, 6.39693, 7.46737, 6.802389999999999, 7.165489999999999, 6.62007, 6.90575, 7.70661, 6.47389, 6.35957, 6.07535, 7.20786, 6.43775, 6.3716099999999996, 6.907760000000001, 6.28972, 7.00307, 7.09008, 6.90575, 7.09008, 6.84801, 6.90575, 7.07242, 7.6009, 6.817830000000001, 7.346010000000001, 6.6592899999999995, 7.46737, 6.79122, 6.720219999999999, 6.90575, 6.90575, 6.68336, 6.892639999999999, 6.86485, 6.947939999999999, 6.955589999999999, 7.0255399999999995, 7.04752, 6.74288, 6.354369999999999, 7.398789999999999, 7.37776, 7.35883, 7.18463, 6.745239999999999, 7.05876, 6.68461, 7.64969, 6.04025, 6.507280000000001, 6.23441, 7.098380000000001, 6.2804, 7.6256, 6.633319999999999, 6.43455, 7.54961, 7.09008, 6.73459, 7.1293, 6.49224, 6.28413, 6.90575, 6.6515699999999995, 6.56948, 6.80461, 7.313219999999999, 6.68461, 7.09008, 8.26873, 7.12287, 6.43775, 6.6796, 6.758089999999999, 6.68461, 6.90575, 6.84588, 6.745239999999999, 6.10032, 8.048789999999999, 7.313219999999999, 6.745239999999999, 6.907760000000001, 6.90575, 6.90575, 6.2441699999999996, 8.08641, 7.08171, 6.97354, 7.30653, 6.55962, 6.58617, 6.74406, 7.56008, 6.1944099999999995, 7.408530000000001, 6.61338, 6.32794, 7.18007, 6.95655, 6.58617, 7.313219999999999, 7.1309, 6.18826, 6.49224, 6.821110000000001, 6.47697, 6.813439999999999, 7.43838, 6.551080000000001, 6.43775, 6.90575, 6.53233, 6.61874, 7.88231, 6.90575, 6.7569300000000005, 7.08255, 7.37776, 6.44413, 6.90575, 6.51471, 6.551080000000001, 6.90575, 7.35372, 7.46737, 6.802389999999999, 7.346010000000001, 6.90575, 6.86693, 6.829789999999999, 6.65286, 6.7334, 7.2998, 6.65415, 6.9256, 6.90575, 6.52209, 6.39693, 6.49072, 7.32251, 6.29711, 7.04752, 6.272880000000001, 7.04752, 6.752269999999999, 6.42162, 6.90575, 6.62007, 6.85646, 6.745239999999999, 6.9256, 6.51471, 6.90575, 6.16331, 6.56526, 6.813439999999999, 6.08677, 6.7369699999999995, 7.11883, 7.46737, 6.35957, 6.907760000000001, 6.58617, 7.1309, 6.39693, 7.46737, 6.54247, 6.3716099999999996, 7.293019999999999, 6.08677, 7.64969, 6.95655, 8.13153, 6.3613, 6.551080000000001, 6.907760000000001, 6.907760000000001, 6.43775, 6.83518, 6.984719999999999, 7.062189999999999, 6.77992, 7.195189999999999, 7.185389999999999, 6.01616, 6.33683, 6.70073, 7.20786, 6.551080000000001, 7.1309, 6.354369999999999, 6.90575, 6.551080000000001, 6.85013, 7.0255399999999995, 6.39693, 6.768489999999999, 6.23441, 6.5395900000000005, 6.907760000000001, 7.12287, 6.745239999999999, 7.21744, 6.49072, 7.24423, 6.802389999999999, 6.44572, 7.00307, 6.966019999999999, 6.62936, 6.28227, 7.64969, 7.3696, 6.90575, 7.20786, 6.57647, 6.5903, 7.00307, 6.57925, 6.907760000000001, 6.59578, 7.014810000000001, 6.64509, 6.608, 6.68461, 6.58617, 6.62007, 7.00307, 6.95655, 6.12249, 6.62007, 7.09008, 6.83303, 6.98101, 6.81014, 7.37776, 6.85435, 7.64969, 7.91936, 6.9256, 6.6733, 7.5574699999999995, 6.13773, 6.30992, 6.47697, 6.802389999999999, 6.65286, 6.57368, 5.70711, 7.37776, 7.408530000000001, 7.1155800000000005, 7.91936, 7.09008, 7.1309, 6.58617, 6.6592899999999995, 6.90575, 7.092569999999999, 6.86485, 7.57558, 7.200419999999999, 6.95655, 6.2146099999999995, 7.400010000000001, 8.537, 6.07993, 6.99942, 6.61338, 7.64969, 6.68461, 6.57925, 7.09008, 7.1082399999999994, 6.83518, 6.90575, 6.84162, 7.313219999999999, 6.55962, 6.07993, 6.633319999999999, 7.09008, 7.313219999999999, 6.79122, 6.66823, 7.2861899999999995, 6.802389999999999, 6.703189999999999, 7.09008, 7.6009, 6.28972, 6.68461, 7.37776, 6.74993, 6.72623, 7.09008, 7.25347, 7.585789999999999, 6.45362, 6.354369999999999, 6.90575, 7.346010000000001, 7.027310000000001, 6.907760000000001, 6.9489, 7.495539999999999, 6.745239999999999, 6.90575, 6.80572, 6.2634, 6.68461, 6.633319999999999, 7.30317, 6.95655, 6.907760000000001, 5.742999999999999, 6.39693, 7.313219999999999, 7.09008, 6.47697, 7.196689999999999, 6.30262, 7.07412, 6.68461, 7.42357, 6.715380000000001, 6.9828600000000005, 6.49979, 6.27099, 7.393260000000001, 6.829789999999999, 6.32794, 6.28786, 6.68461, 6.62007, 7.12287, 6.2146099999999995, 6.84162, 6.2146099999999995, 6.983789999999999, 6.95655, 6.88755, 7.04316, 6.90575, 6.84162, 6.45362, 6.85646, 6.46925, 7.00307, 5.99146, 6.22654, 6.967910000000001, 6.66568, 6.90575, 6.62007, 6.60665, 7.04752, 7.062189999999999, 7.313219999999999, 7.04752, 7.0884100000000005, 6.90575, 6.551080000000001, 6.90575, 7.09008, 6.386880000000001, 6.58617, 6.90073, 6.745239999999999, 7.2233, 6.8773, 6.813439999999999, 7.037030000000001, 7.6009, 6.685860000000001, 6.38856, 6.47697, 7.46737, 6.551080000000001, 6.87213, 6.73102, 6.30992, 7.45298, 6.882439999999999, 6.90675, 6.551080000000001, 6.85646, 6.563860000000001, 6.381819999999999, 6.769639999999999, 6.73102, 7.06133, 6.68461, 6.2146099999999995, 6.4708, 7.08171, 6.90575, 7.6009, 6.52062, 6.60935, 6.9828600000000005, 7.338889999999999, 6.22654, 7.01392, 6.2205900000000005, 7.44659, 7.388330000000001, 6.85118, 7.24423, 6.632000000000001, 6.90575, 7.10906, 6.84588, 7.17012, 6.52503, 6.2860000000000005 ], "y0": "male&yes&yes" }, { "box": { "visible": false }, "fillcolor": "rgba(0, 0, 0, 0)", "hoverinfo": "x", "hoveron": "points", "jitter": 0.4, "legendgroup": "male&yes&yes", "line": { "color": "rgba(0, 0, 0, 0)", "width": 0 }, "marker": { "color": "hsla(328, 70%, 70%,1)", "line": { "color": "hsla(328, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "triangle-left" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "all", "scalegroup": "male&yes&yes", "showlegend": false, "side": "both", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 7.67322, 6.646389999999999, 6.4552, 7.32975, 6.907760000000001, 7.91936, 6.745239999999999, 6.7417, 7.71869, 6.77878, 6.907760000000001, 6.93342, 7.06902, 6.57368, 6.829789999999999, 7.557989999999999, 6.892639999999999, 7.0255399999999995, 6.47697, 6.551080000000001, 6.882439999999999, 6.682110000000001, 6.39693, 6.48004, 6.60665, 7.00307, 5.78383, 7.17012, 7.11477, 6.49979, 6.39192, 6.30992, 7.116389999999999, 7.554860000000001, 6.90675, 6.90575, 6.90575, 7.408530000000001, 7.0076, 7.35947, 6.39693, 7.041410000000001, 7.313219999999999, 6.90575, 7.00307, 7.074960000000001, 7.5606, 6.39693, 6.23048, 6.95655, 7.56008, 6.28227, 6.30992, 6.05912, 6.602589999999999, 7.47307, 6.2146099999999995, 7.09008, 7.46737, 6.829789999999999, 6.74052, 7.6009, 6.62007, 7.60589, 6.53669, 6.5582, 7.37776, 6.48311, 6.69084, 6.882439999999999, 6.663130000000001, 6.7226300000000005, 7.20786, 6.802389999999999, 6.79122, 6.62007, 6.42162, 6.90575, 6.28227, 6.682110000000001, 6.49677, 7.408530000000001, 6.551080000000001, 7.0884100000000005, 6.16331, 6.68461, 7.01392, 7.1107, 6.9363399999999995, 6.84588, 8.10168, 7.31255, 6.90575, 6.66696, 6.907760000000001, 6.90575, 8.047189999999999, 6.62407, 6.17379, 6.55393, 7.78322, 7.12448, 6.507280000000001, 6.461469999999999, 6.8977, 7.82405, 6.51471, 6.84055, 6.51471, 7.346010000000001, 6.90575, 6.5820300000000005, 6.354369999999999, 6.59578, 7.82405, 6.551080000000001, 6.39693, 6.65286, 6.622739999999999, 6.90575, 5.7525699999999995, 7.04752, 6.770789999999999, 6.907760000000001, 7.00125, 7.064760000000001, 7.00307, 6.745239999999999, 7.045780000000001, 6.37673, 6.62007, 6.907760000000001, 6.10925, 8.16052, 7.03527, 6.765039999999999, 7.1309, 6.77422, 6.87213, 6.551080000000001, 6.6567300000000005, 6.80017, 6.90575, 7.495539999999999, 8.05516, 6.90575, 6.43775, 6.97261, 7.29709, 7.179310000000001, 7.313219999999999, 6.7226300000000005, 6.82437, 7.173189999999999, 6.62007, 6.7226300000000005, 6.85118, 6.49224, 7.313219999999999, 7.158510000000001, 6.68461, 6.34564, 6.551080000000001, 6.90575, 6.53669, 6.69084, 7.313219999999999, 6.90575, 6.62007, 6.87005, 6.65544, 6.42162, 6.42972, 6.96508, 6.19236, 6.61607, 6.57368, 6.715380000000001, 7.408530000000001, 7.333019999999999, 6.37502, 6.317159999999999, 6.68461, 6.98008, 6.86693, 7.3670800000000005, 6.68461, 6.90575, 6.47697, 6.9431199999999995, 6.90575, 6.7334, 6.658010000000001, 6.9256, 6.90575, 6.6592899999999995, 6.6592899999999995, 6.16331, 6.47851, 7.07834, 6.745239999999999, 7.20786, 6.63857, 6.62007, 6.4892, 7.00307, 7.43838, 7.15383, 6.88755, 6.23245, 6.30445, 7.313219999999999, 7.37776, 6.85646, 6.2441699999999996, 6.90575, 6.907760000000001, 6.272880000000001, 6.66568, 7.481560000000001, 6.40688, 5.8579300000000005, 6.38856, 6.768489999999999, 7.1507, 6.58617, 7.282760000000001, 7.00307, 6.66058, 6.90575, 6.64249, 6.95655, 6.24611, 7.24423, 6.802389999999999, 6.70073, 6.90575, 7.313219999999999, 6.54822, 7.50108, 5.70378, 6.7369699999999995, 7.745, 6.87213, 6.30628, 6.8773, 6.818919999999999, 7.041410000000001, 6.94986, 6.37502, 6.907760000000001, 6.882439999999999, 6.47697, 6.802389999999999, 6.984719999999999, 6.49224, 6.385190000000001, 7.1309, 7.663880000000001, 7.07242, 6.907760000000001, 6.43775, 6.807930000000001, 6.907760000000001, 7.24423, 7.00307, 5.99146, 6.07993, 7.488289999999999, 6.90575, 6.697030000000001, 6.354369999999999, 6.62007, 6.68461, 6.85646, 6.44572, 7.20786, 6.47697, 6.802389999999999, 6.84055, 7.676010000000001, 6.43775, 7.20786, 6.89163, 7.0121199999999995, 6.85646, 6.77422, 6.90575, 6.62007, 6.8844899999999996, 6.85646, 6.48004, 6.55393, 7.02643, 6.42162, 7.09008, 6.2634, 6.907760000000001, 6.90575, 6.2441699999999996 ], "y0": "male&yes&yes" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(328, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(328, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "male&yes&yes", "line": { "width": 0 }, "marker": { "color": "hsla(328, 50%, 50%,0.9)", "line": { "color": "hsla(328, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "triangle-left" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "male&yes&yes", "showlegend": false, "side": "both", "span": [ 6.821883597635384, 6.855718918239816 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 7.67322, 6.646389999999999, 6.4552, 7.32975, 6.907760000000001, 7.91936, 6.745239999999999, 6.7417, 7.71869, 6.77878, 6.907760000000001, 6.93342, 7.06902, 6.57368, 6.829789999999999, 7.557989999999999, 6.892639999999999, 7.0255399999999995, 6.47697, 6.551080000000001, 6.882439999999999, 6.682110000000001, 6.39693, 6.48004, 6.60665, 7.00307, 5.78383, 7.17012, 7.11477, 6.49979, 6.39192, 6.30992, 7.116389999999999, 7.554860000000001, 6.90675, 6.90575, 6.90575, 7.408530000000001, 7.0076, 7.35947, 6.39693, 7.041410000000001, 7.313219999999999, 6.90575, 7.00307, 7.074960000000001, 7.5606, 6.39693, 6.23048, 6.95655, 7.56008, 6.28227, 6.30992, 6.05912, 6.602589999999999, 7.47307, 6.2146099999999995, 7.09008, 7.46737, 6.829789999999999, 6.74052, 7.6009, 6.62007, 7.60589, 6.53669, 6.5582, 7.37776, 6.48311, 6.69084, 6.882439999999999, 6.663130000000001, 6.7226300000000005, 7.20786, 6.802389999999999, 6.79122, 6.62007, 6.42162, 6.90575, 6.28227, 6.682110000000001, 6.49677, 7.408530000000001, 6.551080000000001, 7.0884100000000005, 6.16331, 6.68461, 7.01392, 7.1107, 6.9363399999999995, 6.84588, 8.10168, 7.31255, 6.90575, 6.66696, 6.907760000000001, 6.90575, 8.047189999999999, 6.62407, 6.17379, 6.55393, 7.78322, 7.12448, 6.507280000000001, 6.461469999999999, 6.8977, 7.82405, 6.51471, 6.84055, 6.51471, 7.346010000000001, 6.90575, 6.5820300000000005, 6.354369999999999, 6.59578, 7.82405, 6.551080000000001, 6.39693, 6.65286, 6.622739999999999, 6.90575, 5.7525699999999995, 7.04752, 6.770789999999999, 6.907760000000001, 7.00125, 7.064760000000001, 7.00307, 6.745239999999999, 7.045780000000001, 6.37673, 6.62007, 6.907760000000001, 6.10925, 8.16052, 7.03527, 6.765039999999999, 7.1309, 6.77422, 6.87213, 6.551080000000001, 6.6567300000000005, 6.80017, 6.90575, 7.495539999999999, 8.05516, 6.90575, 6.43775, 6.97261, 7.29709, 7.179310000000001, 7.313219999999999, 6.7226300000000005, 6.82437, 7.173189999999999, 6.62007, 6.7226300000000005, 6.85118, 6.49224, 7.313219999999999, 7.158510000000001, 6.68461, 6.34564, 6.551080000000001, 6.90575, 6.53669, 6.69084, 7.313219999999999, 6.90575, 6.62007, 6.87005, 6.65544, 6.42162, 6.42972, 6.96508, 6.19236, 6.61607, 6.57368, 6.715380000000001, 7.408530000000001, 7.333019999999999, 6.37502, 6.317159999999999, 6.68461, 6.98008, 6.86693, 7.3670800000000005, 6.68461, 6.90575, 6.47697, 6.9431199999999995, 6.90575, 6.7334, 6.658010000000001, 6.9256, 6.90575, 6.6592899999999995, 6.6592899999999995, 6.16331, 6.47851, 7.07834, 6.745239999999999, 7.20786, 6.63857, 6.62007, 6.4892, 7.00307, 7.43838, 7.15383, 6.88755, 6.23245, 6.30445, 7.313219999999999, 7.37776, 6.85646, 6.2441699999999996, 6.90575, 6.907760000000001, 6.272880000000001, 6.66568, 7.481560000000001, 6.40688, 5.8579300000000005, 6.38856, 6.768489999999999, 7.1507, 6.58617, 7.282760000000001, 7.00307, 6.66058, 6.90575, 6.64249, 6.95655, 6.24611, 7.24423, 6.802389999999999, 6.70073, 6.90575, 7.313219999999999, 6.54822, 7.50108, 5.70378, 6.7369699999999995, 7.745, 6.87213, 6.30628, 6.8773, 6.818919999999999, 7.041410000000001, 6.94986, 6.37502, 6.907760000000001, 6.882439999999999, 6.47697, 6.802389999999999, 6.984719999999999, 6.49224, 6.385190000000001, 7.1309, 7.663880000000001, 7.07242, 6.907760000000001, 6.43775, 6.807930000000001, 6.907760000000001, 7.24423, 7.00307, 5.99146, 6.07993, 7.488289999999999, 6.90575, 6.697030000000001, 6.354369999999999, 6.62007, 6.68461, 6.85646, 6.44572, 7.20786, 6.47697, 6.802389999999999, 6.84055, 7.676010000000001, 6.43775, 7.20786, 6.89163, 7.0121199999999995, 6.85646, 6.77422, 6.90575, 6.62007, 6.8844899999999996, 6.85646, 6.48004, 6.55393, 7.02643, 6.42162, 7.09008, 6.2634, 6.907760000000001, 6.90575, 6.2441699999999996, 6.79122, 6.9196800000000005, 6.9147300000000005, 6.90575, 6.646389999999999, 6.746410000000001, 6.30992, 7.522939999999999, 6.07993, 6.907760000000001, 6.90575, 7.04752, 6.47697, 7.23418, 6.54247, 6.753439999999999, 6.51471, 7.034389999999999, 6.65286, 7.262630000000001, 7.20786, 6.90575, 6.30992, 6.984719999999999, 6.30445, 6.05209, 6.34564, 6.62007, 6.39693, 6.06146, 6.91374, 7.1592899999999995, 6.57786, 6.6783399999999995, 6.72383, 6.53233, 6.907760000000001, 7.236339999999999, 6.10925, 6.715380000000001, 6.72743, 6.97635, 7.20786, 6.59167, 6.461469999999999, 6.53233, 6.646389999999999, 7.459910000000001, 7.0255399999999995, 6.22654, 6.10925, 7.08171, 6.64249, 7.49332, 7.495539999999999, 7.1546199999999995, 7.1309, 6.10925, 6.48158, 6.20456, 6.94022, 6.90575, 6.10925, 7.48717, 7.0193, 6.633319999999999, 6.29157, 7.49109, 6.91672, 6.715380000000001, 6.47697, 7.37212, 7.0184, 7.24423, 7.09008, 6.52942, 7.4553, 7.00307, 7.24423, 6.48158, 6.68461, 6.90575, 6.90575, 7.75577, 6.82437, 6.90575, 6.42162, 6.769639999999999, 6.93245, 6.551080000000001, 6.28972, 7.251339999999999, 8.51719, 6.807930000000001, 7.14756, 7.33368, 6.77422, 6.60394, 6.68461, 7.1309, 7.201169999999999, 6.10925, 6.927560000000001, 6.95655, 7.24423, 7.1309, 6.77422, 6.2860000000000005, 6.828710000000001, 6.55251, 6.76273, 5.9269300000000005, 6.80128, 7.313219999999999, 6.966019999999999, 6.6592899999999995, 6.79122, 6.987489999999999, 6.55536, 7.09008, 7.04752, 6.90575, 6.6783399999999995, 6.39693, 7.259119999999999, 7.43838, 6.47697, 7.1309, 6.77422, 6.2634, 6.739339999999999, 6.47697, 6.90575, 7.279319999999999, 6.27099, 7.17012, 6.354369999999999, 6.29157, 6.602589999999999, 6.47697, 6.58755, 6.77422, 6.907760000000001, 7.09589, 6.882439999999999, 7.67322, 6.2146099999999995, 6.802389999999999, 6.58064, 7.00307, 6.90575, 7.503839999999999, 6.950810000000001, 7.57558, 6.96035, 6.2146099999999995, 6.7334, 6.86066, 6.90575, 7.39388, 7.4787300000000005, 6.43775, 7.24065, 6.13773, 6.3952599999999995, 7.1025, 7.04752, 6.9256, 6.035480000000001, 7.22766, 6.272880000000001, 6.01616, 6.27099, 7.91936, 6.354369999999999, 6.51471, 6.30992, 7.3651800000000005, 6.24998, 7.04752, 6.30992, 6.39693, 6.765039999999999, 6.85646, 6.892639999999999, 6.95655, 6.43775, 6.90575, 6.81124, 6.8865300000000005, 6.72743, 6.93245, 7.27031, 7.03878, 7.0255399999999995, 6.77992, 7.696210000000001, 6.53669, 6.52942, 6.126869999999999, 6.54965, 6.715380000000001, 7.31122, 5.8693, 6.90575, 7.486610000000001, 6.62007, 6.34564, 6.44413, 6.93245, 7.37776, 7.18917, 6.7093, 7.9459100000000005, 7.424760000000001, 6.43775, 6.90575, 8.16052, 6.802389999999999, 6.802389999999999, 7.32647, 7.1309, 6.84055, 6.58617, 7.1309, 7.00307, 7.78322, 6.62007, 5.7525699999999995, 6.62407, 6.38856, 6.47697, 7.9724699999999995, 6.703189999999999, 6.47697, 6.65544, 7.331060000000001, 6.64118, 6.47697, 7.475910000000001, 6.72743, 6.81124, 7.0201899999999995, 7.279319999999999, 6.80461, 7.10906, 6.77422, 6.47697, 7.24423, 7.46737, 6.69084, 6.47697, 6.85646, 6.88755, 7.24423, 6.95655, 6.67077, 6.98008, 6.75577, 6.566669999999999, 7.09008, 6.61874, 7.1309, 6.98101, 6.90575, 6.77422, 6.6515699999999995, 6.66568, 7.09008, 6.90575, 6.95655, 6.126869999999999, 7.1309, 6.4552, 7.08171, 6.6567300000000005, 7.696210000000001, 6.68461, 6.802389999999999, 6.6592899999999995, 6.48311, 6.408530000000001, 6.84055, 6.2634, 6.4892, 6.95177, 6.785589999999999, 7.033510000000001, 6.23637, 6.530880000000001, 6.43775, 6.90575, 6.30992, 6.79122, 6.30992, 5.76832, 6.81014, 6.551080000000001, 6.551080000000001, 7.09008, 6.7901, 6.95655, 6.65286, 5.9814099999999994, 7.46737, 7.18007, 7.46737, 6.90575, 7.37776, 6.90575, 7.46737, 6.18826, 6.68461, 7.6009, 7.27031, 6.317159999999999, 6.72503, 6.6871100000000006, 7.17012, 6.802389999999999, 5.93754, 6.995769999999999, 6.802389999999999, 6.52356, 6.55251, 6.72383, 7.09008, 6.68461, 6.52209, 7.313219999999999, 6.561030000000001, 6.907760000000001, 7.71869, 6.802389999999999, 6.90375, 6.90575, 7.26193, 7.37776, 6.907760000000001, 6.858569999999999, 6.745239999999999, 7.495539999999999, 7.1546199999999995, 6.893660000000001, 7.408530000000001, 6.72743, 6.633319999999999, 6.68461, 7.185389999999999, 7.26543, 6.60123, 7.233460000000001, 6.90575, 6.77194, 6.55393, 6.9613, 6.90575, 6.90975, 7.1309, 6.354369999999999, 6.55536, 6.7334, 6.47697, 6.53669, 7.6009, 7.17242, 6.3421199999999995, 6.85646, 6.551080000000001, 6.35611, 6.34914, 7.696210000000001, 7.17012, 6.253830000000001, 6.90575, 6.49224, 6.90575, 6.2634, 7.04752, 6.90575, 7.02997, 7.803839999999999, 6.31355, 6.89467, 7.17012, 7.54961, 7.28207, 6.69084, 6.85646, 6.912739999999999, 6.80017, 7.1309, 7.17012, 7.16627, 6.90575, 5.01728, 7.279319999999999, 7.136480000000001, 6.608, 7.9831, 6.2146099999999995, 7.09506, 6.90575, 6.90575, 7.08339, 5.96615, 6.9622399999999995, 6.912739999999999, 7.346010000000001, 6.68085, 7.24423, 6.62007, 6.1070199999999994, 7.30317, 6.829789999999999, 6.56808, 6.36303, 7.20786, 6.752269999999999, 6.02102, 7.183110000000001, 6.907760000000001, 6.49979, 6.94986, 6.68461, 6.68461, 7.1309, 6.975410000000001, 6.551080000000001, 6.59987, 6.7334, 6.05209, 6.83518, 7.09008, 6.63857, 6.551080000000001, 7.07834, 6.57228, 6.938280000000001, 6.7511, 6.715380000000001, 6.3935900000000006, 7.26193, 6.49072, 6.829789999999999, 6.721430000000001, 6.9828600000000005, 6.62007, 6.551080000000001, 6.14633, 6.73102, 6.721430000000001, 7.062189999999999, 7.313219999999999, 6.34564, 6.561030000000001, 6.966019999999999, 6.4488900000000005, 6.68461, 6.575080000000001, 6.7334, 6.30992, 6.8384100000000005, 7.03615, 6.745239999999999, 7.313219999999999, 6.86693, 6.47697, 6.28972, 7.2724, 6.61874, 6.30079, 7.0255399999999995, 6.90575, 6.9828600000000005, 7.450080000000001, 6.224559999999999, 6.551080000000001, 6.23441, 7.1309, 7.49332, 6.39192, 6.739339999999999, 7.4832399999999994, 6.16331, 6.90575, 7.1309, 6.715380000000001, 6.33683, 6.9187, 7.0579, 6.35611, 7.02376, 6.90575, 6.82655, 6.90575, 7.42833, 5.87212, 6.463030000000001, 7.52833, 6.86797, 6.60665, 6.90575, 7.3651800000000005, 6.77992, 6.975410000000001, 7.82405, 6.5439099999999994, 6.8844899999999996, 7.16085, 6.04025, 6.90575, 6.817830000000001, 7.279319999999999, 6.907760000000001, 7.54961, 7.323169999999999, 6.90575, 6.90575, 6.787839999999999, 7.0967199999999995, 6.55393, 7.00307, 7.31122, 7.31122, 6.44572, 6.59578, 6.77422, 5.8579300000000005, 7.183110000000001, 6.54965, 7.04752, 7.25488, 6.9256, 7.041410000000001, 6.4599, 6.96035, 7.1333, 6.38012, 7.18007, 6.461469999999999, 6.85646, 7.17012, 7.03527, 7.1452, 6.33683, 6.04025, 7.8935699999999995, 6.64249, 6.8977, 6.813439999999999, 6.53669, 6.90575, 6.05209, 7.21524, 6.2146099999999995, 6.8426800000000005, 6.907760000000001, 6.90575, 7.106610000000001, 6.424869999999999, 6.65415, 6.745239999999999, 7.64779, 7.313219999999999, 6.95655, 6.768489999999999, 7.3981699999999995, 6.68461, 7.12287, 6.752269999999999, 6.7334, 6.318969999999999, 5.95324, 6.745239999999999, 7.1309, 7.06048, 6.78672, 7.09008, 7.1309, 6.47697, 7.1025, 7.24423, 7.451239999999999, 7.27101, 7.245660000000001, 7.279319999999999, 7.279319999999999, 7.67322, 6.82437, 6.885510000000001, 7.07918, 7.279319999999999, 7.1309, 6.966019999999999, 6.73102, 6.633319999999999, 7.00307, 7.6009, 6.907760000000001, 6.508769999999999, 6.829789999999999, 7.31986, 7.11802, 6.77422, 7.26193, 6.90575, 7.00307, 5.99146, 7.46737, 6.57786, 6.90575, 6.311730000000001, 6.95655, 6.3952599999999995, 6.48311, 6.39693, 6.60665, 6.90575, 6.318969999999999, 6.802389999999999, 6.51471, 6.77992, 6.68461, 6.40523, 7.24423, 7.09008, 7.84502, 7.1624, 6.813439999999999, 6.907760000000001, 6.68461, 6.14633, 7.17012, 6.53814, 6.882439999999999, 6.46614, 6.90575, 6.36303, 7.04752, 6.83195, 7.20786, 6.95655, 6.90575, 7.09008, 7.014810000000001, 6.73815, 7.03878, 6.95655, 7.20786, 6.602589999999999, 6.551080000000001, 6.87626, 5.16479, 7.54961, 6.58893, 6.60665, 6.907760000000001, 7.64969, 6.9177100000000005, 6.18415, 7.43838, 6.551080000000001, 6.4599, 7.00307, 6.852239999999999, 6.5439099999999994, 6.6515699999999995, 6.551080000000001, 6.907760000000001, 7.04752, 6.41346, 6.551080000000001, 6.62007, 6.5439099999999994, 6.57925, 6.38012, 6.52209, 6.29157, 6.97167, 6.75926, 6.66823, 7.37776, 7.1309, 6.90575, 7.408530000000001, 6.04025, 7.0396600000000005, 7.09589, 6.73102, 6.87523, 6.90575, 7.20786, 6.90575, 6.47389, 6.99026, 7.0884100000000005, 6.206580000000001, 6.44572, 6.551080000000001, 6.53379, 6.90575, 6.46614, 6.90575, 6.2441699999999996, 6.90575, 7.01571, 6.42162, 6.85646, 6.46459, 6.62007, 6.95177, 6.58617, 6.50129, 6.2952699999999995, 6.90575, 7.00307, 7.346010000000001, 6.90575, 6.50429, 7.0942300000000005, 6.54535, 6.62007, 7.09008, 6.703189999999999, 7.46737, 6.39693, 6.38012, 6.802389999999999, 6.42162, 6.90575, 6.802389999999999, 6.44413, 7.127689999999999, 6.45677, 6.40192, 6.55393, 7.06902, 6.59987, 6.715380000000001, 6.39693, 6.57786, 6.68461, 7.00307, 6.85435, 6.937310000000001, 6.0845, 6.85646, 6.73221, 6.37673, 6.90575, 6.62007, 6.768489999999999, 6.63595, 6.90575, 6.75577, 6.77194, 6.77422, 6.2146099999999995, 6.9489, 7.354360000000001, 7.279319999999999, 6.6592899999999995, 7.06305, 6.61338, 7.00307, 6.84588, 6.35611, 6.8977, 7.20786, 6.90575, 6.95655, 6.07993, 7.10988, 6.802389999999999, 6.224559999999999, 6.57925, 6.927560000000001, 6.90575, 7.09008, 7.1309, 6.90575, 6.907760000000001, 6.62007, 7.6009, 6.95655, 6.90575, 6.796819999999999, 6.907760000000001, 6.8533, 7.196689999999999, 6.9147300000000005, 6.77194, 6.90575, 6.90575, 6.47697, 7.522939999999999, 6.62007, 7.1546199999999995, 6.551080000000001, 6.753439999999999, 7.313219999999999, 6.967910000000001, 7.6009, 7.37588, 6.86485, 6.41346, 6.7093, 7.24423, 6.16331, 7.05359, 6.86171, 7.1309, 7.93737, 6.39693, 6.58617, 7.67322, 6.551080000000001, 6.66185, 6.94119, 7.21891, 7.57558, 7.495539999999999, 6.10925, 6.59715, 6.03787, 6.354369999999999, 7.6009, 6.83303, 6.551080000000001, 7.279319999999999, 6.354369999999999, 7.925160000000001, 7.183110000000001, 6.77992, 6.62007, 7.00307, 7.86327, 6.70073, 7.1309, 6.16121, 6.65286, 6.78333, 6.90575, 6.67582, 6.47697, 6.907760000000001, 6.90575, 6.53233, 6.882439999999999, 7.0255399999999995, 6.715380000000001, 7.872839999999999, 6.49072, 6.90575, 6.63726, 6.3613, 6.79122, 6.53233, 6.05209, 6.8742, 6.6280399999999995, 6.907760000000001, 6.05209, 7.02997, 6.90575, 6.07074, 6.54822, 6.62007, 6.7226300000000005, 6.907760000000001, 6.50429, 6.47697, 6.77422, 8.047189999999999, 6.93537, 7.46737, 6.7569300000000005, 6.95655, 6.62007, 6.88755, 6.45205, 6.802389999999999, 6.32794, 8.03916, 6.829789999999999, 6.43775, 6.90575, 7.346660000000001, 7.6009, 6.7569300000000005, 6.48004, 6.889589999999999, 7.313219999999999, 6.9256, 6.59167, 6.57786, 6.53669, 7.313219999999999, 7.408530000000001, 7.3908, 6.90575, 6.95655, 6.13123, 6.90575, 7.09008, 6.566669999999999, 6.43775, 6.62007, 6.646389999999999, 6.802389999999999, 6.90575, 6.65286, 7.24423, 7.09008, 6.42162, 7.0422899999999995, 7.034389999999999, 6.44572, 6.20456, 6.57925, 6.16331, 6.818919999999999, 6.551080000000001, 6.53669, 6.48311, 6.765039999999999, 6.2634, 7.18917, 6.802389999999999, 6.50129, 6.2634, 7.38647, 6.96885, 6.10925, 7.196689999999999, 6.818919999999999, 6.90575, 6.62936, 7.09008, 6.62007, 6.95655, 7.49332, 6.62007, 6.753439999999999, 6.77422, 7.495539999999999, 7.47307, 6.47697, 6.90575, 6.90575, 7.909860000000001, 6.69084, 6.3716099999999996, 7.106610000000001, 6.40523, 5.627619999999999, 6.68461, 6.697030000000001, 7.740660000000001, 6.907760000000001, 6.43775, 6.813439999999999, 6.9256, 7.64969, 6.47697, 6.10925, 7.1309, 6.907760000000001, 6.745239999999999, 6.85646, 6.77422, 7.029089999999999, 6.62007, 7.06133, 7.24423, 6.95177, 7.54961, 6.87626, 6.318969999999999, 7.61332, 6.7511, 6.551080000000001, 7.034389999999999, 6.30992, 6.55393, 6.72743, 7.0967199999999995, 6.90575, 6.551080000000001, 6.39693, 6.90575, 6.639880000000001, 6.62007, 7.24423, 5.8999, 7.062189999999999, 6.47697, 6.829789999999999, 6.95655, 6.907760000000001, 7.293019999999999, 6.91175, 6.45834, 6.556780000000001, 6.5582, 6.91175, 6.45362, 7.1309, 6.8773, 6.955589999999999, 7.80588, 6.9613, 6.907760000000001, 6.90575, 7.18992, 6.90575, 7.31122, 6.6107, 6.807930000000001, 6.79794, 6.1717, 6.6592899999999995, 6.09131, 7.106610000000001, 6.90575, 7.66153, 7.22548, 6.87213, 7.17012, 6.39693, 7.35244, 6.56948, 8.00637, 7.05272, 6.90575, 6.802389999999999, 6.30992, 6.551080000000001, 6.77422, 7.05704, 6.802389999999999, 6.551080000000001, 7.1507, 7.6009, 5.7525699999999995, 6.90575, 6.95655, 6.84375, 6.95655, 6.8977, 7.34923, 6.93245, 6.34564, 7.03878, 7.400010000000001, 7.37588, 6.83195, 6.84162, 6.354369999999999, 6.608, 6.85646, 6.90575, 6.697030000000001, 6.5395900000000005, 6.739339999999999, 7.86327, 6.47697, 6.7511, 6.551080000000001, 6.57925, 7.1309, 6.551080000000001, 6.44572, 7.00307, 5.99146, 6.90575, 6.3699, 6.39693, 7.82405, 6.95655, 6.90575, 6.8426800000000005, 7.0518600000000005, 6.993930000000001, 6.79122, 6.2146099999999995, 6.78897, 7.259119999999999, 7.6811, 6.745239999999999, 7.27031, 6.721430000000001, 6.90575, 6.99485, 7.37776, 6.30992, 6.84375, 6.66696, 6.90575, 8.0229, 6.90575, 6.80351, 6.08677, 6.33683, 6.984719999999999, 6.354369999999999, 6.73102, 6.39693, 6.8773, 6.507280000000001, 6.81014, 6.802389999999999, 6.49072, 7.46737, 6.745239999999999, 6.2634, 7.181589999999999, 7.05618, 6.51619, 6.56948, 6.937310000000001, 6.90575, 6.39693, 6.82437, 6.753439999999999, 6.966019999999999, 6.802389999999999, 7.239210000000001, 6.5582, 6.907760000000001, 6.98008, 6.62407, 6.551080000000001, 6.41673, 7.313219999999999, 6.62007, 6.42162, 6.68461, 6.715380000000001, 6.85646, 6.57786, 5.8579300000000005, 6.2146099999999995, 7.313219999999999, 7.37776, 7.279319999999999, 6.73102, 6.53669, 7.04752, 6.507280000000001, 6.93049, 7.09008, 6.45047, 6.68461, 6.62007, 6.90575, 6.59167, 7.2724, 6.56526, 7.91936, 6.90575, 6.802389999999999, 7.484369999999999, 6.90575, 6.94698, 6.96885, 6.907760000000001, 7.293019999999999, 7.173189999999999, 6.815639999999999, 6.813439999999999, 6.90575, 6.90575, 7.09008, 6.90575, 7.226210000000001, 7.279319999999999, 7.91936, 7.00307, 6.47697, 6.551080000000001, 6.907760000000001, 6.715380000000001, 6.96885, 6.68461, 6.57368, 6.745239999999999, 6.53669, 6.8426800000000005, 7.520230000000001, 7.1082399999999994, 6.5582, 6.39693, 7.393260000000001, 6.6958, 6.95177, 6.2146099999999995, 6.9613, 6.907760000000001, 7.54961, 5.79606, 6.83087, 6.54535, 6.593039999999999, 7.04752, 7.37776, 6.8426800000000005, 6.96885, 6.752269999999999, 6.90575, 6.78672, 8.12089, 7.00307, 6.1944099999999995, 7.740660000000001, 6.907760000000001, 6.96979, 7.14283, 6.139880000000001, 6.89467, 7.183110000000001, 6.34388, 6.39024, 7.0255399999999995, 6.68461, 7.37776, 6.17379, 7.09008, 6.51323, 6.6592899999999995, 6.30992, 7.37776, 7.46737, 7.6009, 7.36455, 6.59715, 6.639880000000001, 6.62007, 6.551080000000001, 7.09008, 6.78333, 6.563860000000001, 7.0076, 6.880380000000001, 6.745239999999999, 6.82437, 7.127689999999999, 6.62007, 7.288930000000001, 6.68461, 6.354369999999999, 6.7546, 6.86485, 7.1309, 7.6009, 7.24423, 6.9256, 7.11314, 6.86693, 6.58617, 6.85646, 6.92363, 6.84588, 6.86171, 6.7417, 6.2146099999999995, 6.78897, 6.74759, 7.00307, 6.3935900000000006, 7.09008, 7.84385, 6.57647, 6.78672, 6.39693, 6.9707300000000005, 8.3082, 7.1309, 7.17012, 6.593039999999999, 6.86693, 6.259580000000001, 6.907760000000001, 6.64509, 7.09008, 6.39693, 6.80461, 7.037030000000001, 6.47697, 6.65286, 6.76388, 6.90575, 6.87626, 6.90575, 7.1507, 7.07834, 7.21082, 6.52942, 6.57786, 6.18826, 6.975410000000001, 7.16085, 6.83303, 7.61874, 6.48158, 6.99485, 6.907760000000001, 6.8384100000000005, 6.79122, 6.551080000000001, 6.6695, 7.279319999999999, 6.57925, 6.813439999999999, 6.68461, 6.802389999999999, 6.785589999999999, 7.313219999999999, 6.551080000000001, 7.29097, 6.98008, 7.20786, 6.802389999999999, 6.983789999999999, 6.75926, 6.55962, 6.90575, 7.4570300000000005, 7.1309, 6.566669999999999, 6.829789999999999, 6.85646, 6.77422, 7.90101, 6.32794, 6.966019999999999, 6.8384100000000005, 6.62007, 6.813439999999999, 6.551080000000001, 6.3315, 6.69332, 6.90575, 6.90575, 6.07535, 6.96885, 6.47697, 6.39693, 7.24423, 7.12367, 6.44413, 6.4677, 6.47697, 6.907760000000001, 6.4552, 7.1546199999999995, 7.37776, 7.18917, 7.136480000000001, 5.95584, 7.03878, 6.461469999999999, 6.697030000000001, 6.2146099999999995, 6.56526, 6.51471, 6.49375, 7.06048, 6.715380000000001, 6.95655, 7.1309, 6.95655, 6.90575, 6.76273, 6.86693, 6.68461, 6.90575, 6.95655, 7.17012, 7.0255399999999995, 7.495539999999999, 6.49224, 6.90575, 6.8865300000000005, 7.57353, 6.602589999999999, 6.30992, 6.23048, 6.530880000000001, 6.46459, 6.834110000000001, 7.313219999999999, 6.802389999999999, 6.66441, 7.251339999999999, 5.87774, 7.43838, 6.35957, 6.43775, 6.768489999999999, 7.17012, 6.90575, 7.281389999999999, 7.17702, 6.90575, 6.95845, 6.90575, 8.229510000000001, 7.136480000000001, 7.200419999999999, 7.37776, 6.39693, 7.46737, 6.802389999999999, 7.165489999999999, 6.62007, 6.90575, 7.70661, 6.47389, 6.35957, 6.07535, 7.20786, 6.43775, 6.3716099999999996, 6.907760000000001, 6.28972, 7.00307, 7.09008, 6.90575, 7.09008, 6.84801, 6.90575, 7.07242, 7.6009, 6.817830000000001, 7.346010000000001, 6.6592899999999995, 7.46737, 6.79122, 6.720219999999999, 6.90575, 6.90575, 6.68336, 6.892639999999999, 6.86485, 6.947939999999999, 6.955589999999999, 7.0255399999999995, 7.04752, 6.74288, 6.354369999999999, 7.398789999999999, 7.37776, 7.35883, 7.18463, 6.745239999999999, 7.05876, 6.68461, 7.64969, 6.04025, 6.507280000000001, 6.23441, 7.098380000000001, 6.2804, 7.6256, 6.633319999999999, 6.43455, 7.54961, 7.09008, 6.73459, 7.1293, 6.49224, 6.28413, 6.90575, 6.6515699999999995, 6.56948, 6.80461, 7.313219999999999, 6.68461, 7.09008, 8.26873, 7.12287, 6.43775, 6.6796, 6.758089999999999, 6.68461, 6.90575, 6.84588, 6.745239999999999, 6.10032, 8.048789999999999, 7.313219999999999, 6.745239999999999, 6.907760000000001, 6.90575, 6.90575, 6.2441699999999996, 8.08641, 7.08171, 6.97354, 7.30653, 6.55962, 6.58617, 6.74406, 7.56008, 6.1944099999999995, 7.408530000000001, 6.61338, 6.32794, 7.18007, 6.95655, 6.58617, 7.313219999999999, 7.1309, 6.18826, 6.49224, 6.821110000000001, 6.47697, 6.813439999999999, 7.43838, 6.551080000000001, 6.43775, 6.90575, 6.53233, 6.61874, 7.88231, 6.90575, 6.7569300000000005, 7.08255, 7.37776, 6.44413, 6.90575, 6.51471, 6.551080000000001, 6.90575, 7.35372, 7.46737, 6.802389999999999, 7.346010000000001, 6.90575, 6.86693, 6.829789999999999, 6.65286, 6.7334, 7.2998, 6.65415, 6.9256, 6.90575, 6.52209, 6.39693, 6.49072, 7.32251, 6.29711, 7.04752, 6.272880000000001, 7.04752, 6.752269999999999, 6.42162, 6.90575, 6.62007, 6.85646, 6.745239999999999, 6.9256, 6.51471, 6.90575, 6.16331, 6.56526, 6.813439999999999, 6.08677, 6.7369699999999995, 7.11883, 7.46737, 6.35957, 6.907760000000001, 6.58617, 7.1309, 6.39693, 7.46737, 6.54247, 6.3716099999999996, 7.293019999999999, 6.08677, 7.64969, 6.95655, 8.13153, 6.3613, 6.551080000000001, 6.907760000000001, 6.907760000000001, 6.43775, 6.83518, 6.984719999999999, 7.062189999999999, 6.77992, 7.195189999999999, 7.185389999999999, 6.01616, 6.33683, 6.70073, 7.20786, 6.551080000000001, 7.1309, 6.354369999999999, 6.90575, 6.551080000000001, 6.85013, 7.0255399999999995, 6.39693, 6.768489999999999, 6.23441, 6.5395900000000005, 6.907760000000001, 7.12287, 6.745239999999999, 7.21744, 6.49072, 7.24423, 6.802389999999999, 6.44572, 7.00307, 6.966019999999999, 6.62936, 6.28227, 7.64969, 7.3696, 6.90575, 7.20786, 6.57647, 6.5903, 7.00307, 6.57925, 6.907760000000001, 6.59578, 7.014810000000001, 6.64509, 6.608, 6.68461, 6.58617, 6.62007, 7.00307, 6.95655, 6.12249, 6.62007, 7.09008, 6.83303, 6.98101, 6.81014, 7.37776, 6.85435, 7.64969, 7.91936, 6.9256, 6.6733, 7.5574699999999995, 6.13773, 6.30992, 6.47697, 6.802389999999999, 6.65286, 6.57368, 5.70711, 7.37776, 7.408530000000001, 7.1155800000000005, 7.91936, 7.09008, 7.1309, 6.58617, 6.6592899999999995, 6.90575, 7.092569999999999, 6.86485, 7.57558, 7.200419999999999, 6.95655, 6.2146099999999995, 7.400010000000001, 8.537, 6.07993, 6.99942, 6.61338, 7.64969, 6.68461, 6.57925, 7.09008, 7.1082399999999994, 6.83518, 6.90575, 6.84162, 7.313219999999999, 6.55962, 6.07993, 6.633319999999999, 7.09008, 7.313219999999999, 6.79122, 6.66823, 7.2861899999999995, 6.802389999999999, 6.703189999999999, 7.09008, 7.6009, 6.28972, 6.68461, 7.37776, 6.74993, 6.72623, 7.09008, 7.25347, 7.585789999999999, 6.45362, 6.354369999999999, 6.90575, 7.346010000000001, 7.027310000000001, 6.907760000000001, 6.9489, 7.495539999999999, 6.745239999999999, 6.90575, 6.80572, 6.2634, 6.68461, 6.633319999999999, 7.30317, 6.95655, 6.907760000000001, 5.742999999999999, 6.39693, 7.313219999999999, 7.09008, 6.47697, 7.196689999999999, 6.30262, 7.07412, 6.68461, 7.42357, 6.715380000000001, 6.9828600000000005, 6.49979, 6.27099, 7.393260000000001, 6.829789999999999, 6.32794, 6.28786, 6.68461, 6.62007, 7.12287, 6.2146099999999995, 6.84162, 6.2146099999999995, 6.983789999999999, 6.95655, 6.88755, 7.04316, 6.90575, 6.84162, 6.45362, 6.85646, 6.46925, 7.00307, 5.99146, 6.22654, 6.967910000000001, 6.66568, 6.90575, 6.62007, 6.60665, 7.04752, 7.062189999999999, 7.313219999999999, 7.04752, 7.0884100000000005, 6.90575, 6.551080000000001, 6.90575, 7.09008, 6.386880000000001, 6.58617, 6.90073, 6.745239999999999, 7.2233, 6.8773, 6.813439999999999, 7.037030000000001, 7.6009, 6.685860000000001, 6.38856, 6.47697, 7.46737, 6.551080000000001, 6.87213, 6.73102, 6.30992, 7.45298, 6.882439999999999, 6.90675, 6.551080000000001, 6.85646, 6.563860000000001, 6.381819999999999, 6.769639999999999, 6.73102, 7.06133, 6.68461, 6.2146099999999995, 6.4708, 7.08171, 6.90575, 7.6009, 6.52062, 6.60935, 6.9828600000000005, 7.338889999999999, 6.22654, 7.01392, 6.2205900000000005, 7.44659, 7.388330000000001, 6.85118, 7.24423, 6.632000000000001, 6.90575, 7.10906, 6.84588, 7.17012, 6.52503, 6.2860000000000005 ], "y0": "male&yes&yes" } ], "layout": { "legend": { "tracegroupgap": 0, "x": 1.1, "xanchor": "right", "y": 1.1 }, "margin": { "b": 40, "l": 180, "r": 0, "t": 10 }, "paper_bgcolor": "#eeeeff", "plot_bgcolor": "#ffffff", "showlegend": true, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "barpolar" } ], "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" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "colorscale": { "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" ] ], "sequential": [ [ 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, "#f0f921" ] ], "sequentialminus": [ [ 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, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "text": "Gender & Married & LivesInCity ~ Wage", "x": 0.5 }, "violingap": 0, "violingroupgap": 0, "violinmode": "overlay", "xaxis": { "showgrid": false, "showline": true, "showticklabels": true, "title": { "text": "Wage (log)" }, "visible": true, "zeroline": true }, "yaxis": { "showgrid": true, "showline": true, "showticklabels": true, "side": "left", "title": { "text": "Gender & Married & LivesInCity" }, "visible": true, "zeroline": true } } }, "text/html": [ "
\n", " \n", " \n", "
\n", " \n", "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "#intersection of three different Xcolumns:\n", "traces,layout=cmplot(train, xcol=[\"sex\",\"married\",\"smsa\"], ycol=\"lwage\", ycolorgroups=False, side=\"both\",\n", " pointsmaxdisplayed=300)\n", "layout[\"legend_tracegroupgap\"]=0\n", "layout[\"margin_l\"]=180\n", "layout[\"margin_r\"]=0\n", "layout[\"title_text\"]=\"Gender & Married & LivesInCity ~ Wage\"\n", "layout[\"yaxis_title\"]=\"Gender & Married & LivesInCity\"\n", "layout[\"xaxis_title\"]=\"Wage (log)\"\n", "go.Figure(traces,layout)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Super imposition of distributions: one of the best features of cloudy mountain plots" ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "fillcolor": "hsla(246, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(246, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "no", "line": { "color": "hsla(246, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(246, 70%, 70%,1)", "line": { "color": "hsla(246, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "pentagon" }, "meanline": { "color": "hsla(246, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage no", "orientation": "h", "pointpos": 0.6, "points": false, "scalegroup": "no", "scalemode": "count", "showlegend": true, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.99942, 7.67322, 7.09008, 6.55536, 6.646389999999999, 7.02643, 7.32975, 6.39693, 6.04025, 7.91936, 6.745239999999999, 7.068169999999999, 6.907760000000001, 6.7417, 7.71869, 6.882439999999999, 6.50279, 6.77878, 6.907760000000001, 6.93342, 7.06902, 6.57368, 6.829789999999999, 7.557989999999999, 7.0255399999999995, 6.57925, 7.313219999999999, 6.47697, 7.1309, 6.551080000000001, 6.882439999999999, 6.48004, 6.60665, 6.10925, 5.78383, 6.94505, 7.17012, 7.11477, 6.593039999999999, 6.49979, 6.39192, 6.614730000000001, 6.30992, 7.116389999999999, 6.30992, 7.554860000000001, 6.90675, 6.90575, 6.90575, 7.408530000000001, 7.0076, 6.88857, 7.041410000000001, 6.30992, 7.313219999999999, 6.62007, 6.90575, 6.802389999999999, 7.074960000000001, 7.5606, 5.99146, 5.94803, 6.2146099999999995, 7.282760000000001, 6.39693, 6.65286, 6.23048, 6.16331, 7.56008, 6.28227, 6.30992, 6.05912, 6.30992, 6.602589999999999, 7.47307, 6.2146099999999995, 6.90575, 6.461469999999999, 7.09008, 7.46737, 6.829789999999999, 6.60665, 6.74052, 6.745239999999999, 7.6009, 6.62007, 6.551080000000001, 6.907760000000001, 7.60589, 6.53669, 6.5582, 6.2146099999999995, 7.37776, 6.6995, 6.27476, 6.48311, 6.69084, 6.54965, 6.882439999999999, 6.663130000000001, 6.7226300000000005, 7.20786, 6.802389999999999, 6.79122, 6.62007, 6.42162, 6.12249, 6.28227, 6.745239999999999, 6.49677, 6.317159999999999, 6.2146099999999995, 7.0884100000000005, 6.68461, 5.8999, 7.01392, 7.1107, 6.9363399999999995, 6.1070199999999994, 6.85646, 6.44572, 6.84588, 7.31255, 6.90575, 6.802389999999999, 7.111510000000001, 6.2146099999999995, 6.66696, 6.907760000000001, 6.90575, 6.6592899999999995, 8.047189999999999, 6.62407, 7.0076, 6.30992, 6.17379, 6.55393, 6.24611, 7.78322, 6.563860000000001, 6.60665, 6.507280000000001, 6.461469999999999, 6.43775, 7.82405, 7.75148, 6.62407, 7.346010000000001, 7.1309, 6.51471, 6.84055, 7.041410000000001, 6.51471, 6.551080000000001, 7.346010000000001, 6.966019999999999, 6.90575, 7.17012, 6.5820300000000005, 6.354369999999999, 7.82405, 6.39693, 6.88755, 6.39693, 6.39693, 6.65286, 6.622739999999999, 6.90575, 5.7525699999999995, 6.15273, 7.04752, 6.770789999999999, 6.907760000000001, 7.00125, 7.064760000000001, 7.00307, 6.907760000000001, 5.463830000000001, 6.745239999999999, 7.045780000000001, 6.54535, 6.37673, 6.907760000000001, 6.10925, 8.16052, 6.745239999999999, 6.765039999999999, 6.77422, 7.1309, 6.77422, 6.87213, 6.551080000000001, 6.6567300000000005, 6.80017, 7.226210000000001, 6.10925, 7.495539999999999, 8.05516, 7.06987, 6.90575, 6.43775, 7.179310000000001, 7.313219999999999, 6.82437, 6.715380000000001, 7.173189999999999, 6.62007, 6.77878, 6.47697, 6.85118, 6.49224, 7.313219999999999, 7.158510000000001, 6.818919999999999, 6.68461, 6.57647, 6.43455, 5.89715, 6.2146099999999995, 6.34564, 6.556780000000001, 6.7093, 7.00307, 6.551080000000001, 6.53669, 6.69084, 7.313219999999999, 6.10925, 6.05209, 6.62007, 6.4552, 6.77422, 6.87005, 6.65544, 6.42162, 5.9269300000000005, 6.6783399999999995, 6.317159999999999, 7.1309, 6.62007, 6.96508, 6.19236, 6.57368, 6.39693, 6.77422, 7.408530000000001, 7.333019999999999, 6.37502, 7.04752, 6.68461, 6.86693, 6.68461, 6.90575, 6.45362, 6.49072, 6.47697, 6.90575, 6.67203, 6.7334, 7.34278, 6.802389999999999, 6.9256, 6.90575, 6.91075, 6.6592899999999995, 6.6592899999999995, 6.16331, 7.07834, 6.745239999999999, 7.20786, 6.63857, 7.475910000000001, 6.62007, 6.4892, 7.00307, 6.7901, 6.65286, 7.43838, 7.15383, 6.88755, 7.26193, 6.23245, 6.30445, 6.92461, 7.313219999999999, 7.37776, 5.8579300000000005, 6.85646, 6.2441699999999996, 7.26193, 5.99146, 6.907760000000001, 6.85646, 7.481560000000001, 7.04752, 6.61338, 6.73815, 5.8579300000000005, 6.38856, 6.768489999999999, 6.90575, 5.4161, 7.1507, 7.282760000000001, 7.00307, 6.66058, 6.58064, 6.30079, 6.90575, 6.64249, 5.76832, 6.715380000000001, 6.62007, 7.1309, 6.51471, 5.99146, 6.95655, 6.65286, 6.16331, 7.1309, 6.16542, 5.93489, 7.1333, 7.24423, 6.04025, 6.86901, 6.802389999999999, 7.04752, 7.313219999999999, 6.54822, 6.95655, 7.50108, 6.39693, 6.551080000000001, 7.07918, 5.70378, 6.7369699999999995, 6.87213, 5.89715, 6.39693, 6.8773, 6.708080000000001, 5.9454199999999995, 6.52942, 6.818919999999999, 7.041410000000001, 6.4677, 6.06611, 6.882439999999999, 6.703189999999999, 6.37502, 7.37776, 6.907760000000001, 6.752269999999999, 6.47697, 7.04752, 6.802389999999999, 6.768489999999999, 6.2480400000000005, 6.984719999999999, 5.9269300000000005, 6.49224, 6.385190000000001, 7.1309, 7.663880000000001, 6.33328, 7.07242, 6.907760000000001, 6.48311, 8.05516, 6.807930000000001, 6.785589999999999, 6.907760000000001, 6.035480000000001, 6.05209, 7.338889999999999, 7.0255399999999995, 7.00307, 5.99146, 6.33683, 6.07993, 7.488289999999999, 6.90575, 6.697030000000001, 6.354369999999999, 6.802389999999999, 6.62007, 6.68461, 6.68835, 6.62007, 6.36475, 6.85646, 6.95655, 7.20786, 6.8977, 6.802389999999999, 6.90575, 6.84055, 7.676010000000001, 6.43775, 7.20786, 6.89163, 7.0121199999999995, 6.85646, 6.54965, 6.65286, 6.05209, 6.697030000000001, 6.90575, 6.68461, 6.62007, 7.24423, 6.36819, 6.8844899999999996, 6.62007, 6.745239999999999, 5.7525699999999995, 6.85646, 6.025869999999999, 6.7334, 5.9269300000000005, 5.98896, 6.48004, 6.20456, 6.55393, 6.5903, 7.02643, 6.31536, 6.19236, 6.43615, 6.42162, 6.93537, 6.802389999999999, 6.47697, 6.2634, 7.79028, 6.10032, 7.408530000000001, 6.6174, 6.907760000000001, 5.95324, 5.99146, 6.05209, 6.2441699999999996, 6.39693, 6.79122, 6.9196800000000005, 6.9147300000000005, 6.90575, 5.9269300000000005, 6.646389999999999, 6.746410000000001, 6.30992, 6.18826, 6.5467900000000006, 7.522939999999999, 6.907760000000001, 6.715380000000001, 7.04752, 6.54247, 6.753439999999999, 6.51471, 7.034389999999999, 6.65286, 7.262630000000001, 6.47697, 7.20786, 6.90575, 6.30992, 6.85646, 6.30445, 6.32972, 6.05209, 6.34564, 6.95655, 6.49224, 6.62007, 5.82895, 6.39693, 6.06146, 6.03787, 6.22654, 6.90575, 6.91374, 7.6009, 6.5903, 7.1592899999999995, 6.57786, 6.6783399999999995, 6.72383, 6.41182, 6.907760000000001, 7.236339999999999, 6.802389999999999, 6.10925, 6.715380000000001, 6.551080000000001, 6.97635, 6.685860000000001, 6.35089, 5.70378, 6.59167, 6.461469999999999, 6.984719999999999, 6.53233, 6.646389999999999, 6.16331, 6.95655, 7.459910000000001, 7.0255399999999995, 7.1309, 6.22654, 6.10925, 7.08171, 6.64249, 7.49332, 7.495539999999999, 7.1309, 6.3716099999999996, 6.745239999999999, 6.58617, 6.48158, 6.94022, 6.41836, 6.10925, 7.48717, 7.0193, 6.983789999999999, 6.633319999999999, 6.29157, 6.90575, 6.93537, 6.51323, 6.715380000000001, 6.47697, 7.37212, 6.56244, 7.0184, 6.834110000000001, 7.09008, 6.52942, 7.4553, 7.00307, 6.37502, 7.24423, 6.48158, 6.57925, 6.68461, 6.34388, 6.10925, 6.90575, 6.90575, 7.75577, 6.82437, 6.43775, 6.90575, 6.42162, 6.769639999999999, 6.818919999999999, 6.551080000000001, 7.279319999999999, 6.96508, 6.44572, 6.28972, 7.1082399999999994, 7.135689999999999, 6.49072, 7.251339999999999, 6.58064, 6.807930000000001, 7.33368, 6.77422, 6.60394, 6.68461, 7.1309, 7.201169999999999, 5.99146, 6.68461, 6.39693, 6.85751, 6.33683, 6.08677, 7.24423, 7.1309, 6.17587, 6.802389999999999, 6.30992, 6.36303, 6.77422, 6.2860000000000005, 6.828710000000001, 6.47697, 6.72743, 6.55251, 6.29157, 6.5582, 6.62407, 5.9814099999999994, 6.76273, 7.06902, 6.80128, 6.966019999999999, 6.6592899999999995, 6.39693, 6.57786, 6.65286, 6.293419999999999, 5.64545, 6.79122, 6.987489999999999, 6.30992, 5.7525699999999995, 6.55536, 7.09008, 6.28972, 6.2146099999999995, 7.04752, 6.90575, 6.39693, 7.43838, 6.47697, 6.77422, 6.2634, 7.46737, 6.47697, 6.90575, 7.279319999999999, 6.815639999999999, 6.65028, 7.17012, 6.802389999999999, 6.602589999999999, 6.47697, 6.58755, 6.621410000000001, 6.907760000000001, 7.09589, 5.82305, 7.67322, 6.85646, 5.78074, 7.2957399999999994, 5.84354, 6.802389999999999, 6.58064, 7.00307, 6.90575, 7.503839999999999, 6.45677, 6.950810000000001, 6.15273, 7.57558, 6.2146099999999995, 6.7334, 6.86066, 6.48004, 7.00307, 6.8200199999999995, 6.47697, 6.90575, 7.39388, 7.4787300000000005, 6.2146099999999995, 6.43775, 7.24065, 6.13773, 6.3952599999999995, 7.1025, 7.04752, 5.883319999999999, 7.09008, 6.77992, 6.9256, 6.035480000000001, 7.22766, 7.475339999999999, 6.272880000000001, 6.27099, 6.85646, 6.907760000000001, 6.92166, 5.9269300000000005, 6.30992, 6.24998, 6.893660000000001, 6.43615, 7.04752, 6.30992, 6.39693, 5.59842, 6.1334, 6.58617, 6.765039999999999, 6.85646, 6.892639999999999, 6.95655, 6.43775, 6.90575, 6.81124, 6.966019999999999, 6.8865300000000005, 7.334980000000001, 6.72743, 6.93245, 6.901739999999999, 7.0255399999999995, 6.83518, 6.77992, 6.68461, 7.696210000000001, 6.53669, 6.126869999999999, 6.54965, 7.31122, 5.8693, 6.90575, 6.0282800000000005, 6.30992, 6.23245, 6.31536, 7.486610000000001, 6.52942, 6.8426800000000005, 6.34564, 6.44413, 6.62007, 6.93245, 6.907760000000001, 5.99146, 7.18917, 6.7093, 6.75926, 6.5439099999999994, 6.1717, 7.9459100000000005, 6.77422, 7.424760000000001, 6.45362, 5.70378, 6.43775, 6.90575, 7.6009, 6.90575, 7.46737, 6.694560000000001, 6.907760000000001, 8.16052, 6.17379, 6.98008, 5.81711, 6.984719999999999, 6.802389999999999, 6.30079, 5.99146, 6.802389999999999, 7.32647, 6.745239999999999, 7.1309, 6.7901, 5.96101, 6.62007, 6.84055, 6.58617, 7.1309, 6.62407, 6.07993, 6.795710000000001, 7.212289999999999, 6.93925, 6.47697, 6.354369999999999, 7.9724699999999995, 6.11589, 7.64969, 6.703189999999999, 6.658010000000001, 6.47697, 6.58617, 6.893660000000001, 6.51471, 6.06611, 6.68461, 7.331060000000001, 6.64118, 6.33328, 6.47697, 7.475910000000001, 7.20786, 6.81124, 7.279319999999999, 6.80461, 7.10906, 6.77422, 7.01571, 6.54822, 6.57786, 6.47697, 7.0255399999999995, 5.9269300000000005, 7.46737, 5.8141300000000005, 6.69084, 6.47697, 6.88755, 7.24423, 6.2634, 6.95655, 6.67077, 6.85646, 7.313219999999999, 6.98008, 6.75577, 6.01616, 7.09008, 6.697030000000001, 6.79794, 6.2634, 6.61874, 6.64118, 7.1309, 6.98101, 6.90575, 5.90263, 6.17794, 6.77422, 6.96035, 6.35957, 6.829789999999999, 6.66568, 7.09008, 6.10925, 6.85646, 6.90575, 6.95655, 6.58617, 6.278519999999999, 6.57925, 6.907760000000001, 6.802389999999999, 6.6567300000000005, 7.696210000000001, 6.68461, 6.10925, 6.785589999999999, 6.43775, 6.802389999999999, 7.04752, 6.48311, 7.17778, 6.2634, 6.62007, 6.785589999999999, 7.033510000000001, 6.04025, 7.1107, 6.57647, 6.85646, 6.39693, 6.530880000000001, 6.36819, 6.90575, 6.30992, 6.85646, 6.62007, 6.04025, 6.79122, 6.30992, 6.62007, 6.81014, 6.551080000000001, 6.56526, 6.551080000000001, 7.09008, 6.86693, 6.9613, 6.7901, 6.95655, 6.65286, 5.9814099999999994, 6.43775, 5.940169999999999, 7.46737, 6.35957, 7.18007, 6.2146099999999995, 7.46737, 6.90575, 6.253830000000001, 7.37776, 6.90575, 7.46737, 6.18826, 6.4552, 6.15698, 7.346010000000001, 6.68461, 7.6009, 7.14913, 6.96885, 7.27031, 6.317159999999999, 6.72503, 6.62007, 6.802389999999999, 5.93754, 6.802389999999999, 6.52356, 6.55251, 6.72383, 6.885510000000001, 6.68461, 6.52209, 7.313219999999999, 6.94698, 6.1717, 5.96615, 6.41673, 6.907760000000001, 6.29157, 7.00307, 6.90375, 6.1944099999999995, 7.09008, 6.90575, 6.47697, 7.26193, 5.98645, 6.60665, 5.8579300000000005, 7.37776, 6.907760000000001, 6.858569999999999, 6.745239999999999, 7.495539999999999, 7.1546199999999995, 6.6592899999999995, 6.77422, 6.893660000000001, 6.86693, 7.408530000000001, 6.72743, 6.42972, 6.633319999999999, 7.0579, 6.68461, 7.233460000000001, 6.90575, 6.77194, 5.8861, 6.3243599999999995, 6.55393, 6.90575, 6.10925, 6.9613, 6.90575, 6.90975, 7.1309, 6.745239999999999, 6.55536, 6.02102, 6.7334, 6.47697, 6.53669, 6.95655, 6.551080000000001, 6.16331, 7.6009, 6.90575, 7.17242, 6.3421199999999995, 6.9196800000000005, 6.65286, 6.51471, 7.24423, 6.39693, 6.85646, 6.551080000000001, 6.35611, 6.34914, 7.696210000000001, 6.802389999999999, 5.940169999999999, 6.253830000000001, 6.90575, 6.48464, 6.49224, 6.90575, 7.014810000000001, 6.551080000000001, 7.20786, 7.02997, 6.89467, 6.829789999999999, 7.17012, 7.28207, 6.69084, 7.1929300000000005, 6.33328, 6.85646, 6.29157, 6.912739999999999, 6.80017, 6.97635, 7.17012, 6.59715, 7.0884100000000005, 7.16627, 6.19644, 6.39693, 5.9814099999999994, 6.90575, 6.6958, 5.01728, 7.279319999999999, 7.136480000000001, 6.608, 6.68461, 7.9831, 6.77422, 6.9828600000000005, 6.2146099999999995, 7.09506, 6.44572, 6.2634, 6.90575, 6.90575, 7.08339, 5.96615, 7.11233, 6.912739999999999, 6.68461, 6.4708, 7.346010000000001, 6.68085, 7.24423, 6.62007, 6.15698, 6.15698, 6.893660000000001, 6.30262, 7.30317, 6.56808, 6.02102, 6.2634, 7.183110000000001, 6.33328, 6.907760000000001, 6.9707300000000005, 6.6174, 7.43838, 6.45047, 6.9707300000000005, 6.3952599999999995, 7.09008, 6.49979, 6.94986, 7.06902, 6.745239999999999, 6.68461, 7.22766, 6.68461, 6.93049, 7.1309, 6.975410000000001, 6.2672, 6.551080000000001, 6.59987, 6.2146099999999995, 6.95655, 6.694560000000001, 7.09008, 6.849069999999999, 6.614730000000001, 6.72743, 7.03615, 6.05209, 6.83518, 7.09008, 6.1070199999999994, 6.712960000000001, 6.30992, 7.07834, 6.39693, 7.346010000000001, 6.938280000000001, 6.715380000000001, 6.7511, 6.715380000000001, 6.3935900000000006, 7.26193, 6.49072, 6.745239999999999, 6.721430000000001, 5.97635, 6.59715, 6.00389, 6.9828600000000005, 6.29157, 6.62007, 6.85646, 6.86901, 7.04752, 6.14633, 6.0282800000000005, 6.563860000000001, 6.73102, 6.3243599999999995, 6.721430000000001, 6.6796, 7.062189999999999, 7.313219999999999, 6.34564, 6.561030000000001, 7.06987, 6.87626, 6.505780000000001, 6.745239999999999, 6.39859, 6.966019999999999, 6.575080000000001, 6.40192, 6.70073, 6.56808, 6.7334, 6.6796, 6.8384100000000005, 5.42935, 6.85751, 6.745239999999999, 7.08171, 6.85646, 6.47697, 6.907760000000001, 6.28972, 7.2724, 6.61874, 7.0255399999999995, 6.27099, 6.90575, 6.34564, 6.47697, 6.9828600000000005, 6.224559999999999, 6.551080000000001, 6.551080000000001, 6.23441, 6.77422, 7.1309, 6.52209, 7.49332, 7.4832399999999994, 6.90575, 6.715380000000001, 6.90575, 7.1309, 6.86171, 6.68461, 6.715380000000001, 6.551080000000001, 6.802389999999999, 6.33683, 6.9187, 7.0579, 6.35611, 7.02376, 6.45834, 5.8141300000000005, 6.90575, 6.90575, 5.9269300000000005, 7.42833, 6.463030000000001, 6.86797, 6.95655, 6.88755, 6.4677, 7.3651800000000005, 6.748760000000001, 6.975410000000001, 7.82405, 6.5439099999999994, 6.42162, 6.8844899999999996, 7.16085, 6.04025, 6.90575, 7.00307, 6.907760000000001, 6.817830000000001, 7.279319999999999, 6.907760000000001, 6.41017, 6.90575, 6.65286, 6.787839999999999, 6.62007, 7.0967199999999995, 6.55393, 7.0255399999999995, 7.00307, 7.31122, 6.39693, 7.31122, 6.44572, 6.59578, 6.47697, 7.226210000000001, 6.62007, 6.69332, 7.09008, 5.8579300000000005, 7.183110000000001, 7.728860000000001, 6.54965, 7.04752, 6.9256, 6.3952599999999995, 5.65249, 7.041410000000001, 6.4599, 6.96035, 7.1333, 6.99942, 6.38012, 7.200419999999999, 6.06379, 7.18007, 7.1309, 6.461469999999999, 6.85646, 7.17012, 7.03527, 6.62007, 7.313219999999999, 5.8861, 5.8861, 7.20786, 6.907760000000001, 6.90575, 6.05209, 7.1452, 6.02102, 5.82895, 6.33683, 7.8935699999999995, 6.34564, 6.8977, 6.3699, 6.6567300000000005, 6.813439999999999, 6.90575, 6.05209, 6.05209, 6.551080000000001, 6.66568, 6.57925, 6.2146099999999995, 6.907760000000001, 6.90575, 7.106610000000001, 5.52146, 6.424869999999999, 6.65415, 6.745239999999999, 6.88346, 6.3207699999999996, 7.696210000000001, 7.64779, 7.313219999999999, 5.95584, 6.715380000000001, 6.8966899999999995, 6.61338, 6.23245, 6.95655, 5.52146, 7.3981699999999995, 6.06379, 6.2205900000000005, 6.813439999999999, 6.752269999999999, 6.86066, 6.7334, 6.318969999999999, 6.79122, 6.0822199999999995, 5.95324, 7.1309, 6.54103, 6.24222, 6.68461, 6.9177100000000005, 6.05209, 7.04752, 6.78672, 7.09008, 7.1309, 6.47697, 7.1025, 5.9814099999999994, 7.24423, 7.451239999999999, 7.198180000000001, 7.27101, 7.245660000000001, 7.279319999999999, 6.85646, 7.67322, 6.76273, 6.82437, 6.47697, 6.885510000000001, 7.279319999999999, 7.1309, 6.966019999999999, 6.73102, 6.70073, 6.633319999999999, 6.07993, 7.00307, 7.6009, 6.22654, 6.907760000000001, 6.32615, 6.508769999999999, 6.551080000000001, 6.39693, 6.21661, 7.11802, 6.90575, 7.17012, 7.00307, 5.99146, 7.46737, 6.90575, 6.58755, 6.8254600000000005, 6.311730000000001, 6.95655, 6.62007, 6.3952599999999995, 7.04752, 6.50429, 6.39693, 6.90575, 6.60665, 6.90575, 6.70441, 6.51471, 6.77992, 5.99146, 6.40523, 6.18826, 7.24423, 7.09008, 6.62007, 7.1624, 6.813439999999999, 6.907760000000001, 7.17012, 6.53814, 6.2146099999999995, 6.882439999999999, 6.36647, 6.47697, 6.68461, 7.408530000000001, 6.46614, 6.90575, 6.95655, 5.8579300000000005, 6.745239999999999, 5.7462, 7.20786, 7.04752, 7.04316, 6.17379, 6.83195, 6.8533, 7.20786, 6.62007, 6.95655, 6.90575, 7.09008, 7.014810000000001, 6.73815, 6.65028, 7.03878, 7.266830000000001, 6.95655, 6.58617, 6.49072, 7.20786, 6.602589999999999, 6.551080000000001, 6.87626, 5.16479, 7.54961, 6.551080000000001, 6.49224, 6.907760000000001, 7.64969, 6.9177100000000005, 6.35957, 6.68461, 7.43838, 5.99146, 6.41182, 6.43775, 6.43775, 6.4599, 6.04025, 7.00307, 5.99146, 6.852239999999999, 6.6515699999999995, 6.16331, 6.3243599999999995, 6.551080000000001, 6.802389999999999, 6.62007, 6.5439099999999994, 6.57925, 6.38012, 6.4151, 6.29157, 6.39693, 5.01064, 6.75926, 6.73102, 6.66823, 7.37776, 6.77422, 7.1309, 6.90575, 7.408530000000001, 6.39693, 7.0396600000000005, 7.09589, 7.10003, 6.87523, 6.90575, 6.90575, 6.47389, 6.99026, 7.0884100000000005, 5.5606800000000005, 6.44572, 6.802389999999999, 6.551080000000001, 6.53379, 6.46614, 6.61338, 6.85646, 6.10925, 6.99118, 6.2441699999999996, 7.1592899999999995, 6.90575, 7.01571, 6.42162, 6.716589999999999, 6.85646, 6.907760000000001, 6.8426800000000005, 6.46459, 6.62007, 6.58617, 6.85646, 6.90575, 7.6009, 6.30992, 7.00307, 6.17379, 7.01392, 6.62007, 7.346010000000001, 6.90575, 6.50429, 7.24423, 7.0942300000000005, 6.3716099999999996, 6.62007, 7.09008, 6.703189999999999, 6.53233, 6.58617, 6.602589999999999, 6.9622399999999995, 6.38012, 6.802389999999999, 6.43935, 6.259580000000001, 7.044910000000001, 6.42162, 6.90575, 6.802389999999999, 6.44413, 7.127689999999999, 6.45677, 7.06902, 6.59987, 6.802389999999999, 6.715380000000001, 6.715380000000001, 7.00307, 6.937310000000001, 6.2106, 6.708080000000001, 6.0845, 6.907760000000001, 6.43775, 6.2146099999999995, 6.2634, 6.74406, 7.54961, 6.90575, 6.62007, 6.768489999999999, 6.63595, 5.82895, 6.90575, 6.75577, 6.04025, 6.77422, 6.2146099999999995, 6.62007, 6.9489, 7.354360000000001, 7.279319999999999, 6.6592899999999995, 7.06305, 6.61338, 7.00307, 6.49224, 6.07993, 6.84588, 6.35611, 6.8977, 6.551080000000001, 7.20786, 6.90575, 7.59287, 7.1309, 7.393260000000001, 6.95655, 6.834110000000001, 6.07993, 7.10988, 6.802389999999999, 6.224559999999999, 6.57925, 6.90575, 6.90575, 5.8693, 6.16542, 6.62007, 6.963189999999999, 6.95655, 6.90575, 6.90575, 6.796819999999999, 6.66568, 6.73459, 6.907760000000001, 6.8533, 6.43615, 6.9147300000000005, 6.551080000000001, 6.77194, 6.90575, 6.90575, 6.66823, 7.0255399999999995, 7.522939999999999, 6.62007, 6.354369999999999, 7.1546199999999995, 6.90575, 6.551080000000001, 5.78383, 7.313219999999999, 6.967910000000001, 6.816739999999999, 7.6009, 6.51471, 7.37588, 6.86485, 6.41346, 6.7093, 6.551080000000001, 6.22654, 7.24423, 5.70378, 6.16331, 6.86171, 6.58617, 7.1309, 6.39693, 6.58617, 7.67322, 6.551080000000001, 6.2146099999999995, 6.77422, 6.66185, 6.90575, 7.495539999999999, 6.29157, 6.59715, 7.09008, 6.03787, 6.354369999999999, 7.6009, 6.83303, 6.63068, 6.551080000000001, 6.354369999999999, 6.77422, 7.183110000000001, 6.77992, 7.00307, 7.86327, 6.795710000000001, 7.1309, 6.32794, 6.16121, 6.65286, 6.802389999999999, 6.715380000000001, 6.78333, 6.90575, 6.67582, 6.47697, 6.907760000000001, 6.90575, 6.682110000000001, 6.53233, 6.882439999999999, 7.0255399999999995, 6.715380000000001, 7.872839999999999, 6.49072, 6.90575, 6.4892, 6.63726, 6.12249, 6.79122, 6.53233, 6.05209, 6.907760000000001, 6.8742, 5.68698, 7.02997, 6.715380000000001, 6.2146099999999995, 6.90575, 7.313219999999999, 6.3699, 6.07074, 6.77992, 6.54822, 6.62007, 6.59987, 6.62007, 6.8966899999999995, 6.802389999999999, 6.07993, 6.51026, 6.907760000000001, 6.50429, 6.47697, 6.58617, 5.88053, 6.77422, 6.8977, 5.9135, 6.17379, 6.93537, 6.507280000000001, 7.46737, 5.82895, 7.034389999999999, 6.7569300000000005, 7.2998, 6.95655, 6.88755, 6.802389999999999, 6.10925, 6.68461, 8.03916, 6.829789999999999, 6.6745600000000005, 6.714169999999999, 6.43775, 7.00307, 6.43455, 6.90575, 7.346660000000001, 6.9256, 7.6009, 7.10988, 7.24423, 6.7569300000000005, 6.48004, 6.889589999999999, 7.313219999999999, 6.59167, 6.33328, 6.551080000000001, 7.408530000000001, 6.802389999999999, 7.3908, 6.90575, 5.86079, 6.9256, 6.13123, 5.99894, 6.551080000000001, 6.57925, 6.90575, 6.73102, 6.566669999999999, 6.9966800000000005, 6.68461, 6.424869999999999, 6.646389999999999, 5.39363, 5.96615, 6.2146099999999995, 6.802389999999999, 6.90575, 5.70378, 6.78672, 7.09008, 6.602589999999999, 6.52209, 6.59987, 6.44572, 6.20456, 6.57925, 6.38012, 6.16331, 7.43838, 6.551080000000001, 6.95655, 5.76832, 7.2100800000000005, 6.48311, 6.45362, 6.2634, 7.18917, 5.9135, 6.6896, 6.2146099999999995, 6.802389999999999, 7.38647, 6.96885, 6.10925, 7.196689999999999, 6.14419, 6.818919999999999, 6.72623, 6.90575, 7.04752, 6.7569300000000005, 6.62936, 7.09008, 6.62007, 6.95655, 7.49332, 6.62007, 6.31355, 6.62007, 6.753439999999999, 6.77422, 6.2653, 7.495539999999999, 6.95655, 6.88755, 7.47307, 6.224559999999999, 6.90575, 6.90575, 7.909860000000001, 6.3716099999999996, 6.52209, 7.106610000000001, 6.69084, 5.627619999999999, 6.802389999999999, 6.6567300000000005, 6.68461, 6.697030000000001, 7.740660000000001, 5.95324, 6.907760000000001, 6.43775, 6.813439999999999, 5.76832, 7.64969, 6.47697, 5.8579300000000005, 5.89715, 6.907760000000001, 6.745239999999999, 6.43775, 6.85646, 6.77422, 6.768489999999999, 6.2146099999999995, 7.029089999999999, 7.06133, 7.24423, 7.54961, 6.354369999999999, 6.87626, 6.318969999999999, 6.570880000000001, 6.62007, 7.61332, 7.09008, 6.7511, 6.551080000000001, 7.40914, 7.034389999999999, 7.18917, 6.49072, 6.30992, 6.55393, 6.72743, 6.05209, 7.0967199999999995, 6.30992, 6.90575, 6.785589999999999, 6.39693, 6.05209, 6.90575, 6.36819, 6.639880000000001, 6.62007, 6.77194, 6.551080000000001, 5.52146, 6.57228, 7.062189999999999, 6.47697, 6.829789999999999, 6.95655, 6.907760000000001, 6.38012, 7.293019999999999, 6.91175, 6.68461, 6.45834, 6.556780000000001, 6.5582, 6.91175, 6.45362, 7.1309, 6.36303, 6.8773, 6.955589999999999, 7.80588, 6.9613, 6.907760000000001, 6.90575, 7.18992, 7.507689999999999, 6.90575, 6.748760000000001, 7.31122, 6.6107, 6.807930000000001, 6.1717, 6.16331, 6.6592899999999995, 6.598510000000001, 6.633319999999999, 7.6009, 6.90575, 6.04025, 7.66153, 7.22548, 6.48768, 6.87213, 7.17012, 6.23245, 6.39693, 7.35244, 8.00637, 6.33328, 6.90575, 6.802389999999999, 6.30992, 6.551080000000001, 6.77422, 6.30992, 7.522939999999999, 6.802389999999999, 5.7525699999999995, 7.05704, 7.16858, 6.802389999999999, 7.20564, 6.551080000000001, 6.47697, 6.852239999999999, 7.6009, 6.70564, 5.7525699999999995, 6.90575, 6.802389999999999, 6.11147, 6.95655, 6.84375, 6.95655, 6.8977, 7.34923, 6.93245, 6.34564, 6.79122, 5.8861, 7.400010000000001, 6.83195, 7.00307, 6.354369999999999, 6.85646, 6.61607, 6.90575, 6.6120399999999995, 6.63726, 7.1309, 6.739339999999999, 7.86327, 6.55393, 6.7511, 6.05912, 6.54535, 7.00307, 6.57925, 6.66823, 7.71869, 5.52146, 6.551080000000001, 7.00307, 6.253830000000001, 5.99146, 7.2724, 6.3315, 6.3699, 6.39693, 5.43808, 7.82405, 6.95655, 5.95324, 6.90575, 6.8426800000000005, 7.0518600000000005, 6.993930000000001, 6.907760000000001, 6.7511, 6.78897, 6.67203, 7.259119999999999, 7.6811, 6.745239999999999, 7.27031, 6.721430000000001, 6.2146099999999995, 6.90575, 7.37776, 7.06048, 7.6009, 6.30992, 7.0282, 6.66696, 6.90575, 6.47235, 6.90575, 6.6592899999999995, 6.80351, 6.92658, 6.39693, 6.28227, 7.06902, 5.958419999999999, 7.1309, 6.62007, 6.33683, 6.984719999999999, 5.89715, 6.06611, 6.354369999999999, 6.52209, 7.362010000000001, 6.8200199999999995, 6.73102, 6.8773, 6.2146099999999995, 6.507280000000001, 7.313219999999999, 6.49072, 6.0845, 7.46737, 5.48064, 6.745239999999999, 7.181589999999999, 6.551080000000001, 6.29157, 6.51619, 6.56948, 5.83188, 6.39693, 6.82437, 6.753439999999999, 6.966019999999999, 6.802389999999999, 7.239210000000001, 6.907760000000001, 6.62407, 6.551080000000001, 6.41673, 7.313219999999999, 6.84588, 6.42162, 6.68461, 6.715380000000001, 6.85646, 6.2146099999999995, 7.313219999999999, 7.37776, 6.07993, 6.30992, 7.1309, 6.70564, 6.27099, 7.279319999999999, 6.73102, 6.53669, 6.24222, 7.03527, 6.507280000000001, 6.93049, 7.09008, 6.33328, 6.68461, 6.90575, 6.30992, 7.43838, 6.6346300000000005, 6.59167, 6.1181, 6.41836, 7.2724, 6.56526, 6.90575, 7.91936, 6.54103, 6.20456, 6.802389999999999, 7.484369999999999, 6.90575, 6.39693, 6.94698, 6.96885, 6.907760000000001, 7.293019999999999, 7.173189999999999, 6.815639999999999, 6.813439999999999, 6.90575, 6.90575, 7.09008, 6.90575, 5.70378, 7.279319999999999, 6.68461, 6.6592899999999995, 7.91936, 6.035480000000001, 7.00307, 6.551080000000001, 6.68461, 6.745239999999999, 6.53669, 5.76832, 7.520230000000001, 6.51323, 7.1082399999999994, 6.551080000000001, 6.5582, 7.17012, 6.768489999999999, 6.6958, 6.39693, 6.2146099999999995, 7.09008, 6.5582, 7.09008, 7.676010000000001, 6.715380000000001, 5.70378, 6.907760000000001, 6.3935900000000006, 7.54961, 6.43775, 5.79606, 6.83087, 6.6783399999999995, 6.54535, 6.02345, 6.593039999999999, 6.77422, 6.44572, 7.04752, 6.3716099999999996, 6.72743, 7.37776, 7.17012, 6.8426800000000005, 7.00307, 6.126869999999999, 6.56526, 6.96885, 6.42811, 6.752269999999999, 6.90575, 6.78672, 7.1309, 8.12089, 6.829789999999999, 7.00307, 6.1944099999999995, 7.740660000000001, 6.907760000000001, 6.96979, 6.68461, 7.14283, 6.2634, 7.1293, 6.89467, 6.646389999999999, 6.621410000000001, 5.5797300000000005, 7.183110000000001, 6.07993, 6.34388, 6.39024, 7.0255399999999995, 6.424869999999999, 6.68461, 6.49979, 7.37776, 6.7901, 6.4488900000000005, 6.614730000000001, 6.802389999999999, 7.09008, 6.93245, 6.6592899999999995, 6.30992, 6.7226300000000005, 7.37776, 6.37502, 7.7021, 7.46737, 7.6009, 7.36455, 5.4161, 6.59715, 6.639880000000001, 6.62007, 7.09008, 6.47697, 6.78333, 6.563860000000001, 7.0076, 6.880380000000001, 6.745239999999999, 6.82437, 6.4677, 7.127689999999999, 7.1309, 6.62007, 7.82084, 7.288930000000001, 6.39693, 6.68461, 7.10988, 6.354369999999999, 6.7546, 7.196689999999999, 6.74052, 6.67203, 7.1309, 7.6009, 7.24423, 6.9256, 7.11314, 6.86693, 5.82895, 6.85118, 6.85646, 6.2146099999999995, 6.92363, 6.84588, 6.86171, 6.62936, 6.50279, 6.7417, 7.18917, 6.2146099999999995, 6.93245, 6.78897, 7.00307, 6.2146099999999995, 6.3935900000000006, 6.73815, 6.57647, 6.39693, 6.9707300000000005, 8.3082, 7.1309, 7.17012, 6.593039999999999, 6.62007, 6.90575, 5.52146, 6.907760000000001, 6.64509, 7.09008, 6.39693, 6.77422, 7.903969999999999, 6.80461, 7.037030000000001, 7.04752, 6.08904, 6.47697, 6.65286, 6.90575, 6.802389999999999, 6.87626, 6.90575, 7.1507, 7.21082, 6.52942, 6.3207699999999996, 6.24611, 6.18826, 6.975410000000001, 7.16085, 6.593039999999999, 6.83303, 6.48158, 5.99146, 6.85646, 6.907760000000001, 6.8384100000000005, 5.01064, 6.551080000000001, 6.6695, 6.57925, 6.30992, 6.68461, 6.802389999999999, 6.785589999999999, 6.45362, 7.313219999999999, 6.551080000000001, 6.745239999999999, 7.29097, 5.8861, 6.98008, 6.802389999999999, 7.20786, 6.983789999999999, 6.75926, 6.68461, 6.90575, 7.4570300000000005, 6.85646, 6.566669999999999, 6.829789999999999, 6.79347, 6.643789999999999, 6.77422, 7.90101, 6.32794, 7.81883, 6.966019999999999, 6.2146099999999995, 6.77422, 6.8384100000000005, 6.813439999999999, 6.551080000000001, 6.920669999999999, 6.62007, 6.745239999999999, 6.69332, 6.745239999999999, 7.0396600000000005, 5.8260000000000005, 6.47697, 6.39693, 7.24423, 7.12367, 7.17012, 6.60394, 6.68461, 6.44413, 6.72623, 6.47697, 6.907760000000001, 6.4552, 7.1546199999999995, 6.39693, 7.37776, 7.18917, 6.10925, 5.95584, 7.03878, 6.461469999999999, 6.697030000000001, 6.66568, 6.56526, 6.49375, 7.06048, 6.715380000000001, 6.95655, 7.1309, 6.95655, 6.76273, 6.311730000000001, 7.1507, 7.00307, 6.29157, 6.86693, 6.68461, 6.90575, 6.95655, 7.17012, 7.0255399999999995, 6.86171, 7.495539999999999, 6.49224, 6.90575, 6.8865300000000005, 7.57353, 6.602589999999999, 6.85646, 5.8579300000000005, 6.30992, 6.5467900000000006, 6.530880000000001, 6.802389999999999, 7.6009, 6.46459, 6.834110000000001, 7.313219999999999, 6.7334, 6.18415, 6.66441, 6.05209, 7.251339999999999, 5.87774, 6.43775, 6.768489999999999, 6.68461, 6.90575, 7.281389999999999, 6.90575, 6.95845, 5.84354, 6.583410000000001, 6.91672, 6.46925, 6.90575, 8.229510000000001, 7.027310000000001, 6.84055, 7.136480000000001, 6.787839999999999, 6.74288, 7.0934, 7.200419999999999, 6.83087, 6.79122, 6.39693, 7.46737, 6.802389999999999, 7.165489999999999, 6.62007, 6.90575, 7.0255399999999995, 7.70661, 6.47389, 6.35957, 6.07535, 6.907760000000001, 5.99894, 7.1107, 7.20786, 6.43775, 6.83518, 6.77878, 6.966019999999999, 6.3716099999999996, 6.907760000000001, 6.68461, 6.64898, 6.28972, 6.66058, 6.967910000000001, 7.016610000000001, 6.68461, 7.09008, 6.85646, 6.77765, 6.90575, 7.09008, 6.90575, 7.21891, 6.30992, 6.90575, 6.745239999999999, 7.07242, 7.6009, 6.817830000000001, 6.23637, 7.346010000000001, 6.6592899999999995, 7.46737, 6.975410000000001, 6.79122, 6.90575, 6.90575, 6.68336, 6.892639999999999, 6.86485, 6.947939999999999, 6.955589999999999, 6.90575, 6.807930000000001, 6.74288, 6.802389999999999, 6.4599, 6.2146099999999995, 7.398789999999999, 7.37776, 7.35883, 6.47697, 7.18463, 6.745239999999999, 6.84588, 6.68461, 7.64969, 6.715380000000001, 5.84644, 6.88857, 6.23441, 7.098380000000001, 6.2804, 7.6256, 6.6346300000000005, 5.68698, 6.43455, 6.52649, 6.51915, 6.1203, 7.00307, 5.7365699999999995, 6.36475, 5.7462, 6.77422, 6.73459, 7.1293, 5.7365699999999995, 6.28413, 7.17012, 6.2146099999999995, 6.90575, 6.6515699999999995, 6.56948, 6.03787, 5.47227, 7.313219999999999, 6.11589, 6.68461, 6.2146099999999995, 6.72743, 7.09008, 6.3935900000000006, 7.12287, 7.04752, 6.6796, 6.758089999999999, 6.68461, 6.30992, 6.90575, 6.745239999999999, 6.21261, 7.251339999999999, 6.10032, 8.048789999999999, 7.313219999999999, 6.745239999999999, 6.907760000000001, 6.90575, 6.90575, 5.7365699999999995, 8.08641, 7.08171, 6.97354, 7.30653, 6.55962, 7.56008, 6.1944099999999995, 7.408530000000001, 6.01616, 6.32794, 6.74052, 6.47697, 6.95655, 6.95655, 6.58617, 6.85646, 6.44572, 7.313219999999999, 7.1309, 5.99146, 6.18826, 6.821110000000001, 6.47697, 6.813439999999999, 7.43838, 7.2717, 5.7462, 6.30262, 6.38351, 6.551080000000001, 6.43775, 6.90575, 6.53233, 5.84932, 6.61874, 7.88231, 6.90575, 5.7651900000000005, 7.08255, 6.882439999999999, 7.37776, 6.44413, 6.90575, 7.2998, 6.5439099999999994, 6.551080000000001, 6.49375, 6.90575, 7.35372, 7.135689999999999, 7.46737, 5.7365699999999995, 6.63595, 6.802389999999999, 7.346010000000001, 6.90575, 6.86693, 5.78383, 6.829789999999999, 6.7334, 7.2998, 6.65415, 6.9256, 6.3699, 6.39693, 6.49072, 6.02345, 7.32251, 6.13123, 6.29711, 6.799060000000001, 6.272880000000001, 6.23832, 6.354369999999999, 6.49527, 6.697030000000001, 6.703189999999999, 7.04752, 6.65286, 6.2146099999999995, 6.42162, 6.62007, 6.51471, 6.52942, 6.16331, 6.813439999999999, 7.09008, 6.19236, 6.49979, 6.6253899999999994, 6.7369699999999995, 7.064760000000001, 6.01616, 7.11883, 6.51175, 5.7525699999999995, 7.46737, 6.551080000000001, 7.67322, 6.907760000000001, 6.58617, 7.1309, 6.43294, 7.46737, 6.95655, 6.54247, 6.3716099999999996, 7.293019999999999, 6.95655, 6.3613, 6.10925, 6.551080000000001, 6.907760000000001, 6.83518, 6.6567300000000005, 6.984719999999999, 7.062189999999999, 6.907760000000001, 6.77992, 7.195189999999999, 7.185389999999999, 6.01616, 6.72743, 6.33683, 6.70073, 7.20786, 7.0103100000000005, 6.3716099999999996, 6.551080000000001, 6.7334, 7.495539999999999, 6.24028, 6.354369999999999, 6.90575, 6.551080000000001, 7.00307, 6.85013, 7.0255399999999995, 6.39693, 6.23441, 6.5395900000000005, 6.907760000000001, 6.62007, 6.05209, 7.12287, 6.745239999999999, 6.30992, 7.21744, 6.49072, 6.05209, 7.24423, 6.802389999999999, 7.09008, 6.44572, 7.00307, 6.62007, 6.966019999999999, 6.721430000000001, 6.813439999999999, 7.3696, 6.461469999999999, 6.18002, 6.90575, 7.20786, 6.78333, 6.57647, 7.00307, 6.74993, 6.57925, 6.907760000000001, 7.18917, 6.16331, 6.59578, 6.802389999999999, 6.272880000000001, 7.014810000000001, 6.745239999999999, 6.2146099999999995, 6.64509, 6.608, 6.68461, 6.58617, 6.62007, 6.19032, 5.96358, 6.95655, 6.12249, 6.62007, 7.313219999999999, 7.09008, 6.98101, 6.6871100000000006, 7.09008, 6.81014, 7.37776, 6.85435, 7.64969, 6.907760000000001, 6.6733, 7.5574699999999995, 6.13773, 6.67203, 6.30992, 6.47697, 6.8956800000000005, 6.56948, 6.802389999999999, 6.9707300000000005, 8.00637, 5.5797300000000005, 5.70711, 6.92363, 6.57368, 7.37776, 6.2146099999999995, 7.408530000000001, 7.1155800000000005, 7.91936, 7.09008, 7.1309, 6.58617, 6.14633, 6.11147, 6.90575, 7.092569999999999, 6.86485, 5.66988, 7.57558, 7.200419999999999, 6.95655, 6.2146099999999995, 6.05209, 6.44254, 6.35957, 5.72031, 6.60394, 6.39693, 5.90808, 8.537, 6.07993, 7.36645, 6.67708, 6.99942, 7.64969, 6.68461, 6.57925, 6.2186, 7.09008, 6.83518, 7.09008, 6.90575, 6.43615, 6.84162, 7.313219999999999, 6.68461, 6.55962, 6.07993, 6.3952599999999995, 6.633319999999999, 7.09008, 7.313219999999999, 6.30992, 6.66823, 7.2861899999999995, 5.66988, 5.98896, 7.620710000000001, 6.0822199999999995, 6.77878, 5.43808, 7.09008, 7.6009, 5.8141300000000005, 6.68461, 7.37776, 7.525639999999999, 6.74993, 6.72623, 7.09008, 7.25347, 7.585789999999999, 6.45362, 6.354369999999999, 6.984719999999999, 6.90575, 6.907760000000001, 7.0775, 7.346010000000001, 7.027310000000001, 6.907760000000001, 6.9489, 6.907760000000001, 7.495539999999999, 6.745239999999999, 6.58617, 6.90575, 6.633319999999999, 6.80572, 6.2634, 6.31355, 6.86485, 6.49677, 6.68461, 6.633319999999999, 7.30317, 6.95655, 5.742999999999999, 6.04025, 6.39693, 7.313219999999999, 6.90575, 7.09008, 6.47697, 7.196689999999999, 6.30262, 6.745239999999999, 7.07412, 6.10925, 7.42357, 6.768489999999999, 6.7901, 6.56244, 6.9828600000000005, 6.253830000000001, 7.02465, 6.27099, 6.57228, 6.829789999999999, 6.68461, 5.84354, 6.05209, 7.12287, 6.2146099999999995, 6.84162, 7.00307, 6.35611, 6.95655, 6.39693, 6.88755, 7.04316, 6.90575, 6.84162, 6.45362, 6.83518, 6.85646, 5.99146, 6.62007, 6.2186, 7.00307, 6.1717, 5.99146, 6.22654, 6.633319999999999, 6.77308, 6.95655, 6.967910000000001, 6.66568, 6.90575, 6.5439099999999994, 6.60665, 7.04752, 7.062189999999999, 7.313219999999999, 7.04752, 7.0884100000000005, 6.90575, 6.23441, 6.25767, 6.05209, 6.551080000000001, 7.09008, 6.68461, 6.2146099999999995, 6.386880000000001, 6.44413, 6.58617, 6.745239999999999, 7.2233, 6.8773, 5.8579300000000005, 6.813439999999999, 7.037030000000001, 6.17379, 7.6009, 6.30992, 6.685860000000001, 6.38856, 6.47697, 7.46737, 6.551080000000001, 6.87213, 6.73102, 7.45298, 6.39693, 6.882439999999999, 5.95584, 6.7093, 6.90675, 6.551080000000001, 6.85646, 6.563860000000001, 6.769639999999999, 6.73102, 7.06133, 6.68461, 6.2146099999999995, 6.62007, 6.912739999999999, 6.2634, 7.08171, 6.90575, 7.6009, 6.556780000000001, 6.52062, 6.907760000000001, 6.60935, 5.8141300000000005, 6.30992, 6.51471, 6.9828600000000005, 7.338889999999999, 6.22654, 6.84055, 6.311730000000001, 7.01392, 6.49224, 7.44659, 5.94803, 7.388330000000001, 6.85118, 7.24423, 6.632000000000001, 6.65544, 6.90575, 7.10906, 6.944089999999999, 6.83518, 6.222580000000001, 6.84588, 7.17012, 6.52503, 6.2860000000000005, 6.80128, 6.07993 ], "y0": " " }, { "box": { "visible": false }, "fillcolor": "rgba(0, 0, 0, 0)", "hoverinfo": "x", "hoveron": "points", "jitter": 0.3, "legendgroup": "no", "line": { "color": "rgba(0, 0, 0, 0)", "width": 0 }, "marker": { "color": "hsla(246, 70%, 70%,1)", "line": { "color": "hsla(246, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "pentagon" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0.6, "points": "all", "scalegroup": "no", "showlegend": false, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.99942, 7.67322, 7.09008, 6.55536, 6.646389999999999, 7.02643, 7.32975, 6.39693, 6.04025, 7.91936, 6.745239999999999, 7.068169999999999, 6.907760000000001, 6.7417, 7.71869, 6.882439999999999, 6.50279, 6.77878, 6.907760000000001, 6.93342, 7.06902, 6.57368, 6.829789999999999, 7.557989999999999, 7.0255399999999995, 6.57925, 7.313219999999999, 6.47697, 7.1309, 6.551080000000001, 6.882439999999999, 6.48004, 6.60665, 6.10925, 5.78383, 6.94505, 7.17012, 7.11477, 6.593039999999999, 6.49979, 6.39192, 6.614730000000001, 6.30992, 7.116389999999999, 6.30992, 7.554860000000001, 6.90675, 6.90575, 6.90575, 7.408530000000001, 7.0076, 6.88857, 7.041410000000001, 6.30992, 7.313219999999999, 6.62007, 6.90575, 6.802389999999999, 7.074960000000001, 7.5606, 5.99146, 5.94803, 6.2146099999999995, 7.282760000000001, 6.39693, 6.65286, 6.23048, 6.16331, 7.56008, 6.28227, 6.30992, 6.05912, 6.30992, 6.602589999999999, 7.47307, 6.2146099999999995, 6.90575, 6.461469999999999, 7.09008, 7.46737, 6.829789999999999, 6.60665, 6.74052, 6.745239999999999, 7.6009, 6.62007, 6.551080000000001, 6.907760000000001, 7.60589, 6.53669, 6.5582, 6.2146099999999995, 7.37776, 6.6995, 6.27476, 6.48311, 6.69084, 6.54965, 6.882439999999999, 6.663130000000001, 6.7226300000000005, 7.20786, 6.802389999999999, 6.79122, 6.62007, 6.42162, 6.12249, 6.28227, 6.745239999999999, 6.49677, 6.317159999999999, 6.2146099999999995, 7.0884100000000005, 6.68461, 5.8999, 7.01392, 7.1107, 6.9363399999999995, 6.1070199999999994, 6.85646, 6.44572, 6.84588, 7.31255, 6.90575, 6.802389999999999, 7.111510000000001, 6.2146099999999995, 6.66696, 6.907760000000001, 6.90575, 6.6592899999999995, 8.047189999999999, 6.62407, 7.0076, 6.30992, 6.17379, 6.55393, 6.24611, 7.78322, 6.563860000000001, 6.60665, 6.507280000000001, 6.461469999999999, 6.43775, 7.82405, 7.75148, 6.62407, 7.346010000000001, 7.1309, 6.51471, 6.84055, 7.041410000000001, 6.51471, 6.551080000000001, 7.346010000000001, 6.966019999999999, 6.90575, 7.17012, 6.5820300000000005, 6.354369999999999, 7.82405, 6.39693, 6.88755, 6.39693, 6.39693, 6.65286, 6.622739999999999, 6.90575, 5.7525699999999995, 6.15273, 7.04752, 6.770789999999999, 6.907760000000001, 7.00125, 7.064760000000001, 7.00307, 6.907760000000001, 5.463830000000001, 6.745239999999999, 7.045780000000001, 6.54535, 6.37673, 6.907760000000001, 6.10925, 8.16052, 6.745239999999999, 6.765039999999999, 6.77422, 7.1309, 6.77422, 6.87213, 6.551080000000001, 6.6567300000000005, 6.80017, 7.226210000000001, 6.10925, 7.495539999999999, 8.05516, 7.06987, 6.90575, 6.43775, 7.179310000000001, 7.313219999999999, 6.82437, 6.715380000000001, 7.173189999999999, 6.62007, 6.77878, 6.47697, 6.85118, 6.49224, 7.313219999999999, 7.158510000000001, 6.818919999999999, 6.68461, 6.57647, 6.43455, 5.89715, 6.2146099999999995, 6.34564, 6.556780000000001, 6.7093, 7.00307, 6.551080000000001, 6.53669, 6.69084, 7.313219999999999, 6.10925, 6.05209, 6.62007, 6.4552, 6.77422, 6.87005, 6.65544, 6.42162, 5.9269300000000005, 6.6783399999999995, 6.317159999999999, 7.1309, 6.62007, 6.96508, 6.19236, 6.57368, 6.39693, 6.77422, 7.408530000000001, 7.333019999999999, 6.37502, 7.04752, 6.68461, 6.86693, 6.68461, 6.90575, 6.45362, 6.49072, 6.47697, 6.90575, 6.67203, 6.7334, 7.34278, 6.802389999999999, 6.9256, 6.90575, 6.91075, 6.6592899999999995, 6.6592899999999995, 6.16331, 7.07834, 6.745239999999999, 7.20786, 6.63857, 7.475910000000001, 6.62007, 6.4892, 7.00307, 6.7901, 6.65286, 7.43838, 7.15383, 6.88755, 7.26193, 6.23245, 6.30445, 6.92461, 7.313219999999999, 7.37776, 5.8579300000000005, 6.85646, 6.2441699999999996, 7.26193, 5.99146, 6.907760000000001, 6.85646, 7.481560000000001, 7.04752, 6.61338, 6.73815, 5.8579300000000005, 6.38856, 6.768489999999999, 6.90575, 5.4161, 7.1507, 7.282760000000001, 7.00307, 6.66058, 6.58064, 6.30079, 6.90575, 6.64249, 5.76832, 6.715380000000001, 6.62007, 7.1309, 6.51471, 5.99146, 6.95655, 6.65286, 6.16331, 7.1309, 6.16542, 5.93489, 7.1333, 7.24423, 6.04025, 6.86901, 6.802389999999999, 7.04752, 7.313219999999999, 6.54822, 6.95655, 7.50108, 6.39693, 6.551080000000001, 7.07918, 5.70378, 6.7369699999999995, 6.87213, 5.89715, 6.39693, 6.8773, 6.708080000000001, 5.9454199999999995, 6.52942, 6.818919999999999, 7.041410000000001, 6.4677, 6.06611, 6.882439999999999, 6.703189999999999, 6.37502, 7.37776, 6.907760000000001, 6.752269999999999, 6.47697, 7.04752, 6.802389999999999, 6.768489999999999, 6.2480400000000005, 6.984719999999999, 5.9269300000000005, 6.49224, 6.385190000000001, 7.1309, 7.663880000000001, 6.33328, 7.07242, 6.907760000000001, 6.48311, 8.05516, 6.807930000000001, 6.785589999999999, 6.907760000000001, 6.035480000000001, 6.05209, 7.338889999999999, 7.0255399999999995, 7.00307, 5.99146, 6.33683, 6.07993, 7.488289999999999, 6.90575, 6.697030000000001, 6.354369999999999, 6.802389999999999, 6.62007, 6.68461, 6.68835, 6.62007, 6.36475, 6.85646, 6.95655, 7.20786, 6.8977, 6.802389999999999, 6.90575, 6.84055, 7.676010000000001, 6.43775 ], "y0": " " }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(246, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(246, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "no", "line": { "width": 0 }, "marker": { "color": "hsla(246, 50%, 50%,0.9)", "line": { "color": "hsla(246, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "pentagon" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "no", "showlegend": false, "side": "positive", "span": [ 6.714090125705094, 6.746031274707297 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 6.99942, 7.67322, 7.09008, 6.55536, 6.646389999999999, 7.02643, 7.32975, 6.39693, 6.04025, 7.91936, 6.745239999999999, 7.068169999999999, 6.907760000000001, 6.7417, 7.71869, 6.882439999999999, 6.50279, 6.77878, 6.907760000000001, 6.93342, 7.06902, 6.57368, 6.829789999999999, 7.557989999999999, 7.0255399999999995, 6.57925, 7.313219999999999, 6.47697, 7.1309, 6.551080000000001, 6.882439999999999, 6.48004, 6.60665, 6.10925, 5.78383, 6.94505, 7.17012, 7.11477, 6.593039999999999, 6.49979, 6.39192, 6.614730000000001, 6.30992, 7.116389999999999, 6.30992, 7.554860000000001, 6.90675, 6.90575, 6.90575, 7.408530000000001, 7.0076, 6.88857, 7.041410000000001, 6.30992, 7.313219999999999, 6.62007, 6.90575, 6.802389999999999, 7.074960000000001, 7.5606, 5.99146, 5.94803, 6.2146099999999995, 7.282760000000001, 6.39693, 6.65286, 6.23048, 6.16331, 7.56008, 6.28227, 6.30992, 6.05912, 6.30992, 6.602589999999999, 7.47307, 6.2146099999999995, 6.90575, 6.461469999999999, 7.09008, 7.46737, 6.829789999999999, 6.60665, 6.74052, 6.745239999999999, 7.6009, 6.62007, 6.551080000000001, 6.907760000000001, 7.60589, 6.53669, 6.5582, 6.2146099999999995, 7.37776, 6.6995, 6.27476, 6.48311, 6.69084, 6.54965, 6.882439999999999, 6.663130000000001, 6.7226300000000005, 7.20786, 6.802389999999999, 6.79122, 6.62007, 6.42162, 6.12249, 6.28227, 6.745239999999999, 6.49677, 6.317159999999999, 6.2146099999999995, 7.0884100000000005, 6.68461, 5.8999, 7.01392, 7.1107, 6.9363399999999995, 6.1070199999999994, 6.85646, 6.44572, 6.84588, 7.31255, 6.90575, 6.802389999999999, 7.111510000000001, 6.2146099999999995, 6.66696, 6.907760000000001, 6.90575, 6.6592899999999995, 8.047189999999999, 6.62407, 7.0076, 6.30992, 6.17379, 6.55393, 6.24611, 7.78322, 6.563860000000001, 6.60665, 6.507280000000001, 6.461469999999999, 6.43775, 7.82405, 7.75148, 6.62407, 7.346010000000001, 7.1309, 6.51471, 6.84055, 7.041410000000001, 6.51471, 6.551080000000001, 7.346010000000001, 6.966019999999999, 6.90575, 7.17012, 6.5820300000000005, 6.354369999999999, 7.82405, 6.39693, 6.88755, 6.39693, 6.39693, 6.65286, 6.622739999999999, 6.90575, 5.7525699999999995, 6.15273, 7.04752, 6.770789999999999, 6.907760000000001, 7.00125, 7.064760000000001, 7.00307, 6.907760000000001, 5.463830000000001, 6.745239999999999, 7.045780000000001, 6.54535, 6.37673, 6.907760000000001, 6.10925, 8.16052, 6.745239999999999, 6.765039999999999, 6.77422, 7.1309, 6.77422, 6.87213, 6.551080000000001, 6.6567300000000005, 6.80017, 7.226210000000001, 6.10925, 7.495539999999999, 8.05516, 7.06987, 6.90575, 6.43775, 7.179310000000001, 7.313219999999999, 6.82437, 6.715380000000001, 7.173189999999999, 6.62007, 6.77878, 6.47697, 6.85118, 6.49224, 7.313219999999999, 7.158510000000001, 6.818919999999999, 6.68461, 6.57647, 6.43455, 5.89715, 6.2146099999999995, 6.34564, 6.556780000000001, 6.7093, 7.00307, 6.551080000000001, 6.53669, 6.69084, 7.313219999999999, 6.10925, 6.05209, 6.62007, 6.4552, 6.77422, 6.87005, 6.65544, 6.42162, 5.9269300000000005, 6.6783399999999995, 6.317159999999999, 7.1309, 6.62007, 6.96508, 6.19236, 6.57368, 6.39693, 6.77422, 7.408530000000001, 7.333019999999999, 6.37502, 7.04752, 6.68461, 6.86693, 6.68461, 6.90575, 6.45362, 6.49072, 6.47697, 6.90575, 6.67203, 6.7334, 7.34278, 6.802389999999999, 6.9256, 6.90575, 6.91075, 6.6592899999999995, 6.6592899999999995, 6.16331, 7.07834, 6.745239999999999, 7.20786, 6.63857, 7.475910000000001, 6.62007, 6.4892, 7.00307, 6.7901, 6.65286, 7.43838, 7.15383, 6.88755, 7.26193, 6.23245, 6.30445, 6.92461, 7.313219999999999, 7.37776, 5.8579300000000005, 6.85646, 6.2441699999999996, 7.26193, 5.99146, 6.907760000000001, 6.85646, 7.481560000000001, 7.04752, 6.61338, 6.73815, 5.8579300000000005, 6.38856, 6.768489999999999, 6.90575, 5.4161, 7.1507, 7.282760000000001, 7.00307, 6.66058, 6.58064, 6.30079, 6.90575, 6.64249, 5.76832, 6.715380000000001, 6.62007, 7.1309, 6.51471, 5.99146, 6.95655, 6.65286, 6.16331, 7.1309, 6.16542, 5.93489, 7.1333, 7.24423, 6.04025, 6.86901, 6.802389999999999, 7.04752, 7.313219999999999, 6.54822, 6.95655, 7.50108, 6.39693, 6.551080000000001, 7.07918, 5.70378, 6.7369699999999995, 6.87213, 5.89715, 6.39693, 6.8773, 6.708080000000001, 5.9454199999999995, 6.52942, 6.818919999999999, 7.041410000000001, 6.4677, 6.06611, 6.882439999999999, 6.703189999999999, 6.37502, 7.37776, 6.907760000000001, 6.752269999999999, 6.47697, 7.04752, 6.802389999999999, 6.768489999999999, 6.2480400000000005, 6.984719999999999, 5.9269300000000005, 6.49224, 6.385190000000001, 7.1309, 7.663880000000001, 6.33328, 7.07242, 6.907760000000001, 6.48311, 8.05516, 6.807930000000001, 6.785589999999999, 6.907760000000001, 6.035480000000001, 6.05209, 7.338889999999999, 7.0255399999999995, 7.00307, 5.99146, 6.33683, 6.07993, 7.488289999999999, 6.90575, 6.697030000000001, 6.354369999999999, 6.802389999999999, 6.62007, 6.68461, 6.68835, 6.62007, 6.36475, 6.85646, 6.95655, 7.20786, 6.8977, 6.802389999999999, 6.90575, 6.84055, 7.676010000000001, 6.43775, 7.20786, 6.89163, 7.0121199999999995, 6.85646, 6.54965, 6.65286, 6.05209, 6.697030000000001, 6.90575, 6.68461, 6.62007, 7.24423, 6.36819, 6.8844899999999996, 6.62007, 6.745239999999999, 5.7525699999999995, 6.85646, 6.025869999999999, 6.7334, 5.9269300000000005, 5.98896, 6.48004, 6.20456, 6.55393, 6.5903, 7.02643, 6.31536, 6.19236, 6.43615, 6.42162, 6.93537, 6.802389999999999, 6.47697, 6.2634, 7.79028, 6.10032, 7.408530000000001, 6.6174, 6.907760000000001, 5.95324, 5.99146, 6.05209, 6.2441699999999996, 6.39693, 6.79122, 6.9196800000000005, 6.9147300000000005, 6.90575, 5.9269300000000005, 6.646389999999999, 6.746410000000001, 6.30992, 6.18826, 6.5467900000000006, 7.522939999999999, 6.907760000000001, 6.715380000000001, 7.04752, 6.54247, 6.753439999999999, 6.51471, 7.034389999999999, 6.65286, 7.262630000000001, 6.47697, 7.20786, 6.90575, 6.30992, 6.85646, 6.30445, 6.32972, 6.05209, 6.34564, 6.95655, 6.49224, 6.62007, 5.82895, 6.39693, 6.06146, 6.03787, 6.22654, 6.90575, 6.91374, 7.6009, 6.5903, 7.1592899999999995, 6.57786, 6.6783399999999995, 6.72383, 6.41182, 6.907760000000001, 7.236339999999999, 6.802389999999999, 6.10925, 6.715380000000001, 6.551080000000001, 6.97635, 6.685860000000001, 6.35089, 5.70378, 6.59167, 6.461469999999999, 6.984719999999999, 6.53233, 6.646389999999999, 6.16331, 6.95655, 7.459910000000001, 7.0255399999999995, 7.1309, 6.22654, 6.10925, 7.08171, 6.64249, 7.49332, 7.495539999999999, 7.1309, 6.3716099999999996, 6.745239999999999, 6.58617, 6.48158, 6.94022, 6.41836, 6.10925, 7.48717, 7.0193, 6.983789999999999, 6.633319999999999, 6.29157, 6.90575, 6.93537, 6.51323, 6.715380000000001, 6.47697, 7.37212, 6.56244, 7.0184, 6.834110000000001, 7.09008, 6.52942, 7.4553, 7.00307, 6.37502, 7.24423, 6.48158, 6.57925, 6.68461, 6.34388, 6.10925, 6.90575, 6.90575, 7.75577, 6.82437, 6.43775, 6.90575, 6.42162, 6.769639999999999, 6.818919999999999, 6.551080000000001, 7.279319999999999, 6.96508, 6.44572, 6.28972, 7.1082399999999994, 7.135689999999999, 6.49072, 7.251339999999999, 6.58064, 6.807930000000001, 7.33368, 6.77422, 6.60394, 6.68461, 7.1309, 7.201169999999999, 5.99146, 6.68461, 6.39693, 6.85751, 6.33683, 6.08677, 7.24423, 7.1309, 6.17587, 6.802389999999999, 6.30992, 6.36303, 6.77422, 6.2860000000000005, 6.828710000000001, 6.47697, 6.72743, 6.55251, 6.29157, 6.5582, 6.62407, 5.9814099999999994, 6.76273, 7.06902, 6.80128, 6.966019999999999, 6.6592899999999995, 6.39693, 6.57786, 6.65286, 6.293419999999999, 5.64545, 6.79122, 6.987489999999999, 6.30992, 5.7525699999999995, 6.55536, 7.09008, 6.28972, 6.2146099999999995, 7.04752, 6.90575, 6.39693, 7.43838, 6.47697, 6.77422, 6.2634, 7.46737, 6.47697, 6.90575, 7.279319999999999, 6.815639999999999, 6.65028, 7.17012, 6.802389999999999, 6.602589999999999, 6.47697, 6.58755, 6.621410000000001, 6.907760000000001, 7.09589, 5.82305, 7.67322, 6.85646, 5.78074, 7.2957399999999994, 5.84354, 6.802389999999999, 6.58064, 7.00307, 6.90575, 7.503839999999999, 6.45677, 6.950810000000001, 6.15273, 7.57558, 6.2146099999999995, 6.7334, 6.86066, 6.48004, 7.00307, 6.8200199999999995, 6.47697, 6.90575, 7.39388, 7.4787300000000005, 6.2146099999999995, 6.43775, 7.24065, 6.13773, 6.3952599999999995, 7.1025, 7.04752, 5.883319999999999, 7.09008, 6.77992, 6.9256, 6.035480000000001, 7.22766, 7.475339999999999, 6.272880000000001, 6.27099, 6.85646, 6.907760000000001, 6.92166, 5.9269300000000005, 6.30992, 6.24998, 6.893660000000001, 6.43615, 7.04752, 6.30992, 6.39693, 5.59842, 6.1334, 6.58617, 6.765039999999999, 6.85646, 6.892639999999999, 6.95655, 6.43775, 6.90575, 6.81124, 6.966019999999999, 6.8865300000000005, 7.334980000000001, 6.72743, 6.93245, 6.901739999999999, 7.0255399999999995, 6.83518, 6.77992, 6.68461, 7.696210000000001, 6.53669, 6.126869999999999, 6.54965, 7.31122, 5.8693, 6.90575, 6.0282800000000005, 6.30992, 6.23245, 6.31536, 7.486610000000001, 6.52942, 6.8426800000000005, 6.34564, 6.44413, 6.62007, 6.93245, 6.907760000000001, 5.99146, 7.18917, 6.7093, 6.75926, 6.5439099999999994, 6.1717, 7.9459100000000005, 6.77422, 7.424760000000001, 6.45362, 5.70378, 6.43775, 6.90575, 7.6009, 6.90575, 7.46737, 6.694560000000001, 6.907760000000001, 8.16052, 6.17379, 6.98008, 5.81711, 6.984719999999999, 6.802389999999999, 6.30079, 5.99146, 6.802389999999999, 7.32647, 6.745239999999999, 7.1309, 6.7901, 5.96101, 6.62007, 6.84055, 6.58617, 7.1309, 6.62407, 6.07993, 6.795710000000001, 7.212289999999999, 6.93925, 6.47697, 6.354369999999999, 7.9724699999999995, 6.11589, 7.64969, 6.703189999999999, 6.658010000000001, 6.47697, 6.58617, 6.893660000000001, 6.51471, 6.06611, 6.68461, 7.331060000000001, 6.64118, 6.33328, 6.47697, 7.475910000000001, 7.20786, 6.81124, 7.279319999999999, 6.80461, 7.10906, 6.77422, 7.01571, 6.54822, 6.57786, 6.47697, 7.0255399999999995, 5.9269300000000005, 7.46737, 5.8141300000000005, 6.69084, 6.47697, 6.88755, 7.24423, 6.2634, 6.95655, 6.67077, 6.85646, 7.313219999999999, 6.98008, 6.75577, 6.01616, 7.09008, 6.697030000000001, 6.79794, 6.2634, 6.61874, 6.64118, 7.1309, 6.98101, 6.90575, 5.90263, 6.17794, 6.77422, 6.96035, 6.35957, 6.829789999999999, 6.66568, 7.09008, 6.10925, 6.85646, 6.90575, 6.95655, 6.58617, 6.278519999999999, 6.57925, 6.907760000000001, 6.802389999999999, 6.6567300000000005, 7.696210000000001, 6.68461, 6.10925, 6.785589999999999, 6.43775, 6.802389999999999, 7.04752, 6.48311, 7.17778, 6.2634, 6.62007, 6.785589999999999, 7.033510000000001, 6.04025, 7.1107, 6.57647, 6.85646, 6.39693, 6.530880000000001, 6.36819, 6.90575, 6.30992, 6.85646, 6.62007, 6.04025, 6.79122, 6.30992, 6.62007, 6.81014, 6.551080000000001, 6.56526, 6.551080000000001, 7.09008, 6.86693, 6.9613, 6.7901, 6.95655, 6.65286, 5.9814099999999994, 6.43775, 5.940169999999999, 7.46737, 6.35957, 7.18007, 6.2146099999999995, 7.46737, 6.90575, 6.253830000000001, 7.37776, 6.90575, 7.46737, 6.18826, 6.4552, 6.15698, 7.346010000000001, 6.68461, 7.6009, 7.14913, 6.96885, 7.27031, 6.317159999999999, 6.72503, 6.62007, 6.802389999999999, 5.93754, 6.802389999999999, 6.52356, 6.55251, 6.72383, 6.885510000000001, 6.68461, 6.52209, 7.313219999999999, 6.94698, 6.1717, 5.96615, 6.41673, 6.907760000000001, 6.29157, 7.00307, 6.90375, 6.1944099999999995, 7.09008, 6.90575, 6.47697, 7.26193, 5.98645, 6.60665, 5.8579300000000005, 7.37776, 6.907760000000001, 6.858569999999999, 6.745239999999999, 7.495539999999999, 7.1546199999999995, 6.6592899999999995, 6.77422, 6.893660000000001, 6.86693, 7.408530000000001, 6.72743, 6.42972, 6.633319999999999, 7.0579, 6.68461, 7.233460000000001, 6.90575, 6.77194, 5.8861, 6.3243599999999995, 6.55393, 6.90575, 6.10925, 6.9613, 6.90575, 6.90975, 7.1309, 6.745239999999999, 6.55536, 6.02102, 6.7334, 6.47697, 6.53669, 6.95655, 6.551080000000001, 6.16331, 7.6009, 6.90575, 7.17242, 6.3421199999999995, 6.9196800000000005, 6.65286, 6.51471, 7.24423, 6.39693, 6.85646, 6.551080000000001, 6.35611, 6.34914, 7.696210000000001, 6.802389999999999, 5.940169999999999, 6.253830000000001, 6.90575, 6.48464, 6.49224, 6.90575, 7.014810000000001, 6.551080000000001, 7.20786, 7.02997, 6.89467, 6.829789999999999, 7.17012, 7.28207, 6.69084, 7.1929300000000005, 6.33328, 6.85646, 6.29157, 6.912739999999999, 6.80017, 6.97635, 7.17012, 6.59715, 7.0884100000000005, 7.16627, 6.19644, 6.39693, 5.9814099999999994, 6.90575, 6.6958, 5.01728, 7.279319999999999, 7.136480000000001, 6.608, 6.68461, 7.9831, 6.77422, 6.9828600000000005, 6.2146099999999995, 7.09506, 6.44572, 6.2634, 6.90575, 6.90575, 7.08339, 5.96615, 7.11233, 6.912739999999999, 6.68461, 6.4708, 7.346010000000001, 6.68085, 7.24423, 6.62007, 6.15698, 6.15698, 6.893660000000001, 6.30262, 7.30317, 6.56808, 6.02102, 6.2634, 7.183110000000001, 6.33328, 6.907760000000001, 6.9707300000000005, 6.6174, 7.43838, 6.45047, 6.9707300000000005, 6.3952599999999995, 7.09008, 6.49979, 6.94986, 7.06902, 6.745239999999999, 6.68461, 7.22766, 6.68461, 6.93049, 7.1309, 6.975410000000001, 6.2672, 6.551080000000001, 6.59987, 6.2146099999999995, 6.95655, 6.694560000000001, 7.09008, 6.849069999999999, 6.614730000000001, 6.72743, 7.03615, 6.05209, 6.83518, 7.09008, 6.1070199999999994, 6.712960000000001, 6.30992, 7.07834, 6.39693, 7.346010000000001, 6.938280000000001, 6.715380000000001, 6.7511, 6.715380000000001, 6.3935900000000006, 7.26193, 6.49072, 6.745239999999999, 6.721430000000001, 5.97635, 6.59715, 6.00389, 6.9828600000000005, 6.29157, 6.62007, 6.85646, 6.86901, 7.04752, 6.14633, 6.0282800000000005, 6.563860000000001, 6.73102, 6.3243599999999995, 6.721430000000001, 6.6796, 7.062189999999999, 7.313219999999999, 6.34564, 6.561030000000001, 7.06987, 6.87626, 6.505780000000001, 6.745239999999999, 6.39859, 6.966019999999999, 6.575080000000001, 6.40192, 6.70073, 6.56808, 6.7334, 6.6796, 6.8384100000000005, 5.42935, 6.85751, 6.745239999999999, 7.08171, 6.85646, 6.47697, 6.907760000000001, 6.28972, 7.2724, 6.61874, 7.0255399999999995, 6.27099, 6.90575, 6.34564, 6.47697, 6.9828600000000005, 6.224559999999999, 6.551080000000001, 6.551080000000001, 6.23441, 6.77422, 7.1309, 6.52209, 7.49332, 7.4832399999999994, 6.90575, 6.715380000000001, 6.90575, 7.1309, 6.86171, 6.68461, 6.715380000000001, 6.551080000000001, 6.802389999999999, 6.33683, 6.9187, 7.0579, 6.35611, 7.02376, 6.45834, 5.8141300000000005, 6.90575, 6.90575, 5.9269300000000005, 7.42833, 6.463030000000001, 6.86797, 6.95655, 6.88755, 6.4677, 7.3651800000000005, 6.748760000000001, 6.975410000000001, 7.82405, 6.5439099999999994, 6.42162, 6.8844899999999996, 7.16085, 6.04025, 6.90575, 7.00307, 6.907760000000001, 6.817830000000001, 7.279319999999999, 6.907760000000001, 6.41017, 6.90575, 6.65286, 6.787839999999999, 6.62007, 7.0967199999999995, 6.55393, 7.0255399999999995, 7.00307, 7.31122, 6.39693, 7.31122, 6.44572, 6.59578, 6.47697, 7.226210000000001, 6.62007, 6.69332, 7.09008, 5.8579300000000005, 7.183110000000001, 7.728860000000001, 6.54965, 7.04752, 6.9256, 6.3952599999999995, 5.65249, 7.041410000000001, 6.4599, 6.96035, 7.1333, 6.99942, 6.38012, 7.200419999999999, 6.06379, 7.18007, 7.1309, 6.461469999999999, 6.85646, 7.17012, 7.03527, 6.62007, 7.313219999999999, 5.8861, 5.8861, 7.20786, 6.907760000000001, 6.90575, 6.05209, 7.1452, 6.02102, 5.82895, 6.33683, 7.8935699999999995, 6.34564, 6.8977, 6.3699, 6.6567300000000005, 6.813439999999999, 6.90575, 6.05209, 6.05209, 6.551080000000001, 6.66568, 6.57925, 6.2146099999999995, 6.907760000000001, 6.90575, 7.106610000000001, 5.52146, 6.424869999999999, 6.65415, 6.745239999999999, 6.88346, 6.3207699999999996, 7.696210000000001, 7.64779, 7.313219999999999, 5.95584, 6.715380000000001, 6.8966899999999995, 6.61338, 6.23245, 6.95655, 5.52146, 7.3981699999999995, 6.06379, 6.2205900000000005, 6.813439999999999, 6.752269999999999, 6.86066, 6.7334, 6.318969999999999, 6.79122, 6.0822199999999995, 5.95324, 7.1309, 6.54103, 6.24222, 6.68461, 6.9177100000000005, 6.05209, 7.04752, 6.78672, 7.09008, 7.1309, 6.47697, 7.1025, 5.9814099999999994, 7.24423, 7.451239999999999, 7.198180000000001, 7.27101, 7.245660000000001, 7.279319999999999, 6.85646, 7.67322, 6.76273, 6.82437, 6.47697, 6.885510000000001, 7.279319999999999, 7.1309, 6.966019999999999, 6.73102, 6.70073, 6.633319999999999, 6.07993, 7.00307, 7.6009, 6.22654, 6.907760000000001, 6.32615, 6.508769999999999, 6.551080000000001, 6.39693, 6.21661, 7.11802, 6.90575, 7.17012, 7.00307, 5.99146, 7.46737, 6.90575, 6.58755, 6.8254600000000005, 6.311730000000001, 6.95655, 6.62007, 6.3952599999999995, 7.04752, 6.50429, 6.39693, 6.90575, 6.60665, 6.90575, 6.70441, 6.51471, 6.77992, 5.99146, 6.40523, 6.18826, 7.24423, 7.09008, 6.62007, 7.1624, 6.813439999999999, 6.907760000000001, 7.17012, 6.53814, 6.2146099999999995, 6.882439999999999, 6.36647, 6.47697, 6.68461, 7.408530000000001, 6.46614, 6.90575, 6.95655, 5.8579300000000005, 6.745239999999999, 5.7462, 7.20786, 7.04752, 7.04316, 6.17379, 6.83195, 6.8533, 7.20786, 6.62007, 6.95655, 6.90575, 7.09008, 7.014810000000001, 6.73815, 6.65028, 7.03878, 7.266830000000001, 6.95655, 6.58617, 6.49072, 7.20786, 6.602589999999999, 6.551080000000001, 6.87626, 5.16479, 7.54961, 6.551080000000001, 6.49224, 6.907760000000001, 7.64969, 6.9177100000000005, 6.35957, 6.68461, 7.43838, 5.99146, 6.41182, 6.43775, 6.43775, 6.4599, 6.04025, 7.00307, 5.99146, 6.852239999999999, 6.6515699999999995, 6.16331, 6.3243599999999995, 6.551080000000001, 6.802389999999999, 6.62007, 6.5439099999999994, 6.57925, 6.38012, 6.4151, 6.29157, 6.39693, 5.01064, 6.75926, 6.73102, 6.66823, 7.37776, 6.77422, 7.1309, 6.90575, 7.408530000000001, 6.39693, 7.0396600000000005, 7.09589, 7.10003, 6.87523, 6.90575, 6.90575, 6.47389, 6.99026, 7.0884100000000005, 5.5606800000000005, 6.44572, 6.802389999999999, 6.551080000000001, 6.53379, 6.46614, 6.61338, 6.85646, 6.10925, 6.99118, 6.2441699999999996, 7.1592899999999995, 6.90575, 7.01571, 6.42162, 6.716589999999999, 6.85646, 6.907760000000001, 6.8426800000000005, 6.46459, 6.62007, 6.58617, 6.85646, 6.90575, 7.6009, 6.30992, 7.00307, 6.17379, 7.01392, 6.62007, 7.346010000000001, 6.90575, 6.50429, 7.24423, 7.0942300000000005, 6.3716099999999996, 6.62007, 7.09008, 6.703189999999999, 6.53233, 6.58617, 6.602589999999999, 6.9622399999999995, 6.38012, 6.802389999999999, 6.43935, 6.259580000000001, 7.044910000000001, 6.42162, 6.90575, 6.802389999999999, 6.44413, 7.127689999999999, 6.45677, 7.06902, 6.59987, 6.802389999999999, 6.715380000000001, 6.715380000000001, 7.00307, 6.937310000000001, 6.2106, 6.708080000000001, 6.0845, 6.907760000000001, 6.43775, 6.2146099999999995, 6.2634, 6.74406, 7.54961, 6.90575, 6.62007, 6.768489999999999, 6.63595, 5.82895, 6.90575, 6.75577, 6.04025, 6.77422, 6.2146099999999995, 6.62007, 6.9489, 7.354360000000001, 7.279319999999999, 6.6592899999999995, 7.06305, 6.61338, 7.00307, 6.49224, 6.07993, 6.84588, 6.35611, 6.8977, 6.551080000000001, 7.20786, 6.90575, 7.59287, 7.1309, 7.393260000000001, 6.95655, 6.834110000000001, 6.07993, 7.10988, 6.802389999999999, 6.224559999999999, 6.57925, 6.90575, 6.90575, 5.8693, 6.16542, 6.62007, 6.963189999999999, 6.95655, 6.90575, 6.90575, 6.796819999999999, 6.66568, 6.73459, 6.907760000000001, 6.8533, 6.43615, 6.9147300000000005, 6.551080000000001, 6.77194, 6.90575, 6.90575, 6.66823, 7.0255399999999995, 7.522939999999999, 6.62007, 6.354369999999999, 7.1546199999999995, 6.90575, 6.551080000000001, 5.78383, 7.313219999999999, 6.967910000000001, 6.816739999999999, 7.6009, 6.51471, 7.37588, 6.86485, 6.41346, 6.7093, 6.551080000000001, 6.22654, 7.24423, 5.70378, 6.16331, 6.86171, 6.58617, 7.1309, 6.39693, 6.58617, 7.67322, 6.551080000000001, 6.2146099999999995, 6.77422, 6.66185, 6.90575, 7.495539999999999, 6.29157, 6.59715, 7.09008, 6.03787, 6.354369999999999, 7.6009, 6.83303, 6.63068, 6.551080000000001, 6.354369999999999, 6.77422, 7.183110000000001, 6.77992, 7.00307, 7.86327, 6.795710000000001, 7.1309, 6.32794, 6.16121, 6.65286, 6.802389999999999, 6.715380000000001, 6.78333, 6.90575, 6.67582, 6.47697, 6.907760000000001, 6.90575, 6.682110000000001, 6.53233, 6.882439999999999, 7.0255399999999995, 6.715380000000001, 7.872839999999999, 6.49072, 6.90575, 6.4892, 6.63726, 6.12249, 6.79122, 6.53233, 6.05209, 6.907760000000001, 6.8742, 5.68698, 7.02997, 6.715380000000001, 6.2146099999999995, 6.90575, 7.313219999999999, 6.3699, 6.07074, 6.77992, 6.54822, 6.62007, 6.59987, 6.62007, 6.8966899999999995, 6.802389999999999, 6.07993, 6.51026, 6.907760000000001, 6.50429, 6.47697, 6.58617, 5.88053, 6.77422, 6.8977, 5.9135, 6.17379, 6.93537, 6.507280000000001, 7.46737, 5.82895, 7.034389999999999, 6.7569300000000005, 7.2998, 6.95655, 6.88755, 6.802389999999999, 6.10925, 6.68461, 8.03916, 6.829789999999999, 6.6745600000000005, 6.714169999999999, 6.43775, 7.00307, 6.43455, 6.90575, 7.346660000000001, 6.9256, 7.6009, 7.10988, 7.24423, 6.7569300000000005, 6.48004, 6.889589999999999, 7.313219999999999, 6.59167, 6.33328, 6.551080000000001, 7.408530000000001, 6.802389999999999, 7.3908, 6.90575, 5.86079, 6.9256, 6.13123, 5.99894, 6.551080000000001, 6.57925, 6.90575, 6.73102, 6.566669999999999, 6.9966800000000005, 6.68461, 6.424869999999999, 6.646389999999999, 5.39363, 5.96615, 6.2146099999999995, 6.802389999999999, 6.90575, 5.70378, 6.78672, 7.09008, 6.602589999999999, 6.52209, 6.59987, 6.44572, 6.20456, 6.57925, 6.38012, 6.16331, 7.43838, 6.551080000000001, 6.95655, 5.76832, 7.2100800000000005, 6.48311, 6.45362, 6.2634, 7.18917, 5.9135, 6.6896, 6.2146099999999995, 6.802389999999999, 7.38647, 6.96885, 6.10925, 7.196689999999999, 6.14419, 6.818919999999999, 6.72623, 6.90575, 7.04752, 6.7569300000000005, 6.62936, 7.09008, 6.62007, 6.95655, 7.49332, 6.62007, 6.31355, 6.62007, 6.753439999999999, 6.77422, 6.2653, 7.495539999999999, 6.95655, 6.88755, 7.47307, 6.224559999999999, 6.90575, 6.90575, 7.909860000000001, 6.3716099999999996, 6.52209, 7.106610000000001, 6.69084, 5.627619999999999, 6.802389999999999, 6.6567300000000005, 6.68461, 6.697030000000001, 7.740660000000001, 5.95324, 6.907760000000001, 6.43775, 6.813439999999999, 5.76832, 7.64969, 6.47697, 5.8579300000000005, 5.89715, 6.907760000000001, 6.745239999999999, 6.43775, 6.85646, 6.77422, 6.768489999999999, 6.2146099999999995, 7.029089999999999, 7.06133, 7.24423, 7.54961, 6.354369999999999, 6.87626, 6.318969999999999, 6.570880000000001, 6.62007, 7.61332, 7.09008, 6.7511, 6.551080000000001, 7.40914, 7.034389999999999, 7.18917, 6.49072, 6.30992, 6.55393, 6.72743, 6.05209, 7.0967199999999995, 6.30992, 6.90575, 6.785589999999999, 6.39693, 6.05209, 6.90575, 6.36819, 6.639880000000001, 6.62007, 6.77194, 6.551080000000001, 5.52146, 6.57228, 7.062189999999999, 6.47697, 6.829789999999999, 6.95655, 6.907760000000001, 6.38012, 7.293019999999999, 6.91175, 6.68461, 6.45834, 6.556780000000001, 6.5582, 6.91175, 6.45362, 7.1309, 6.36303, 6.8773, 6.955589999999999, 7.80588, 6.9613, 6.907760000000001, 6.90575, 7.18992, 7.507689999999999, 6.90575, 6.748760000000001, 7.31122, 6.6107, 6.807930000000001, 6.1717, 6.16331, 6.6592899999999995, 6.598510000000001, 6.633319999999999, 7.6009, 6.90575, 6.04025, 7.66153, 7.22548, 6.48768, 6.87213, 7.17012, 6.23245, 6.39693, 7.35244, 8.00637, 6.33328, 6.90575, 6.802389999999999, 6.30992, 6.551080000000001, 6.77422, 6.30992, 7.522939999999999, 6.802389999999999, 5.7525699999999995, 7.05704, 7.16858, 6.802389999999999, 7.20564, 6.551080000000001, 6.47697, 6.852239999999999, 7.6009, 6.70564, 5.7525699999999995, 6.90575, 6.802389999999999, 6.11147, 6.95655, 6.84375, 6.95655, 6.8977, 7.34923, 6.93245, 6.34564, 6.79122, 5.8861, 7.400010000000001, 6.83195, 7.00307, 6.354369999999999, 6.85646, 6.61607, 6.90575, 6.6120399999999995, 6.63726, 7.1309, 6.739339999999999, 7.86327, 6.55393, 6.7511, 6.05912, 6.54535, 7.00307, 6.57925, 6.66823, 7.71869, 5.52146, 6.551080000000001, 7.00307, 6.253830000000001, 5.99146, 7.2724, 6.3315, 6.3699, 6.39693, 5.43808, 7.82405, 6.95655, 5.95324, 6.90575, 6.8426800000000005, 7.0518600000000005, 6.993930000000001, 6.907760000000001, 6.7511, 6.78897, 6.67203, 7.259119999999999, 7.6811, 6.745239999999999, 7.27031, 6.721430000000001, 6.2146099999999995, 6.90575, 7.37776, 7.06048, 7.6009, 6.30992, 7.0282, 6.66696, 6.90575, 6.47235, 6.90575, 6.6592899999999995, 6.80351, 6.92658, 6.39693, 6.28227, 7.06902, 5.958419999999999, 7.1309, 6.62007, 6.33683, 6.984719999999999, 5.89715, 6.06611, 6.354369999999999, 6.52209, 7.362010000000001, 6.8200199999999995, 6.73102, 6.8773, 6.2146099999999995, 6.507280000000001, 7.313219999999999, 6.49072, 6.0845, 7.46737, 5.48064, 6.745239999999999, 7.181589999999999, 6.551080000000001, 6.29157, 6.51619, 6.56948, 5.83188, 6.39693, 6.82437, 6.753439999999999, 6.966019999999999, 6.802389999999999, 7.239210000000001, 6.907760000000001, 6.62407, 6.551080000000001, 6.41673, 7.313219999999999, 6.84588, 6.42162, 6.68461, 6.715380000000001, 6.85646, 6.2146099999999995, 7.313219999999999, 7.37776, 6.07993, 6.30992, 7.1309, 6.70564, 6.27099, 7.279319999999999, 6.73102, 6.53669, 6.24222, 7.03527, 6.507280000000001, 6.93049, 7.09008, 6.33328, 6.68461, 6.90575, 6.30992, 7.43838, 6.6346300000000005, 6.59167, 6.1181, 6.41836, 7.2724, 6.56526, 6.90575, 7.91936, 6.54103, 6.20456, 6.802389999999999, 7.484369999999999, 6.90575, 6.39693, 6.94698, 6.96885, 6.907760000000001, 7.293019999999999, 7.173189999999999, 6.815639999999999, 6.813439999999999, 6.90575, 6.90575, 7.09008, 6.90575, 5.70378, 7.279319999999999, 6.68461, 6.6592899999999995, 7.91936, 6.035480000000001, 7.00307, 6.551080000000001, 6.68461, 6.745239999999999, 6.53669, 5.76832, 7.520230000000001, 6.51323, 7.1082399999999994, 6.551080000000001, 6.5582, 7.17012, 6.768489999999999, 6.6958, 6.39693, 6.2146099999999995, 7.09008, 6.5582, 7.09008, 7.676010000000001, 6.715380000000001, 5.70378, 6.907760000000001, 6.3935900000000006, 7.54961, 6.43775, 5.79606, 6.83087, 6.6783399999999995, 6.54535, 6.02345, 6.593039999999999, 6.77422, 6.44572, 7.04752, 6.3716099999999996, 6.72743, 7.37776, 7.17012, 6.8426800000000005, 7.00307, 6.126869999999999, 6.56526, 6.96885, 6.42811, 6.752269999999999, 6.90575, 6.78672, 7.1309, 8.12089, 6.829789999999999, 7.00307, 6.1944099999999995, 7.740660000000001, 6.907760000000001, 6.96979, 6.68461, 7.14283, 6.2634, 7.1293, 6.89467, 6.646389999999999, 6.621410000000001, 5.5797300000000005, 7.183110000000001, 6.07993, 6.34388, 6.39024, 7.0255399999999995, 6.424869999999999, 6.68461, 6.49979, 7.37776, 6.7901, 6.4488900000000005, 6.614730000000001, 6.802389999999999, 7.09008, 6.93245, 6.6592899999999995, 6.30992, 6.7226300000000005, 7.37776, 6.37502, 7.7021, 7.46737, 7.6009, 7.36455, 5.4161, 6.59715, 6.639880000000001, 6.62007, 7.09008, 6.47697, 6.78333, 6.563860000000001, 7.0076, 6.880380000000001, 6.745239999999999, 6.82437, 6.4677, 7.127689999999999, 7.1309, 6.62007, 7.82084, 7.288930000000001, 6.39693, 6.68461, 7.10988, 6.354369999999999, 6.7546, 7.196689999999999, 6.74052, 6.67203, 7.1309, 7.6009, 7.24423, 6.9256, 7.11314, 6.86693, 5.82895, 6.85118, 6.85646, 6.2146099999999995, 6.92363, 6.84588, 6.86171, 6.62936, 6.50279, 6.7417, 7.18917, 6.2146099999999995, 6.93245, 6.78897, 7.00307, 6.2146099999999995, 6.3935900000000006, 6.73815, 6.57647, 6.39693, 6.9707300000000005, 8.3082, 7.1309, 7.17012, 6.593039999999999, 6.62007, 6.90575, 5.52146, 6.907760000000001, 6.64509, 7.09008, 6.39693, 6.77422, 7.903969999999999, 6.80461, 7.037030000000001, 7.04752, 6.08904, 6.47697, 6.65286, 6.90575, 6.802389999999999, 6.87626, 6.90575, 7.1507, 7.21082, 6.52942, 6.3207699999999996, 6.24611, 6.18826, 6.975410000000001, 7.16085, 6.593039999999999, 6.83303, 6.48158, 5.99146, 6.85646, 6.907760000000001, 6.8384100000000005, 5.01064, 6.551080000000001, 6.6695, 6.57925, 6.30992, 6.68461, 6.802389999999999, 6.785589999999999, 6.45362, 7.313219999999999, 6.551080000000001, 6.745239999999999, 7.29097, 5.8861, 6.98008, 6.802389999999999, 7.20786, 6.983789999999999, 6.75926, 6.68461, 6.90575, 7.4570300000000005, 6.85646, 6.566669999999999, 6.829789999999999, 6.79347, 6.643789999999999, 6.77422, 7.90101, 6.32794, 7.81883, 6.966019999999999, 6.2146099999999995, 6.77422, 6.8384100000000005, 6.813439999999999, 6.551080000000001, 6.920669999999999, 6.62007, 6.745239999999999, 6.69332, 6.745239999999999, 7.0396600000000005, 5.8260000000000005, 6.47697, 6.39693, 7.24423, 7.12367, 7.17012, 6.60394, 6.68461, 6.44413, 6.72623, 6.47697, 6.907760000000001, 6.4552, 7.1546199999999995, 6.39693, 7.37776, 7.18917, 6.10925, 5.95584, 7.03878, 6.461469999999999, 6.697030000000001, 6.66568, 6.56526, 6.49375, 7.06048, 6.715380000000001, 6.95655, 7.1309, 6.95655, 6.76273, 6.311730000000001, 7.1507, 7.00307, 6.29157, 6.86693, 6.68461, 6.90575, 6.95655, 7.17012, 7.0255399999999995, 6.86171, 7.495539999999999, 6.49224, 6.90575, 6.8865300000000005, 7.57353, 6.602589999999999, 6.85646, 5.8579300000000005, 6.30992, 6.5467900000000006, 6.530880000000001, 6.802389999999999, 7.6009, 6.46459, 6.834110000000001, 7.313219999999999, 6.7334, 6.18415, 6.66441, 6.05209, 7.251339999999999, 5.87774, 6.43775, 6.768489999999999, 6.68461, 6.90575, 7.281389999999999, 6.90575, 6.95845, 5.84354, 6.583410000000001, 6.91672, 6.46925, 6.90575, 8.229510000000001, 7.027310000000001, 6.84055, 7.136480000000001, 6.787839999999999, 6.74288, 7.0934, 7.200419999999999, 6.83087, 6.79122, 6.39693, 7.46737, 6.802389999999999, 7.165489999999999, 6.62007, 6.90575, 7.0255399999999995, 7.70661, 6.47389, 6.35957, 6.07535, 6.907760000000001, 5.99894, 7.1107, 7.20786, 6.43775, 6.83518, 6.77878, 6.966019999999999, 6.3716099999999996, 6.907760000000001, 6.68461, 6.64898, 6.28972, 6.66058, 6.967910000000001, 7.016610000000001, 6.68461, 7.09008, 6.85646, 6.77765, 6.90575, 7.09008, 6.90575, 7.21891, 6.30992, 6.90575, 6.745239999999999, 7.07242, 7.6009, 6.817830000000001, 6.23637, 7.346010000000001, 6.6592899999999995, 7.46737, 6.975410000000001, 6.79122, 6.90575, 6.90575, 6.68336, 6.892639999999999, 6.86485, 6.947939999999999, 6.955589999999999, 6.90575, 6.807930000000001, 6.74288, 6.802389999999999, 6.4599, 6.2146099999999995, 7.398789999999999, 7.37776, 7.35883, 6.47697, 7.18463, 6.745239999999999, 6.84588, 6.68461, 7.64969, 6.715380000000001, 5.84644, 6.88857, 6.23441, 7.098380000000001, 6.2804, 7.6256, 6.6346300000000005, 5.68698, 6.43455, 6.52649, 6.51915, 6.1203, 7.00307, 5.7365699999999995, 6.36475, 5.7462, 6.77422, 6.73459, 7.1293, 5.7365699999999995, 6.28413, 7.17012, 6.2146099999999995, 6.90575, 6.6515699999999995, 6.56948, 6.03787, 5.47227, 7.313219999999999, 6.11589, 6.68461, 6.2146099999999995, 6.72743, 7.09008, 6.3935900000000006, 7.12287, 7.04752, 6.6796, 6.758089999999999, 6.68461, 6.30992, 6.90575, 6.745239999999999, 6.21261, 7.251339999999999, 6.10032, 8.048789999999999, 7.313219999999999, 6.745239999999999, 6.907760000000001, 6.90575, 6.90575, 5.7365699999999995, 8.08641, 7.08171, 6.97354, 7.30653, 6.55962, 7.56008, 6.1944099999999995, 7.408530000000001, 6.01616, 6.32794, 6.74052, 6.47697, 6.95655, 6.95655, 6.58617, 6.85646, 6.44572, 7.313219999999999, 7.1309, 5.99146, 6.18826, 6.821110000000001, 6.47697, 6.813439999999999, 7.43838, 7.2717, 5.7462, 6.30262, 6.38351, 6.551080000000001, 6.43775, 6.90575, 6.53233, 5.84932, 6.61874, 7.88231, 6.90575, 5.7651900000000005, 7.08255, 6.882439999999999, 7.37776, 6.44413, 6.90575, 7.2998, 6.5439099999999994, 6.551080000000001, 6.49375, 6.90575, 7.35372, 7.135689999999999, 7.46737, 5.7365699999999995, 6.63595, 6.802389999999999, 7.346010000000001, 6.90575, 6.86693, 5.78383, 6.829789999999999, 6.7334, 7.2998, 6.65415, 6.9256, 6.3699, 6.39693, 6.49072, 6.02345, 7.32251, 6.13123, 6.29711, 6.799060000000001, 6.272880000000001, 6.23832, 6.354369999999999, 6.49527, 6.697030000000001, 6.703189999999999, 7.04752, 6.65286, 6.2146099999999995, 6.42162, 6.62007, 6.51471, 6.52942, 6.16331, 6.813439999999999, 7.09008, 6.19236, 6.49979, 6.6253899999999994, 6.7369699999999995, 7.064760000000001, 6.01616, 7.11883, 6.51175, 5.7525699999999995, 7.46737, 6.551080000000001, 7.67322, 6.907760000000001, 6.58617, 7.1309, 6.43294, 7.46737, 6.95655, 6.54247, 6.3716099999999996, 7.293019999999999, 6.95655, 6.3613, 6.10925, 6.551080000000001, 6.907760000000001, 6.83518, 6.6567300000000005, 6.984719999999999, 7.062189999999999, 6.907760000000001, 6.77992, 7.195189999999999, 7.185389999999999, 6.01616, 6.72743, 6.33683, 6.70073, 7.20786, 7.0103100000000005, 6.3716099999999996, 6.551080000000001, 6.7334, 7.495539999999999, 6.24028, 6.354369999999999, 6.90575, 6.551080000000001, 7.00307, 6.85013, 7.0255399999999995, 6.39693, 6.23441, 6.5395900000000005, 6.907760000000001, 6.62007, 6.05209, 7.12287, 6.745239999999999, 6.30992, 7.21744, 6.49072, 6.05209, 7.24423, 6.802389999999999, 7.09008, 6.44572, 7.00307, 6.62007, 6.966019999999999, 6.721430000000001, 6.813439999999999, 7.3696, 6.461469999999999, 6.18002, 6.90575, 7.20786, 6.78333, 6.57647, 7.00307, 6.74993, 6.57925, 6.907760000000001, 7.18917, 6.16331, 6.59578, 6.802389999999999, 6.272880000000001, 7.014810000000001, 6.745239999999999, 6.2146099999999995, 6.64509, 6.608, 6.68461, 6.58617, 6.62007, 6.19032, 5.96358, 6.95655, 6.12249, 6.62007, 7.313219999999999, 7.09008, 6.98101, 6.6871100000000006, 7.09008, 6.81014, 7.37776, 6.85435, 7.64969, 6.907760000000001, 6.6733, 7.5574699999999995, 6.13773, 6.67203, 6.30992, 6.47697, 6.8956800000000005, 6.56948, 6.802389999999999, 6.9707300000000005, 8.00637, 5.5797300000000005, 5.70711, 6.92363, 6.57368, 7.37776, 6.2146099999999995, 7.408530000000001, 7.1155800000000005, 7.91936, 7.09008, 7.1309, 6.58617, 6.14633, 6.11147, 6.90575, 7.092569999999999, 6.86485, 5.66988, 7.57558, 7.200419999999999, 6.95655, 6.2146099999999995, 6.05209, 6.44254, 6.35957, 5.72031, 6.60394, 6.39693, 5.90808, 8.537, 6.07993, 7.36645, 6.67708, 6.99942, 7.64969, 6.68461, 6.57925, 6.2186, 7.09008, 6.83518, 7.09008, 6.90575, 6.43615, 6.84162, 7.313219999999999, 6.68461, 6.55962, 6.07993, 6.3952599999999995, 6.633319999999999, 7.09008, 7.313219999999999, 6.30992, 6.66823, 7.2861899999999995, 5.66988, 5.98896, 7.620710000000001, 6.0822199999999995, 6.77878, 5.43808, 7.09008, 7.6009, 5.8141300000000005, 6.68461, 7.37776, 7.525639999999999, 6.74993, 6.72623, 7.09008, 7.25347, 7.585789999999999, 6.45362, 6.354369999999999, 6.984719999999999, 6.90575, 6.907760000000001, 7.0775, 7.346010000000001, 7.027310000000001, 6.907760000000001, 6.9489, 6.907760000000001, 7.495539999999999, 6.745239999999999, 6.58617, 6.90575, 6.633319999999999, 6.80572, 6.2634, 6.31355, 6.86485, 6.49677, 6.68461, 6.633319999999999, 7.30317, 6.95655, 5.742999999999999, 6.04025, 6.39693, 7.313219999999999, 6.90575, 7.09008, 6.47697, 7.196689999999999, 6.30262, 6.745239999999999, 7.07412, 6.10925, 7.42357, 6.768489999999999, 6.7901, 6.56244, 6.9828600000000005, 6.253830000000001, 7.02465, 6.27099, 6.57228, 6.829789999999999, 6.68461, 5.84354, 6.05209, 7.12287, 6.2146099999999995, 6.84162, 7.00307, 6.35611, 6.95655, 6.39693, 6.88755, 7.04316, 6.90575, 6.84162, 6.45362, 6.83518, 6.85646, 5.99146, 6.62007, 6.2186, 7.00307, 6.1717, 5.99146, 6.22654, 6.633319999999999, 6.77308, 6.95655, 6.967910000000001, 6.66568, 6.90575, 6.5439099999999994, 6.60665, 7.04752, 7.062189999999999, 7.313219999999999, 7.04752, 7.0884100000000005, 6.90575, 6.23441, 6.25767, 6.05209, 6.551080000000001, 7.09008, 6.68461, 6.2146099999999995, 6.386880000000001, 6.44413, 6.58617, 6.745239999999999, 7.2233, 6.8773, 5.8579300000000005, 6.813439999999999, 7.037030000000001, 6.17379, 7.6009, 6.30992, 6.685860000000001, 6.38856, 6.47697, 7.46737, 6.551080000000001, 6.87213, 6.73102, 7.45298, 6.39693, 6.882439999999999, 5.95584, 6.7093, 6.90675, 6.551080000000001, 6.85646, 6.563860000000001, 6.769639999999999, 6.73102, 7.06133, 6.68461, 6.2146099999999995, 6.62007, 6.912739999999999, 6.2634, 7.08171, 6.90575, 7.6009, 6.556780000000001, 6.52062, 6.907760000000001, 6.60935, 5.8141300000000005, 6.30992, 6.51471, 6.9828600000000005, 7.338889999999999, 6.22654, 6.84055, 6.311730000000001, 7.01392, 6.49224, 7.44659, 5.94803, 7.388330000000001, 6.85118, 7.24423, 6.632000000000001, 6.65544, 6.90575, 7.10906, 6.944089999999999, 6.83518, 6.222580000000001, 6.84588, 7.17012, 6.52503, 6.2860000000000005, 6.80128, 6.07993 ], "y0": " " }, { "fillcolor": "hsla(328, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(328, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "yes", "line": { "color": "hsla(328, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(328, 70%, 70%,1)", "line": { "color": "hsla(328, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "star" }, "meanline": { "color": "hsla(328, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage yes", "orientation": "h", "pointpos": -0.6, "points": false, "scalegroup": "yes", "scalemode": "count", "showlegend": true, "side": "negative", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 5.99146, 5.61677, 6.4552, 6.95845, 7.06902, 6.907760000000001, 6.30079, 6.07535, 6.47697, 6.892639999999999, 6.907760000000001, 6.682110000000001, 6.39693, 7.00307, 6.9546399999999995, 6.993930000000001, 6.5439099999999994, 6.51471, 6.30992, 6.46925, 6.85646, 5.94803, 7.35947, 6.39693, 6.66696, 6.787839999999999, 7.00307, 6.17379, 6.16331, 6.43775, 6.813439999999999, 6.694560000000001, 6.29157, 6.67203, 6.88755, 6.95655, 6.95655, 6.48158, 6.663130000000001, 6.16121, 6.19236, 5.8999, 6.58617, 6.23832, 6.745239999999999, 5.70378, 6.05209, 6.90575, 6.206580000000001, 5.99146, 6.682110000000001, 7.408530000000001, 6.10925, 6.551080000000001, 6.25575, 6.16331, 5.73334, 6.90575, 6.551080000000001, 8.10168, 5.99645, 6.3952599999999995, 7.12448, 6.8977, 6.2146099999999995, 5.96615, 7.04752, 6.59578, 6.5467900000000006, 6.551080000000001, 6.36647, 5.52146, 6.05209, 6.62007, 6.39693, 7.03527, 5.43808, 6.907760000000001, 6.90575, 6.70073, 6.9256, 6.694560000000001, 6.97261, 7.29709, 6.7226300000000005, 6.7226300000000005, 6.62007, 5.68358, 6.93925, 6.90575, 6.90575, 6.42972, 6.61607, 5.5606800000000005, 6.2634, 6.715380000000001, 6.17379, 5.96615, 5.90808, 6.39693, 6.16331, 6.317159999999999, 5.0814, 6.98008, 6.912739999999999, 7.3670800000000005, 7.09008, 6.90575, 6.62007, 6.9431199999999995, 6.10925, 4.605169999999999, 6.90575, 6.658010000000001, 5.8579300000000005, 7.441319999999999, 6.47851, 6.36475, 6.56948, 6.86485, 7.064760000000001, 6.715380000000001, 6.90575, 6.272880000000001, 6.66568, 6.40688, 7.57558, 6.83518, 6.86693, 6.39693, 6.34739, 6.58617, 6.10925, 6.24611, 6.70073, 6.1203, 6.90575, 6.19644, 5.8579300000000005, 5.7525699999999995, 7.745, 6.318969999999999, 6.30628, 6.94986, 5.70378, 7.03615, 5.66988, 6.882439999999999, 6.48158, 6.43775, 6.403569999999999, 7.24423, 6.51175, 5.7365699999999995, 7.00307, 5.8999, 5.7365699999999995, 5.8260000000000005, 6.44572, 6.3716099999999996, 6.47697, 6.85646, 6.77422, 6.19236, 6.39693, 7.15305, 6.6871100000000006, 6.06379, 7.09008, 6.0282800000000005, 6.90575, 6.1070199999999994, 6.00141, 6.408530000000001, 6.42972, 5.51745, 6.7334, 6.07993, 6.90575, 6.66185, 6.47697, 7.23418, 6.984719999999999, 6.85646, 6.43775, 6.3952599999999995, 7.144410000000001, 5.70378, 6.53233, 6.7334, 6.20456, 6.72743, 7.084230000000001, 7.20786, 6.8977, 7.00307, 6.39693, 6.19848, 6.745239999999999, 6.2634, 7.1546199999999995, 6.18415, 5.82895, 6.10925, 6.20456, 7.313219999999999, 6.90575, 6.10925, 7.49109, 6.91672, 5.8141300000000005, 6.646389999999999, 6.84055, 7.24423, 6.23245, 7.1309, 6.30992, 7.24423, 6.18415, 6.43775, 5.34711, 7.1107, 6.44572, 6.93245, 6.58617, 6.7093, 6.83195, 8.51719, 7.14756, 5.99146, 6.10925, 6.927560000000001, 6.95655, 5.8999, 5.59842, 5.9269300000000005, 6.354369999999999, 7.313219999999999, 5.95324, 6.62007, 5.9454199999999995, 5.4161, 5.87493, 6.10925, 6.6783399999999995, 7.259119999999999, 7.1309, 6.2952699999999995, 6.739339999999999, 7.1309, 6.05209, 6.27099, 6.354369999999999, 6.29157, 6.551080000000001, 6.63857, 6.77422, 6.882439999999999, 5.45959, 6.05209, 5.8579300000000005, 6.2146099999999995, 6.2634, 7.21891, 6.12905, 5.97126, 6.23048, 6.02345, 6.96035, 6.3716099999999996, 6.378430000000001, 6.802389999999999, 5.70378, 6.62007, 5.72031, 6.01616, 7.91936, 6.2146099999999995, 6.354369999999999, 6.2634, 6.51471, 6.253830000000001, 6.745239999999999, 7.3651800000000005, 6.53669, 5.99146, 6.62007, 7.27031, 7.03878, 6.10925, 6.52942, 6.715380000000001, 5.8579300000000005, 6.14204, 6.88755, 6.62007, 5.99146, 7.37776, 6.3315, 6.44254, 6.51471, 6.17379, 7.00307, 7.78322, 6.62007, 5.7525699999999995, 6.05209, 6.38856, 6.8773, 6.50429, 5.74939, 6.65544, 6.72743, 7.0201899999999995, 8.02027, 5.99645, 6.40523, 6.14204, 6.386880000000001, 7.24423, 5.93225, 6.85646, 5.86647, 6.566669999999999, 5.78383, 6.6515699999999995, 6.126869999999999, 7.1309, 6.4552, 7.23778, 6.66568, 6.21261, 6.30992, 6.88755, 7.08171, 6.47697, 6.6592899999999995, 5.4161, 6.408530000000001, 6.84055, 6.4892, 6.95177, 6.23637, 6.43775, 5.76832, 6.28227, 6.52209, 6.1025599999999995, 5.99146, 6.1025599999999995, 5.99146, 6.59987, 5.8861, 5.99146, 6.6871100000000006, 7.17012, 6.995769999999999, 6.56526, 7.09008, 6.561030000000001, 6.907760000000001, 7.71869, 7.143619999999999, 6.354369999999999, 6.802389999999999, 5.958419999999999, 6.424869999999999, 6.745239999999999, 6.13773, 6.882439999999999, 6.68461, 6.2804, 7.185389999999999, 7.26543, 7.05099, 6.10925, 6.60123, 6.715380000000001, 6.6567300000000005, 6.907760000000001, 7.64969, 5.99146, 6.354369999999999, 5.4161, 6.47697, 6.10925, 6.86693, 6.90575, 5.65948, 7.17012, 6.82763, 6.26149, 6.2634, 7.04752, 6.90575, 7.803839999999999, 6.31355, 7.54961, 5.84354, 6.2653, 6.07535, 7.1309, 6.77992, 5.50126, 6.90575, 6.30992, 6.9622399999999995, 5.82008, 6.85646, 6.8254600000000005, 6.8426800000000005, 6.1070199999999994, 6.33328, 6.43775, 6.253830000000001, 6.829789999999999, 5.8999, 5.99146, 6.36303, 7.20786, 6.752269999999999, 6.95655, 6.633319999999999, 6.6567300000000005, 6.50279, 6.7334, 6.16331, 6.44572, 6.6783399999999995, 7.408530000000001, 6.17379, 6.6280399999999995, 6.63857, 6.17794, 6.551080000000001, 6.57228, 6.58617, 5.59842, 6.829789999999999, 6.23441, 6.551080000000001, 6.63726, 6.2634, 6.10925, 6.17379, 6.4488900000000005, 7.1309, 6.68461, 6.30992, 7.0775, 7.03615, 6.6592899999999995, 7.313219999999999, 6.86693, 6.47697, 7.46737, 6.30079, 7.450080000000001, 6.551080000000001, 6.39192, 6.739339999999999, 6.16331, 6.68461, 5.70378, 5.4161, 5.5797300000000005, 6.82655, 5.87212, 7.52833, 6.60665, 6.90575, 6.77992, 7.43838, 6.52209, 5.52146, 6.23441, 6.463030000000001, 7.54961, 7.323169999999999, 6.90575, 5.9269300000000005, 6.17379, 6.31355, 5.8141300000000005, 6.7511, 6.77422, 7.25488, 6.907760000000001, 5.42053, 6.19848, 6.52209, 6.04025, 6.2146099999999995, 6.64249, 6.53669, 6.47697, 7.21524, 6.8426800000000005, 6.86693, 6.53669, 6.95655, 6.44254, 6.8426800000000005, 6.768489999999999, 6.68461, 7.12287, 6.551080000000001, 6.745239999999999, 7.06048, 6.44254, 6.51471, 7.279319999999999, 6.3952599999999995, 7.07918, 6.46925, 5.940169999999999, 7.0884100000000005, 6.829789999999999, 7.31986, 6.77422, 7.26193, 6.57786, 6.3081, 6.39693, 6.48311, 6.318969999999999, 6.802389999999999, 6.68461, 6.29157, 6.62007, 6.83518, 7.84502, 6.68461, 6.14633, 7.54697, 6.60665, 6.29895, 7.2724, 6.36303, 6.551080000000001, 6.58064, 5.70378, 5.93225, 6.34564, 6.10032, 6.68461, 5.78383, 6.84055, 6.58893, 5.2983199999999995, 6.60665, 6.18415, 6.66441, 6.551080000000001, 5.82008, 6.10925, 6.51175, 6.5439099999999994, 7.522939999999999, 6.551080000000001, 6.907760000000001, 7.04752, 6.44572, 6.41346, 6.52209, 6.59715, 6.2146099999999995, 6.97167, 6.10925, 6.30992, 6.04025, 6.73102, 7.20786, 7.173960000000001, 6.206580000000001, 6.56526, 6.90575, 6.90575, 6.47389, 6.697030000000001, 6.59987, 7.46737, 6.58617, 6.95655, 6.29157, 6.95177, 6.50129, 6.2952699999999995, 6.15698, 6.15273, 6.68461, 5.78383, 6.54535, 7.86327, 6.354369999999999, 7.46737, 6.424869999999999, 6.39693, 6.40192, 6.55393, 6.593039999999999, 6.39693, 6.57786, 6.68461, 6.42972, 6.85435, 6.58893, 6.16331, 6.2441699999999996, 6.85646, 6.73221, 5.72031, 5.97635, 6.13123, 6.37673, 6.77194, 6.99485, 6.58617, 5.8999, 6.2146099999999995, 6.6567300000000005, 5.8861, 6.35611, 6.17587, 6.927560000000001, 7.09008, 7.1309, 6.907760000000001, 7.6009, 6.43775, 6.813439999999999, 7.196689999999999, 6.47697, 6.753439999999999, 6.77422, 6.745239999999999, 6.06146, 7.05359, 6.49224, 6.77422, 7.93737, 6.2634, 6.99485, 6.45047, 6.94119, 7.21891, 7.57558, 6.10925, 6.556780000000001, 6.2146099999999995, 7.279319999999999, 7.925160000000001, 6.1136800000000004, 6.62007, 6.70073, 5.6801699999999995, 6.95655, 6.19236, 6.23048, 6.3613, 6.697030000000001, 6.08677, 6.6280399999999995, 6.907760000000001, 6.05209, 5.70378, 6.12249, 6.14847, 6.7226300000000005, 8.047189999999999, 6.2146099999999995, 6.17794, 6.68461, 7.495539999999999, 6.62007, 6.45205, 6.32794, 5.4161, 6.38856, 6.9256, 6.57786, 6.53669, 6.39693, 6.33328, 7.313219999999999, 6.95655, 7.06561, 7.09008, 6.43775, 6.62007, 6.9613, 6.65286, 7.24423, 6.42162, 7.0422899999999995, 7.034389999999999, 5.96615, 6.818919999999999, 6.53669, 6.507280000000001, 6.765039999999999, 6.2691, 6.50129, 6.2634, 6.3403599999999996, 6.692080000000001, 5.9839400000000005, 6.013719999999999, 6.7334, 6.56526, 6.47697, 6.69084, 6.07304, 6.2146099999999995, 6.40523, 6.22654, 6.43775, 6.9256, 6.43615, 6.10925, 7.1309, 6.33683, 5.97889, 6.62007, 6.95177, 6.34388, 6.8977, 5.70378, 6.1070199999999994, 6.551080000000001, 6.907760000000001, 6.697030000000001, 6.814539999999999, 6.23637, 7.24423, 6.802389999999999, 5.8999, 6.2441699999999996, 6.47697, 5.4161, 6.385190000000001, 6.79794, 7.0483899999999995, 5.5797300000000005, 6.09131, 7.106610000000001, 6.4677, 7.183110000000001, 6.56948, 7.05272, 6.10925, 6.49979, 6.58617, 6.551080000000001, 6.0330900000000005, 7.1507, 7.03878, 5.8579300000000005, 7.37588, 6.84162, 6.93342, 6.608, 5.82305, 6.056780000000001, 6.697030000000001, 6.5395900000000005, 6.47697, 6.907760000000001, 6.551080000000001, 6.51471, 7.0422899999999995, 7.1309, 6.44572, 5.39363, 7.401839999999999, 6.907760000000001, 6.90575, 6.09582, 6.07535, 5.8999, 6.79122, 6.2146099999999995, 6.2804, 6.563860000000001, 6.99485, 6.84375, 6.56244, 8.0229, 6.4892, 6.08677, 5.68698, 6.753439999999999, 6.52209, 6.39693, 6.81014, 6.802389999999999, 6.82437, 6.11147, 6.2634, 7.05618, 7.2998, 5.86079, 6.937310000000001, 6.9256, 6.90575, 6.10925, 7.09008, 6.3952599999999995, 6.5582, 6.98008, 5.70378, 6.62007, 6.95655, 6.57786, 5.8579300000000005, 6.69084, 5.7462, 6.16752, 7.04752, 6.59715, 6.45047, 6.62007, 6.6592899999999995, 7.04752, 6.58617, 6.90575, 7.57558, 6.2146099999999995, 6.899719999999999, 6.51471, 5.7462, 7.084230000000001, 7.00307, 6.77422, 6.43294, 6.88857, 7.226210000000001, 5.76832, 6.73102, 6.05912, 6.507280000000001, 6.47697, 6.206580000000001, 6.90575, 6.2146099999999995, 6.907760000000001, 6.715380000000001, 6.96885, 6.57368, 6.39859, 6.2146099999999995, 6.8426800000000005, 5.5797300000000005, 6.39693, 7.393260000000001, 6.95177, 6.9613, 6.4892, 6.86171, 5.9269300000000005, 6.50129, 6.8773, 6.354369999999999, 6.575080000000001, 6.62007, 6.2146099999999995, 6.551080000000001, 6.2146099999999995, 6.139880000000001, 5.43808, 6.5467900000000006, 6.17379, 6.60665, 6.51323, 6.30992, 6.09807, 6.8977, 6.35784, 6.57925, 6.36303, 5.82895, 6.59715, 6.551080000000001, 5.50126, 6.72743, 6.583410000000001, 6.563860000000001, 6.44731, 5.99146, 7.24423, 6.86485, 6.6107, 6.58617, 5.70378, 5.67675, 6.813439999999999, 5.7589, 6.74759, 7.09008, 7.84385, 6.802389999999999, 6.78672, 6.90575, 6.86693, 6.259580000000001, 6.41999, 7.43838, 7.0255399999999995, 6.802389999999999, 6.1944099999999995, 6.745239999999999, 6.76388, 6.70073, 7.07834, 6.701960000000001, 6.8426800000000005, 6.0282800000000005, 6.69827, 6.57786, 6.30992, 7.61874, 6.44095, 6.99485, 6.79122, 7.279319999999999, 6.813439999999999, 6.47389, 6.802389999999999, 6.55962, 6.8977, 6.05912, 7.1309, 6.85646, 6.25767, 6.33328, 5.65249, 6.62007, 7.195189999999999, 6.3315, 6.90575, 6.90575, 6.07535, 6.30992, 6.96885, 6.18415, 6.4677, 6.2146099999999995, 6.5903, 7.136480000000001, 5.9839400000000005, 6.2146099999999995, 6.51471, 5.61677, 6.10925, 6.90575, 6.317159999999999, 6.35611, 6.23048, 6.55962, 6.802389999999999, 6.802389999999999, 7.43838, 6.35957, 6.5820300000000005, 7.17012, 5.6733199999999995, 7.17702, 6.44572, 6.551080000000001, 6.71174, 7.37776, 6.67203, 6.55393, 6.593039999999999, 6.30992, 6.556780000000001, 6.95273, 6.745239999999999, 6.43133, 7.00307, 6.2146099999999995, 5.66988, 6.53379, 6.84801, 5.99146, 5.8999, 5.8861, 6.719010000000001, 6.720219999999999, 7.216710000000001, 6.65286, 5.78383, 6.551080000000001, 5.66988, 7.0255399999999995, 7.04752, 6.3935900000000006, 6.354369999999999, 6.18208, 7.05876, 6.694560000000001, 6.59578, 7.027310000000001, 6.04025, 6.2146099999999995, 6.507280000000001, 6.633319999999999, 7.195189999999999, 5.76205, 6.49527, 7.54961, 7.09008, 6.10925, 6.49224, 6.80461, 5.96615, 8.26873, 6.17794, 6.43775, 5.95324, 5.70378, 7.495539999999999, 6.84588, 6.802389999999999, 7.17012, 6.551080000000001, 5.82305, 7.17012, 6.2441699999999996, 5.64191, 5.59842, 6.9594, 6.21261, 6.58617, 6.74406, 6.61338, 7.18007, 5.61313, 6.66568, 6.62672, 5.59842, 6.23441, 6.49224, 6.56526, 6.056780000000001, 5.8944, 5.45959, 6.06843, 6.1203, 6.06843, 6.7569300000000005, 6.938280000000001, 6.41346, 5.53339, 6.51471, 5.76832, 7.1309, 6.65286, 5.5797300000000005, 6.90575, 6.39693, 6.52209, 6.770789999999999, 7.04752, 5.79606, 6.57925, 5.52146, 6.752269999999999, 6.90575, 7.014810000000001, 6.85646, 6.745239999999999, 6.9256, 6.58617, 5.96615, 6.90575, 6.19644, 6.56526, 5.8141300000000005, 6.769639999999999, 6.08677, 6.48158, 6.57228, 6.35957, 5.8579300000000005, 6.57925, 6.14633, 6.39693, 6.08677, 7.64969, 8.13153, 6.907760000000001, 6.97261, 6.43775, 6.3243599999999995, 6.993930000000001, 6.712960000000001, 6.16331, 6.07993, 7.1309, 7.495539999999999, 6.768489999999999, 6.461469999999999, 6.28413, 6.126869999999999, 6.39693, 6.47697, 6.47697, 6.62936, 6.551080000000001, 6.28227, 7.64969, 6.9575, 6.5903, 6.43615, 7.00307, 6.39693, 6.83303, 6.51767, 6.14204, 7.91936, 6.9256, 6.33328, 6.65286, 6.57368, 6.57786, 7.37776, 6.6592899999999995, 6.4599, 6.51471, 5.73334, 6.975410000000001, 7.400010000000001, 5.9269300000000005, 6.61338, 7.1082399999999994, 6.58617, 5.8861, 6.42162, 6.13123, 6.79122, 6.720219999999999, 6.643789999999999, 6.802389999999999, 6.703189999999999, 6.39693, 6.06611, 6.57786, 6.28972, 6.48768, 6.41182, 6.937310000000001, 6.3315, 6.01127, 6.802389999999999, 6.2480400000000005, 7.35819, 6.907760000000001, 6.47697, 6.354369999999999, 6.68461, 6.95655, 6.715380000000001, 6.49224, 6.49979, 5.8861, 7.393260000000001, 6.32794, 6.28786, 5.9839400000000005, 6.62007, 6.2146099999999995, 6.983789999999999, 5.93225, 6.17379, 5.273, 6.46925, 7.1107, 6.995769999999999, 6.594410000000001, 6.62007, 6.937310000000001, 6.47697, 6.2146099999999995, 6.90575, 6.10925, 6.90073, 6.86693, 6.36303, 6.40523, 6.2146099999999995, 5.99146, 6.9226399999999995, 6.30992, 5.19296, 5.72359, 7.1309, 5.940169999999999, 6.9147300000000005, 6.381819999999999, 5.78996, 6.4708, 6.41017, 6.85646, 6.30992, 6.39693, 6.26149, 6.2205900000000005, 6.3081 ], "y0": " " }, { "box": { "visible": false }, "fillcolor": "rgba(0, 0, 0, 0)", "hoverinfo": "x", "hoveron": "points", "jitter": 0.3, "legendgroup": "yes", "line": { "color": "rgba(0, 0, 0, 0)", "width": 0 }, "marker": { "color": "hsla(328, 70%, 70%,1)", "line": { "color": "hsla(328, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "star" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": -0.6, "points": "all", "scalegroup": "yes", "showlegend": false, "side": "negative", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 5.99146, 5.61677, 6.4552, 6.95845, 7.06902, 6.907760000000001, 6.30079, 6.07535, 6.47697, 6.892639999999999, 6.907760000000001, 6.682110000000001, 6.39693, 7.00307, 6.9546399999999995, 6.993930000000001, 6.5439099999999994, 6.51471, 6.30992, 6.46925, 6.85646, 5.94803, 7.35947, 6.39693, 6.66696, 6.787839999999999, 7.00307, 6.17379, 6.16331, 6.43775, 6.813439999999999, 6.694560000000001, 6.29157, 6.67203, 6.88755, 6.95655, 6.95655, 6.48158, 6.663130000000001, 6.16121, 6.19236, 5.8999, 6.58617, 6.23832, 6.745239999999999, 5.70378, 6.05209, 6.90575, 6.206580000000001, 5.99146, 6.682110000000001, 7.408530000000001, 6.10925, 6.551080000000001, 6.25575, 6.16331, 5.73334, 6.90575, 6.551080000000001, 8.10168, 5.99645, 6.3952599999999995, 7.12448, 6.8977, 6.2146099999999995, 5.96615, 7.04752, 6.59578, 6.5467900000000006, 6.551080000000001, 6.36647, 5.52146, 6.05209, 6.62007, 6.39693, 7.03527, 5.43808, 6.907760000000001, 6.90575, 6.70073, 6.9256, 6.694560000000001, 6.97261, 7.29709, 6.7226300000000005, 6.7226300000000005, 6.62007, 5.68358, 6.93925, 6.90575, 6.90575, 6.42972, 6.61607, 5.5606800000000005, 6.2634, 6.715380000000001, 6.17379, 5.96615, 5.90808, 6.39693, 6.16331, 6.317159999999999, 5.0814, 6.98008, 6.912739999999999, 7.3670800000000005, 7.09008, 6.90575, 6.62007, 6.9431199999999995, 6.10925, 4.605169999999999, 6.90575, 6.658010000000001, 5.8579300000000005, 7.441319999999999, 6.47851, 6.36475, 6.56948, 6.86485, 7.064760000000001, 6.715380000000001, 6.90575, 6.272880000000001, 6.66568, 6.40688, 7.57558, 6.83518, 6.86693, 6.39693, 6.34739, 6.58617, 6.10925, 6.24611, 6.70073, 6.1203, 6.90575, 6.19644, 5.8579300000000005, 5.7525699999999995, 7.745, 6.318969999999999, 6.30628, 6.94986, 5.70378, 7.03615, 5.66988, 6.882439999999999, 6.48158, 6.43775, 6.403569999999999, 7.24423, 6.51175, 5.7365699999999995, 7.00307, 5.8999, 5.7365699999999995, 5.8260000000000005, 6.44572, 6.3716099999999996, 6.47697, 6.85646, 6.77422, 6.19236, 6.39693, 7.15305, 6.6871100000000006, 6.06379, 7.09008, 6.0282800000000005, 6.90575, 6.1070199999999994, 6.00141, 6.408530000000001, 6.42972, 5.51745, 6.7334, 6.07993, 6.90575, 6.66185, 6.47697, 7.23418, 6.984719999999999, 6.85646, 6.43775, 6.3952599999999995, 7.144410000000001, 5.70378, 6.53233, 6.7334, 6.20456, 6.72743, 7.084230000000001, 7.20786, 6.8977, 7.00307, 6.39693, 6.19848, 6.745239999999999, 6.2634, 7.1546199999999995, 6.18415, 5.82895, 6.10925, 6.20456, 7.313219999999999, 6.90575, 6.10925, 7.49109, 6.91672, 5.8141300000000005, 6.646389999999999, 6.84055, 7.24423, 6.23245, 7.1309, 6.30992, 7.24423, 6.18415, 6.43775, 5.34711, 7.1107, 6.44572, 6.93245, 6.58617, 6.7093, 6.83195, 8.51719, 7.14756, 5.99146, 6.10925, 6.927560000000001, 6.95655, 5.8999, 5.59842, 5.9269300000000005, 6.354369999999999, 7.313219999999999, 5.95324, 6.62007, 5.9454199999999995, 5.4161, 5.87493, 6.10925, 6.6783399999999995, 7.259119999999999, 7.1309, 6.2952699999999995, 6.739339999999999, 7.1309, 6.05209, 6.27099, 6.354369999999999, 6.29157, 6.551080000000001, 6.63857, 6.77422, 6.882439999999999, 5.45959, 6.05209, 5.8579300000000005, 6.2146099999999995, 6.2634, 7.21891, 6.12905, 5.97126, 6.23048, 6.02345, 6.96035, 6.3716099999999996, 6.378430000000001, 6.802389999999999, 5.70378, 6.62007, 5.72031, 6.01616, 7.91936, 6.2146099999999995, 6.354369999999999, 6.2634, 6.51471, 6.253830000000001, 6.745239999999999, 7.3651800000000005, 6.53669, 5.99146, 6.62007, 7.27031, 7.03878, 6.10925, 6.52942, 6.715380000000001, 5.8579300000000005, 6.14204, 6.88755, 6.62007, 5.99146, 7.37776, 6.3315, 6.44254, 6.51471, 6.17379, 7.00307, 7.78322, 6.62007, 5.7525699999999995, 6.05209, 6.38856, 6.8773, 6.50429, 5.74939, 6.65544, 6.72743, 7.0201899999999995, 8.02027, 5.99645, 6.40523, 6.14204, 6.386880000000001, 7.24423, 5.93225, 6.85646, 5.86647, 6.566669999999999, 5.78383, 6.6515699999999995, 6.126869999999999, 7.1309, 6.4552, 7.23778, 6.66568, 6.21261, 6.30992, 6.88755, 7.08171, 6.47697, 6.6592899999999995, 5.4161, 6.408530000000001, 6.84055, 6.4892, 6.95177, 6.23637, 6.43775, 5.76832, 6.28227, 6.52209, 6.1025599999999995, 5.99146, 6.1025599999999995, 5.99146, 6.59987, 5.8861, 5.99146, 6.6871100000000006, 7.17012, 6.995769999999999, 6.56526, 7.09008, 6.561030000000001, 6.907760000000001, 7.71869, 7.143619999999999, 6.354369999999999, 6.802389999999999, 5.958419999999999, 6.424869999999999, 6.745239999999999, 6.13773, 6.882439999999999, 6.68461, 6.2804, 7.185389999999999, 7.26543, 7.05099, 6.10925, 6.60123, 6.715380000000001, 6.6567300000000005, 6.907760000000001, 7.64969, 5.99146, 6.354369999999999, 5.4161, 6.47697, 6.10925, 6.86693, 6.90575, 5.65948, 7.17012, 6.82763, 6.26149, 6.2634, 7.04752, 6.90575, 7.803839999999999, 6.31355, 7.54961, 5.84354, 6.2653 ], "y0": " " }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(328, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(328, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "yes", "line": { "width": 0 }, "marker": { "color": "hsla(328, 50%, 50%,0.9)", "line": { "color": "hsla(328, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "star" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": "outliers", "scalegroup": "yes", "showlegend": false, "side": "negative", "span": [ 6.519084886815873, 6.574247208523381 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 5.99146, 5.61677, 6.4552, 6.95845, 7.06902, 6.907760000000001, 6.30079, 6.07535, 6.47697, 6.892639999999999, 6.907760000000001, 6.682110000000001, 6.39693, 7.00307, 6.9546399999999995, 6.993930000000001, 6.5439099999999994, 6.51471, 6.30992, 6.46925, 6.85646, 5.94803, 7.35947, 6.39693, 6.66696, 6.787839999999999, 7.00307, 6.17379, 6.16331, 6.43775, 6.813439999999999, 6.694560000000001, 6.29157, 6.67203, 6.88755, 6.95655, 6.95655, 6.48158, 6.663130000000001, 6.16121, 6.19236, 5.8999, 6.58617, 6.23832, 6.745239999999999, 5.70378, 6.05209, 6.90575, 6.206580000000001, 5.99146, 6.682110000000001, 7.408530000000001, 6.10925, 6.551080000000001, 6.25575, 6.16331, 5.73334, 6.90575, 6.551080000000001, 8.10168, 5.99645, 6.3952599999999995, 7.12448, 6.8977, 6.2146099999999995, 5.96615, 7.04752, 6.59578, 6.5467900000000006, 6.551080000000001, 6.36647, 5.52146, 6.05209, 6.62007, 6.39693, 7.03527, 5.43808, 6.907760000000001, 6.90575, 6.70073, 6.9256, 6.694560000000001, 6.97261, 7.29709, 6.7226300000000005, 6.7226300000000005, 6.62007, 5.68358, 6.93925, 6.90575, 6.90575, 6.42972, 6.61607, 5.5606800000000005, 6.2634, 6.715380000000001, 6.17379, 5.96615, 5.90808, 6.39693, 6.16331, 6.317159999999999, 5.0814, 6.98008, 6.912739999999999, 7.3670800000000005, 7.09008, 6.90575, 6.62007, 6.9431199999999995, 6.10925, 4.605169999999999, 6.90575, 6.658010000000001, 5.8579300000000005, 7.441319999999999, 6.47851, 6.36475, 6.56948, 6.86485, 7.064760000000001, 6.715380000000001, 6.90575, 6.272880000000001, 6.66568, 6.40688, 7.57558, 6.83518, 6.86693, 6.39693, 6.34739, 6.58617, 6.10925, 6.24611, 6.70073, 6.1203, 6.90575, 6.19644, 5.8579300000000005, 5.7525699999999995, 7.745, 6.318969999999999, 6.30628, 6.94986, 5.70378, 7.03615, 5.66988, 6.882439999999999, 6.48158, 6.43775, 6.403569999999999, 7.24423, 6.51175, 5.7365699999999995, 7.00307, 5.8999, 5.7365699999999995, 5.8260000000000005, 6.44572, 6.3716099999999996, 6.47697, 6.85646, 6.77422, 6.19236, 6.39693, 7.15305, 6.6871100000000006, 6.06379, 7.09008, 6.0282800000000005, 6.90575, 6.1070199999999994, 6.00141, 6.408530000000001, 6.42972, 5.51745, 6.7334, 6.07993, 6.90575, 6.66185, 6.47697, 7.23418, 6.984719999999999, 6.85646, 6.43775, 6.3952599999999995, 7.144410000000001, 5.70378, 6.53233, 6.7334, 6.20456, 6.72743, 7.084230000000001, 7.20786, 6.8977, 7.00307, 6.39693, 6.19848, 6.745239999999999, 6.2634, 7.1546199999999995, 6.18415, 5.82895, 6.10925, 6.20456, 7.313219999999999, 6.90575, 6.10925, 7.49109, 6.91672, 5.8141300000000005, 6.646389999999999, 6.84055, 7.24423, 6.23245, 7.1309, 6.30992, 7.24423, 6.18415, 6.43775, 5.34711, 7.1107, 6.44572, 6.93245, 6.58617, 6.7093, 6.83195, 8.51719, 7.14756, 5.99146, 6.10925, 6.927560000000001, 6.95655, 5.8999, 5.59842, 5.9269300000000005, 6.354369999999999, 7.313219999999999, 5.95324, 6.62007, 5.9454199999999995, 5.4161, 5.87493, 6.10925, 6.6783399999999995, 7.259119999999999, 7.1309, 6.2952699999999995, 6.739339999999999, 7.1309, 6.05209, 6.27099, 6.354369999999999, 6.29157, 6.551080000000001, 6.63857, 6.77422, 6.882439999999999, 5.45959, 6.05209, 5.8579300000000005, 6.2146099999999995, 6.2634, 7.21891, 6.12905, 5.97126, 6.23048, 6.02345, 6.96035, 6.3716099999999996, 6.378430000000001, 6.802389999999999, 5.70378, 6.62007, 5.72031, 6.01616, 7.91936, 6.2146099999999995, 6.354369999999999, 6.2634, 6.51471, 6.253830000000001, 6.745239999999999, 7.3651800000000005, 6.53669, 5.99146, 6.62007, 7.27031, 7.03878, 6.10925, 6.52942, 6.715380000000001, 5.8579300000000005, 6.14204, 6.88755, 6.62007, 5.99146, 7.37776, 6.3315, 6.44254, 6.51471, 6.17379, 7.00307, 7.78322, 6.62007, 5.7525699999999995, 6.05209, 6.38856, 6.8773, 6.50429, 5.74939, 6.65544, 6.72743, 7.0201899999999995, 8.02027, 5.99645, 6.40523, 6.14204, 6.386880000000001, 7.24423, 5.93225, 6.85646, 5.86647, 6.566669999999999, 5.78383, 6.6515699999999995, 6.126869999999999, 7.1309, 6.4552, 7.23778, 6.66568, 6.21261, 6.30992, 6.88755, 7.08171, 6.47697, 6.6592899999999995, 5.4161, 6.408530000000001, 6.84055, 6.4892, 6.95177, 6.23637, 6.43775, 5.76832, 6.28227, 6.52209, 6.1025599999999995, 5.99146, 6.1025599999999995, 5.99146, 6.59987, 5.8861, 5.99146, 6.6871100000000006, 7.17012, 6.995769999999999, 6.56526, 7.09008, 6.561030000000001, 6.907760000000001, 7.71869, 7.143619999999999, 6.354369999999999, 6.802389999999999, 5.958419999999999, 6.424869999999999, 6.745239999999999, 6.13773, 6.882439999999999, 6.68461, 6.2804, 7.185389999999999, 7.26543, 7.05099, 6.10925, 6.60123, 6.715380000000001, 6.6567300000000005, 6.907760000000001, 7.64969, 5.99146, 6.354369999999999, 5.4161, 6.47697, 6.10925, 6.86693, 6.90575, 5.65948, 7.17012, 6.82763, 6.26149, 6.2634, 7.04752, 6.90575, 7.803839999999999, 6.31355, 7.54961, 5.84354, 6.2653, 6.07535, 7.1309, 6.77992, 5.50126, 6.90575, 6.30992, 6.9622399999999995, 5.82008, 6.85646, 6.8254600000000005, 6.8426800000000005, 6.1070199999999994, 6.33328, 6.43775, 6.253830000000001, 6.829789999999999, 5.8999, 5.99146, 6.36303, 7.20786, 6.752269999999999, 6.95655, 6.633319999999999, 6.6567300000000005, 6.50279, 6.7334, 6.16331, 6.44572, 6.6783399999999995, 7.408530000000001, 6.17379, 6.6280399999999995, 6.63857, 6.17794, 6.551080000000001, 6.57228, 6.58617, 5.59842, 6.829789999999999, 6.23441, 6.551080000000001, 6.63726, 6.2634, 6.10925, 6.17379, 6.4488900000000005, 7.1309, 6.68461, 6.30992, 7.0775, 7.03615, 6.6592899999999995, 7.313219999999999, 6.86693, 6.47697, 7.46737, 6.30079, 7.450080000000001, 6.551080000000001, 6.39192, 6.739339999999999, 6.16331, 6.68461, 5.70378, 5.4161, 5.5797300000000005, 6.82655, 5.87212, 7.52833, 6.60665, 6.90575, 6.77992, 7.43838, 6.52209, 5.52146, 6.23441, 6.463030000000001, 7.54961, 7.323169999999999, 6.90575, 5.9269300000000005, 6.17379, 6.31355, 5.8141300000000005, 6.7511, 6.77422, 7.25488, 6.907760000000001, 5.42053, 6.19848, 6.52209, 6.04025, 6.2146099999999995, 6.64249, 6.53669, 6.47697, 7.21524, 6.8426800000000005, 6.86693, 6.53669, 6.95655, 6.44254, 6.8426800000000005, 6.768489999999999, 6.68461, 7.12287, 6.551080000000001, 6.745239999999999, 7.06048, 6.44254, 6.51471, 7.279319999999999, 6.3952599999999995, 7.07918, 6.46925, 5.940169999999999, 7.0884100000000005, 6.829789999999999, 7.31986, 6.77422, 7.26193, 6.57786, 6.3081, 6.39693, 6.48311, 6.318969999999999, 6.802389999999999, 6.68461, 6.29157, 6.62007, 6.83518, 7.84502, 6.68461, 6.14633, 7.54697, 6.60665, 6.29895, 7.2724, 6.36303, 6.551080000000001, 6.58064, 5.70378, 5.93225, 6.34564, 6.10032, 6.68461, 5.78383, 6.84055, 6.58893, 5.2983199999999995, 6.60665, 6.18415, 6.66441, 6.551080000000001, 5.82008, 6.10925, 6.51175, 6.5439099999999994, 7.522939999999999, 6.551080000000001, 6.907760000000001, 7.04752, 6.44572, 6.41346, 6.52209, 6.59715, 6.2146099999999995, 6.97167, 6.10925, 6.30992, 6.04025, 6.73102, 7.20786, 7.173960000000001, 6.206580000000001, 6.56526, 6.90575, 6.90575, 6.47389, 6.697030000000001, 6.59987, 7.46737, 6.58617, 6.95655, 6.29157, 6.95177, 6.50129, 6.2952699999999995, 6.15698, 6.15273, 6.68461, 5.78383, 6.54535, 7.86327, 6.354369999999999, 7.46737, 6.424869999999999, 6.39693, 6.40192, 6.55393, 6.593039999999999, 6.39693, 6.57786, 6.68461, 6.42972, 6.85435, 6.58893, 6.16331, 6.2441699999999996, 6.85646, 6.73221, 5.72031, 5.97635, 6.13123, 6.37673, 6.77194, 6.99485, 6.58617, 5.8999, 6.2146099999999995, 6.6567300000000005, 5.8861, 6.35611, 6.17587, 6.927560000000001, 7.09008, 7.1309, 6.907760000000001, 7.6009, 6.43775, 6.813439999999999, 7.196689999999999, 6.47697, 6.753439999999999, 6.77422, 6.745239999999999, 6.06146, 7.05359, 6.49224, 6.77422, 7.93737, 6.2634, 6.99485, 6.45047, 6.94119, 7.21891, 7.57558, 6.10925, 6.556780000000001, 6.2146099999999995, 7.279319999999999, 7.925160000000001, 6.1136800000000004, 6.62007, 6.70073, 5.6801699999999995, 6.95655, 6.19236, 6.23048, 6.3613, 6.697030000000001, 6.08677, 6.6280399999999995, 6.907760000000001, 6.05209, 5.70378, 6.12249, 6.14847, 6.7226300000000005, 8.047189999999999, 6.2146099999999995, 6.17794, 6.68461, 7.495539999999999, 6.62007, 6.45205, 6.32794, 5.4161, 6.38856, 6.9256, 6.57786, 6.53669, 6.39693, 6.33328, 7.313219999999999, 6.95655, 7.06561, 7.09008, 6.43775, 6.62007, 6.9613, 6.65286, 7.24423, 6.42162, 7.0422899999999995, 7.034389999999999, 5.96615, 6.818919999999999, 6.53669, 6.507280000000001, 6.765039999999999, 6.2691, 6.50129, 6.2634, 6.3403599999999996, 6.692080000000001, 5.9839400000000005, 6.013719999999999, 6.7334, 6.56526, 6.47697, 6.69084, 6.07304, 6.2146099999999995, 6.40523, 6.22654, 6.43775, 6.9256, 6.43615, 6.10925, 7.1309, 6.33683, 5.97889, 6.62007, 6.95177, 6.34388, 6.8977, 5.70378, 6.1070199999999994, 6.551080000000001, 6.907760000000001, 6.697030000000001, 6.814539999999999, 6.23637, 7.24423, 6.802389999999999, 5.8999, 6.2441699999999996, 6.47697, 5.4161, 6.385190000000001, 6.79794, 7.0483899999999995, 5.5797300000000005, 6.09131, 7.106610000000001, 6.4677, 7.183110000000001, 6.56948, 7.05272, 6.10925, 6.49979, 6.58617, 6.551080000000001, 6.0330900000000005, 7.1507, 7.03878, 5.8579300000000005, 7.37588, 6.84162, 6.93342, 6.608, 5.82305, 6.056780000000001, 6.697030000000001, 6.5395900000000005, 6.47697, 6.907760000000001, 6.551080000000001, 6.51471, 7.0422899999999995, 7.1309, 6.44572, 5.39363, 7.401839999999999, 6.907760000000001, 6.90575, 6.09582, 6.07535, 5.8999, 6.79122, 6.2146099999999995, 6.2804, 6.563860000000001, 6.99485, 6.84375, 6.56244, 8.0229, 6.4892, 6.08677, 5.68698, 6.753439999999999, 6.52209, 6.39693, 6.81014, 6.802389999999999, 6.82437, 6.11147, 6.2634, 7.05618, 7.2998, 5.86079, 6.937310000000001, 6.9256, 6.90575, 6.10925, 7.09008, 6.3952599999999995, 6.5582, 6.98008, 5.70378, 6.62007, 6.95655, 6.57786, 5.8579300000000005, 6.69084, 5.7462, 6.16752, 7.04752, 6.59715, 6.45047, 6.62007, 6.6592899999999995, 7.04752, 6.58617, 6.90575, 7.57558, 6.2146099999999995, 6.899719999999999, 6.51471, 5.7462, 7.084230000000001, 7.00307, 6.77422, 6.43294, 6.88857, 7.226210000000001, 5.76832, 6.73102, 6.05912, 6.507280000000001, 6.47697, 6.206580000000001, 6.90575, 6.2146099999999995, 6.907760000000001, 6.715380000000001, 6.96885, 6.57368, 6.39859, 6.2146099999999995, 6.8426800000000005, 5.5797300000000005, 6.39693, 7.393260000000001, 6.95177, 6.9613, 6.4892, 6.86171, 5.9269300000000005, 6.50129, 6.8773, 6.354369999999999, 6.575080000000001, 6.62007, 6.2146099999999995, 6.551080000000001, 6.2146099999999995, 6.139880000000001, 5.43808, 6.5467900000000006, 6.17379, 6.60665, 6.51323, 6.30992, 6.09807, 6.8977, 6.35784, 6.57925, 6.36303, 5.82895, 6.59715, 6.551080000000001, 5.50126, 6.72743, 6.583410000000001, 6.563860000000001, 6.44731, 5.99146, 7.24423, 6.86485, 6.6107, 6.58617, 5.70378, 5.67675, 6.813439999999999, 5.7589, 6.74759, 7.09008, 7.84385, 6.802389999999999, 6.78672, 6.90575, 6.86693, 6.259580000000001, 6.41999, 7.43838, 7.0255399999999995, 6.802389999999999, 6.1944099999999995, 6.745239999999999, 6.76388, 6.70073, 7.07834, 6.701960000000001, 6.8426800000000005, 6.0282800000000005, 6.69827, 6.57786, 6.30992, 7.61874, 6.44095, 6.99485, 6.79122, 7.279319999999999, 6.813439999999999, 6.47389, 6.802389999999999, 6.55962, 6.8977, 6.05912, 7.1309, 6.85646, 6.25767, 6.33328, 5.65249, 6.62007, 7.195189999999999, 6.3315, 6.90575, 6.90575, 6.07535, 6.30992, 6.96885, 6.18415, 6.4677, 6.2146099999999995, 6.5903, 7.136480000000001, 5.9839400000000005, 6.2146099999999995, 6.51471, 5.61677, 6.10925, 6.90575, 6.317159999999999, 6.35611, 6.23048, 6.55962, 6.802389999999999, 6.802389999999999, 7.43838, 6.35957, 6.5820300000000005, 7.17012, 5.6733199999999995, 7.17702, 6.44572, 6.551080000000001, 6.71174, 7.37776, 6.67203, 6.55393, 6.593039999999999, 6.30992, 6.556780000000001, 6.95273, 6.745239999999999, 6.43133, 7.00307, 6.2146099999999995, 5.66988, 6.53379, 6.84801, 5.99146, 5.8999, 5.8861, 6.719010000000001, 6.720219999999999, 7.216710000000001, 6.65286, 5.78383, 6.551080000000001, 5.66988, 7.0255399999999995, 7.04752, 6.3935900000000006, 6.354369999999999, 6.18208, 7.05876, 6.694560000000001, 6.59578, 7.027310000000001, 6.04025, 6.2146099999999995, 6.507280000000001, 6.633319999999999, 7.195189999999999, 5.76205, 6.49527, 7.54961, 7.09008, 6.10925, 6.49224, 6.80461, 5.96615, 8.26873, 6.17794, 6.43775, 5.95324, 5.70378, 7.495539999999999, 6.84588, 6.802389999999999, 7.17012, 6.551080000000001, 5.82305, 7.17012, 6.2441699999999996, 5.64191, 5.59842, 6.9594, 6.21261, 6.58617, 6.74406, 6.61338, 7.18007, 5.61313, 6.66568, 6.62672, 5.59842, 6.23441, 6.49224, 6.56526, 6.056780000000001, 5.8944, 5.45959, 6.06843, 6.1203, 6.06843, 6.7569300000000005, 6.938280000000001, 6.41346, 5.53339, 6.51471, 5.76832, 7.1309, 6.65286, 5.5797300000000005, 6.90575, 6.39693, 6.52209, 6.770789999999999, 7.04752, 5.79606, 6.57925, 5.52146, 6.752269999999999, 6.90575, 7.014810000000001, 6.85646, 6.745239999999999, 6.9256, 6.58617, 5.96615, 6.90575, 6.19644, 6.56526, 5.8141300000000005, 6.769639999999999, 6.08677, 6.48158, 6.57228, 6.35957, 5.8579300000000005, 6.57925, 6.14633, 6.39693, 6.08677, 7.64969, 8.13153, 6.907760000000001, 6.97261, 6.43775, 6.3243599999999995, 6.993930000000001, 6.712960000000001, 6.16331, 6.07993, 7.1309, 7.495539999999999, 6.768489999999999, 6.461469999999999, 6.28413, 6.126869999999999, 6.39693, 6.47697, 6.47697, 6.62936, 6.551080000000001, 6.28227, 7.64969, 6.9575, 6.5903, 6.43615, 7.00307, 6.39693, 6.83303, 6.51767, 6.14204, 7.91936, 6.9256, 6.33328, 6.65286, 6.57368, 6.57786, 7.37776, 6.6592899999999995, 6.4599, 6.51471, 5.73334, 6.975410000000001, 7.400010000000001, 5.9269300000000005, 6.61338, 7.1082399999999994, 6.58617, 5.8861, 6.42162, 6.13123, 6.79122, 6.720219999999999, 6.643789999999999, 6.802389999999999, 6.703189999999999, 6.39693, 6.06611, 6.57786, 6.28972, 6.48768, 6.41182, 6.937310000000001, 6.3315, 6.01127, 6.802389999999999, 6.2480400000000005, 7.35819, 6.907760000000001, 6.47697, 6.354369999999999, 6.68461, 6.95655, 6.715380000000001, 6.49224, 6.49979, 5.8861, 7.393260000000001, 6.32794, 6.28786, 5.9839400000000005, 6.62007, 6.2146099999999995, 6.983789999999999, 5.93225, 6.17379, 5.273, 6.46925, 7.1107, 6.995769999999999, 6.594410000000001, 6.62007, 6.937310000000001, 6.47697, 6.2146099999999995, 6.90575, 6.10925, 6.90073, 6.86693, 6.36303, 6.40523, 6.2146099999999995, 5.99146, 6.9226399999999995, 6.30992, 5.19296, 5.72359, 7.1309, 5.940169999999999, 6.9147300000000005, 6.381819999999999, 5.78996, 6.4708, 6.41017, 6.85646, 6.30992, 6.39693, 6.26149, 6.2205900000000005, 6.3081 ], "y0": " " } ], "layout": { "legend": { "tracegroupgap": 0, "x": 1.1, "xanchor": "right", "y": 1.1 }, "margin": { "b": 50, "l": 80, "r": 10, "t": 10 }, "paper_bgcolor": "#eeeeff", "plot_bgcolor": "#ffffff", "showlegend": true, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "barpolar" } ], "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" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "colorscale": { "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" ] ], "sequential": [ [ 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, "#f0f921" ] ], "sequentialminus": [ [ 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, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "text": "South ~ Wage", "x": 0.5 }, "violingap": 0, "violingroupgap": 0, "violinmode": "overlay", "xaxis": { "showgrid": false, "showline": true, "showticklabels": true, "title": { "text": "Wage (log)" }, "visible": true, "zeroline": true }, "yaxis": { "range": [ -0.51, 0.51 ], "showgrid": true, "showline": true, "showticklabels": true, "side": "left", "title": { "text": "Resides in the south?" }, "visible": true, "zeroline": true } } }, "text/html": [ "
\n", " \n", " \n", "
\n", " \n", "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "#Superimposed plots for a single Xcolumn\n", "(traces1,layout)=cmplot(train, xcol=\"south\", ycol=\"lwage\", xsuperimposed=True, pointsoverdens=True,\n", " ycolorgroups=False,altsidesflip=False, colorshift=2, colorrange=4, pointshapes=[\"star\",\"pentagon\"],\n", " pointsmaxdisplayed=400)\n", "layout[\"legend_tracegroupgap\"]=0\n", "layout[\"margin_b\"]=50\n", "layout[\"title_text\"]=\"South ~ Wage\"\n", "layout[\"yaxis_title\"]=\"Resides in the south?\"\n", "layout[\"xaxis_title\"]=\"Wage (log)\"\n", "layout[\"yaxis_range\"]=[-0.51,0.51]\n", "go.Figure(traces1,layout)" ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "fillcolor": "hsla(82, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(82, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "female&no", "line": { "color": "hsla(82, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(82, 70%, 70%,1)", "line": { "color": "hsla(82, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "hexagon" }, "meanline": { "color": "hsla(82, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage female&no", "orientation": "h", "pointpos": 0.6, "points": "all", "scalegroup": "female&no", "scalemode": "count", "showlegend": true, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.39693, 6.907760000000001, 6.614730000000001, 6.30992, 6.2146099999999995, 6.65286, 6.30992, 6.48158, 6.907760000000001, 5.73334, 6.3952599999999995, 6.43775, 6.907760000000001, 6.77422, 6.47697, 6.2146099999999995, 6.10925, 6.6783399999999995, 7.1309, 6.39693, 6.77422, 5.96615, 5.90808, 6.39693, 7.09008, 6.7901, 6.65286, 6.86485, 5.99146, 6.85646, 5.4161, 6.30079, 5.93489, 7.04752, 6.19644, 6.768489999999999, 6.33328, 6.48311, 7.00307, 5.8999, 6.62007, 6.36475, 6.65286, 6.20456, 6.1070199999999994, 6.715380000000001, 6.85646, 6.85646, 6.32972, 6.802389999999999, 6.95655, 6.2634, 6.3716099999999996, 6.93537, 7.1309, 6.57925, 6.30992, 6.34388, 7.279319999999999, 6.33683, 6.5582, 6.354369999999999, 6.28972, 6.2952699999999995, 6.551080000000001, 5.82305, 6.02345, 5.883319999999999, 6.907760000000001, 6.58617, 6.901739999999999, 6.17379, 6.44254, 6.745239999999999, 6.51471, 6.17379, 6.33328, 6.386880000000001, 5.86647, 6.30992, 6.10925, 6.785589999999999, 6.47697, 7.04752, 6.04025, 6.39693, 6.43775, 6.2146099999999995, 6.253830000000001, 6.1025599999999995, 6.96885, 6.885510000000001, 6.1717, 6.715380000000001, 5.8861, 6.10925, 6.65286, 6.39693, 5.940169999999999, 6.26149, 6.551080000000001, 6.29157, 6.77422, 6.4708, 6.15698, 5.99146, 6.33328, 6.9707300000000005, 6.6567300000000005, 6.745239999999999, 6.93049, 6.849069999999999, 6.1070199999999994, 6.712960000000001, 5.97635, 6.86901, 6.39859, 6.6592899999999995, 6.907760000000001, 6.47697, 6.551080000000001, 6.68461, 6.88755, 6.23441, 6.463030000000001, 6.65286, 6.39693, 6.3952599999999995, 6.06379, 6.52209, 7.20786, 6.2205900000000005, 6.0822199999999995, 7.04752, 6.3952599999999995, 6.70073, 6.07993, 6.46925, 6.22654, 6.58755, 6.8254600000000005, 6.62007, 6.62007, 6.29895, 6.745239999999999, 6.49072, 6.35957, 6.04025, 6.39693, 6.77422, 6.30992, 6.8426800000000005, 6.30992, 6.602589999999999, 6.424869999999999, 6.2634, 6.07993, 6.551080000000001, 5.8693, 6.43775, 6.73459, 6.49224, 6.29157, 6.2146099999999995, 6.682110000000001, 6.19236, 6.12249, 6.14847, 5.86079, 5.96615, 6.52209, 5.96615, 5.9135, 6.224559999999999, 5.95324, 6.43615, 6.33683, 6.2146099999999995, 6.34388, 7.18917, 6.1070199999999994, 6.30992, 5.52146, 6.748760000000001, 6.633319999999999, 6.47697, 6.0330900000000005, 5.8861, 7.0422899999999995, 5.43808, 5.8999, 6.2146099999999995, 6.2804, 6.39693, 5.89715, 6.06611, 6.0845, 5.48064, 6.27099, 6.58617, 6.73102, 6.206580000000001, 6.39859, 6.551080000000001, 6.43775, 6.02345, 5.9269300000000005, 6.72743, 6.2634, 6.646389999999999, 6.07993, 6.47697, 6.583410000000001, 6.44731, 6.2146099999999995, 6.73815, 6.802389999999999, 6.77422, 6.70073, 6.593039999999999, 6.85646, 6.745239999999999, 6.85646, 6.39693, 6.317159999999999, 5.8579300000000005, 5.99894, 6.745239999999999, 6.77765, 6.30992, 7.216710000000001, 6.65286, 6.88857, 5.68698, 6.1203, 6.2146099999999995, 6.2146099999999995, 7.04752, 6.30992, 7.17012, 6.551080000000001, 6.47697, 6.95655, 6.62672, 6.23441, 6.056780000000001, 5.8944, 5.84932, 5.76832, 5.5797300000000005, 5.79606, 6.712960000000001, 6.3716099999999996, 6.62007, 6.30992, 6.47697, 6.551080000000001, 6.745239999999999, 5.96358, 6.39693, 6.11147, 5.9269300000000005, 6.68461, 6.643789999999999, 6.39693, 6.06611, 6.57786, 6.3315, 6.86485, 6.04025, 6.7901, 6.253830000000001, 6.57228, 6.47697, 6.86693, 6.36303, 6.39693, 6.7093, 6.62007, 6.41017, 6.556780000000001, 6.30992, 6.39693, 6.26149, 6.65544 ], "y0": "female" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(82, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(82, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "female&no", "line": { "width": 0 }, "marker": { "color": "hsla(82, 50%, 50%,0.9)", "line": { "color": "hsla(82, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "hexagon" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": false, "scalegroup": "female&no", "showlegend": false, "side": "positive", "span": [ 6.383803417781399, 6.465624555811114 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 6.39693, 6.907760000000001, 6.614730000000001, 6.30992, 6.2146099999999995, 6.65286, 6.30992, 6.48158, 6.907760000000001, 5.73334, 6.3952599999999995, 6.43775, 6.907760000000001, 6.77422, 6.47697, 6.2146099999999995, 6.10925, 6.6783399999999995, 7.1309, 6.39693, 6.77422, 5.96615, 5.90808, 6.39693, 7.09008, 6.7901, 6.65286, 6.86485, 5.99146, 6.85646, 5.4161, 6.30079, 5.93489, 7.04752, 6.19644, 6.768489999999999, 6.33328, 6.48311, 7.00307, 5.8999, 6.62007, 6.36475, 6.65286, 6.20456, 6.1070199999999994, 6.715380000000001, 6.85646, 6.85646, 6.32972, 6.802389999999999, 6.95655, 6.2634, 6.3716099999999996, 6.93537, 7.1309, 6.57925, 6.30992, 6.34388, 7.279319999999999, 6.33683, 6.5582, 6.354369999999999, 6.28972, 6.2952699999999995, 6.551080000000001, 5.82305, 6.02345, 5.883319999999999, 6.907760000000001, 6.58617, 6.901739999999999, 6.17379, 6.44254, 6.745239999999999, 6.51471, 6.17379, 6.33328, 6.386880000000001, 5.86647, 6.30992, 6.10925, 6.785589999999999, 6.47697, 7.04752, 6.04025, 6.39693, 6.43775, 6.2146099999999995, 6.253830000000001, 6.1025599999999995, 6.96885, 6.885510000000001, 6.1717, 6.715380000000001, 5.8861, 6.10925, 6.65286, 6.39693, 5.940169999999999, 6.26149, 6.551080000000001, 6.29157, 6.77422, 6.4708, 6.15698, 5.99146, 6.33328, 6.9707300000000005, 6.6567300000000005, 6.745239999999999, 6.93049, 6.849069999999999, 6.1070199999999994, 6.712960000000001, 5.97635, 6.86901, 6.39859, 6.6592899999999995, 6.907760000000001, 6.47697, 6.551080000000001, 6.68461, 6.88755, 6.23441, 6.463030000000001, 6.65286, 6.39693, 6.3952599999999995, 6.06379, 6.52209, 7.20786, 6.2205900000000005, 6.0822199999999995, 7.04752, 6.3952599999999995, 6.70073, 6.07993, 6.46925, 6.22654, 6.58755, 6.8254600000000005, 6.62007, 6.62007, 6.29895, 6.745239999999999, 6.49072, 6.35957, 6.04025, 6.39693, 6.77422, 6.30992, 6.8426800000000005, 6.30992, 6.602589999999999, 6.424869999999999, 6.2634, 6.07993, 6.551080000000001, 5.8693, 6.43775, 6.73459, 6.49224, 6.29157, 6.2146099999999995, 6.682110000000001, 6.19236, 6.12249, 6.14847, 5.86079, 5.96615, 6.52209, 5.96615, 5.9135, 6.224559999999999, 5.95324, 6.43615, 6.33683, 6.2146099999999995, 6.34388, 7.18917, 6.1070199999999994, 6.30992, 5.52146, 6.748760000000001, 6.633319999999999, 6.47697, 6.0330900000000005, 5.8861, 7.0422899999999995, 5.43808, 5.8999, 6.2146099999999995, 6.2804, 6.39693, 5.89715, 6.06611, 6.0845, 5.48064, 6.27099, 6.58617, 6.73102, 6.206580000000001, 6.39859, 6.551080000000001, 6.43775, 6.02345, 5.9269300000000005, 6.72743, 6.2634, 6.646389999999999, 6.07993, 6.47697, 6.583410000000001, 6.44731, 6.2146099999999995, 6.73815, 6.802389999999999, 6.77422, 6.70073, 6.593039999999999, 6.85646, 6.745239999999999, 6.85646, 6.39693, 6.317159999999999, 5.8579300000000005, 5.99894, 6.745239999999999, 6.77765, 6.30992, 7.216710000000001, 6.65286, 6.88857, 5.68698, 6.1203, 6.2146099999999995, 6.2146099999999995, 7.04752, 6.30992, 7.17012, 6.551080000000001, 6.47697, 6.95655, 6.62672, 6.23441, 6.056780000000001, 5.8944, 5.84932, 5.76832, 5.5797300000000005, 5.79606, 6.712960000000001, 6.3716099999999996, 6.62007, 6.30992, 6.47697, 6.551080000000001, 6.745239999999999, 5.96358, 6.39693, 6.11147, 5.9269300000000005, 6.68461, 6.643789999999999, 6.39693, 6.06611, 6.57786, 6.3315, 6.86485, 6.04025, 6.7901, 6.253830000000001, 6.57228, 6.47697, 6.86693, 6.36303, 6.39693, 6.7093, 6.62007, 6.41017, 6.556780000000001, 6.30992, 6.39693, 6.26149, 6.65544 ], "y0": "female" }, { "fillcolor": "hsla(164, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(164, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "female&yes", "line": { "color": "hsla(164, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(164, 70%, 70%,1)", "line": { "color": "hsla(164, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "hexagon" }, "meanline": { "color": "hsla(164, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage female&yes", "orientation": "h", "pointpos": -0.6, "points": "all", "scalegroup": "female&yes", "scalemode": "count", "showlegend": true, "side": "negative", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.55536, 6.50279, 6.62007, 6.17379, 5.8999, 6.05209, 5.463830000000001, 5.43808, 5.68358, 5.0814, 4.605169999999999, 6.92461, 5.76832, 6.16542, 5.7525699999999995, 6.318969999999999, 5.9454199999999995, 6.4677, 6.2480400000000005, 5.7525699999999995, 6.025869999999999, 6.31536, 5.95324, 6.05209, 5.9269300000000005, 5.51745, 6.16331, 6.10925, 6.56244, 6.23245, 5.34711, 6.58064, 5.95324, 5.9454199999999995, 5.64545, 5.7525699999999995, 6.05209, 6.621410000000001, 6.12905, 5.59842, 6.10925, 5.8579300000000005, 5.81711, 6.30079, 6.7901, 6.07993, 6.11589, 5.74939, 7.0255399999999995, 5.8141300000000005, 6.01616, 6.278519999999999, 6.36819, 5.940169999999999, 6.35957, 6.1025599999999995, 6.15698, 5.958419999999999, 5.98645, 5.8579300000000005, 5.65948, 5.50126, 5.82008, 5.8999, 6.29157, 6.0282800000000005, 5.42935, 6.45834, 5.8141300000000005, 5.8141300000000005, 5.42053, 5.8861, 5.8861, 6.05209, 5.52146, 5.52146, 6.06379, 6.39693, 5.99146, 5.8579300000000005, 5.93225, 5.78383, 5.82008, 6.59715, 5.01064, 5.5606800000000005, 6.259580000000001, 5.97635, 6.04025, 6.17587, 5.70378, 6.63068, 5.68698, 5.88053, 6.10925, 6.38856, 5.99894, 5.39363, 6.6896, 6.14419, 6.692080000000001, 6.013719999999999, 6.07304, 6.2146099999999995, 6.802389999999999, 5.8579300000000005, 5.97889, 6.36819, 6.23637, 6.47697, 6.36303, 6.04025, 5.7525699999999995, 5.82305, 5.39363, 5.95324, 6.2146099999999995, 6.3952599999999995, 6.2146099999999995, 6.035480000000001, 5.5797300000000005, 5.4161, 5.50126, 5.82895, 6.1944099999999995, 6.0282800000000005, 5.01064, 6.79347, 5.65249, 6.35611, 6.18415, 6.05209, 5.84354, 6.46925, 5.8999, 5.8861, 6.2146099999999995, 5.76205, 5.7365699999999995, 5.7365699999999995, 5.47227, 5.7365699999999995, 5.64191, 6.21261, 5.61313, 5.7462, 6.06843, 5.53339, 6.49375, 5.7365699999999995, 6.23832, 6.19644, 6.19236, 6.6253899999999994, 5.7525699999999995, 5.8579300000000005, 6.14633, 6.16331, 6.62007, 6.18002, 6.14204, 5.5797300000000005, 5.66988, 5.73334, 5.90808, 6.2186, 5.8861, 5.66988, 5.43808, 5.8141300000000005, 6.56244, 6.05209, 5.93225, 5.273, 6.2186, 6.1717, 6.05209, 5.8579300000000005, 5.99146, 5.19296, 5.95584, 5.8141300000000005, 5.94803, 6.3081 ], "y0": "female" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(164, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(164, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "female&yes", "line": { "width": 0 }, "marker": { "color": "hsla(164, 50%, 50%,0.9)", "line": { "color": "hsla(164, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "hexagon" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": false, "scalegroup": "female&yes", "showlegend": false, "side": "negative", "span": [ 5.934449789646607, 6.045728688134997 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 6.55536, 6.50279, 6.62007, 6.17379, 5.8999, 6.05209, 5.463830000000001, 5.43808, 5.68358, 5.0814, 4.605169999999999, 6.92461, 5.76832, 6.16542, 5.7525699999999995, 6.318969999999999, 5.9454199999999995, 6.4677, 6.2480400000000005, 5.7525699999999995, 6.025869999999999, 6.31536, 5.95324, 6.05209, 5.9269300000000005, 5.51745, 6.16331, 6.10925, 6.56244, 6.23245, 5.34711, 6.58064, 5.95324, 5.9454199999999995, 5.64545, 5.7525699999999995, 6.05209, 6.621410000000001, 6.12905, 5.59842, 6.10925, 5.8579300000000005, 5.81711, 6.30079, 6.7901, 6.07993, 6.11589, 5.74939, 7.0255399999999995, 5.8141300000000005, 6.01616, 6.278519999999999, 6.36819, 5.940169999999999, 6.35957, 6.1025599999999995, 6.15698, 5.958419999999999, 5.98645, 5.8579300000000005, 5.65948, 5.50126, 5.82008, 5.8999, 6.29157, 6.0282800000000005, 5.42935, 6.45834, 5.8141300000000005, 5.8141300000000005, 5.42053, 5.8861, 5.8861, 6.05209, 5.52146, 5.52146, 6.06379, 6.39693, 5.99146, 5.8579300000000005, 5.93225, 5.78383, 5.82008, 6.59715, 5.01064, 5.5606800000000005, 6.259580000000001, 5.97635, 6.04025, 6.17587, 5.70378, 6.63068, 5.68698, 5.88053, 6.10925, 6.38856, 5.99894, 5.39363, 6.6896, 6.14419, 6.692080000000001, 6.013719999999999, 6.07304, 6.2146099999999995, 6.802389999999999, 5.8579300000000005, 5.97889, 6.36819, 6.23637, 6.47697, 6.36303, 6.04025, 5.7525699999999995, 5.82305, 5.39363, 5.95324, 6.2146099999999995, 6.3952599999999995, 6.2146099999999995, 6.035480000000001, 5.5797300000000005, 5.4161, 5.50126, 5.82895, 6.1944099999999995, 6.0282800000000005, 5.01064, 6.79347, 5.65249, 6.35611, 6.18415, 6.05209, 5.84354, 6.46925, 5.8999, 5.8861, 6.2146099999999995, 5.76205, 5.7365699999999995, 5.7365699999999995, 5.47227, 5.7365699999999995, 5.64191, 6.21261, 5.61313, 5.7462, 6.06843, 5.53339, 6.49375, 5.7365699999999995, 6.23832, 6.19644, 6.19236, 6.6253899999999994, 5.7525699999999995, 5.8579300000000005, 6.14633, 6.16331, 6.62007, 6.18002, 6.14204, 5.5797300000000005, 5.66988, 5.73334, 5.90808, 6.2186, 5.8861, 5.66988, 5.43808, 5.8141300000000005, 6.56244, 6.05209, 5.93225, 5.273, 6.2186, 6.1717, 6.05209, 5.8579300000000005, 5.99146, 5.19296, 5.95584, 5.8141300000000005, 5.94803, 6.3081 ], "y0": "female" }, { "fillcolor": "hsla(246, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(246, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "male&no", "line": { "color": "hsla(246, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(246, 70%, 70%,1)", "line": { "color": "hsla(246, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "hexagon" }, "meanline": { "color": "hsla(246, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage male&no", "orientation": "h", "pointpos": 0.6, "points": false, "scalegroup": "male&no", "scalemode": "count", "showlegend": true, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 7.67322, 7.32975, 7.91936, 7.71869, 6.882439999999999, 6.907760000000001, 6.93342, 7.557989999999999, 6.57925, 7.313219999999999, 6.47697, 7.1309, 6.907760000000001, 6.682110000000001, 6.39693, 7.00307, 5.78383, 7.11477, 6.993930000000001, 6.593039999999999, 6.51471, 6.30992, 7.554860000000001, 6.90675, 6.85646, 6.90575, 6.90575, 7.35947, 6.39693, 7.313219999999999, 6.787839999999999, 6.90575, 6.802389999999999, 7.00307, 7.282760000000001, 6.23048, 6.67203, 7.56008, 6.30992, 7.47307, 6.90575, 7.46737, 6.829789999999999, 6.60665, 6.74052, 6.745239999999999, 7.6009, 6.62007, 6.551080000000001, 7.60589, 6.53669, 6.5582, 6.19236, 7.37776, 6.23832, 6.27476, 6.48311, 6.745239999999999, 6.663130000000001, 7.20786, 6.79122, 6.62007, 6.42162, 6.28227, 6.745239999999999, 7.408530000000001, 6.317159999999999, 6.551080000000001, 6.68461, 7.1107, 6.90575, 6.84588, 8.10168, 7.31255, 5.99645, 6.90575, 6.802389999999999, 6.907760000000001, 6.90575, 6.6592899999999995, 8.047189999999999, 6.62407, 6.17379, 7.78322, 7.12448, 6.8977, 7.82405, 7.75148, 7.346010000000001, 7.1309, 6.84055, 7.041410000000001, 7.346010000000001, 6.966019999999999, 6.90575, 7.17012, 7.82405, 6.88755, 6.39693, 6.65286, 6.90575, 7.00125, 7.064760000000001, 7.00307, 6.745239999999999, 6.54535, 6.62007, 6.10925, 6.39693, 8.16052, 6.745239999999999, 7.1309, 6.77422, 6.87213, 6.6567300000000005, 6.80017, 7.226210000000001, 6.70073, 7.495539999999999, 8.05516, 6.9256, 6.694560000000001, 6.90575, 7.29709, 7.313219999999999, 7.173189999999999, 6.62007, 6.7226300000000005, 6.85118, 6.49224, 7.313219999999999, 7.158510000000001, 6.34564, 6.7093, 7.00307, 6.90575, 6.53669, 7.313219999999999, 6.90575, 6.62007, 6.4552, 6.77422, 6.62007, 6.96508, 5.5606800000000005, 6.715380000000001, 7.408530000000001, 7.04752, 6.98008, 7.3670800000000005, 6.68461, 6.90575, 6.90575, 6.45362, 6.47697, 6.67203, 7.34278, 6.802389999999999, 6.90575, 6.658010000000001, 6.9256, 6.90575, 6.6592899999999995, 6.47851, 6.745239999999999, 7.20786, 7.475910000000001, 6.62007, 6.4892, 7.43838, 7.064760000000001, 7.26193, 6.23245, 6.30445, 7.313219999999999, 6.85646, 7.26193, 6.907760000000001, 7.481560000000001, 7.04752, 6.73815, 5.8579300000000005, 7.57558, 6.90575, 6.86693, 6.39693, 7.1507, 6.58617, 7.282760000000001, 6.90575, 6.10925, 7.1309, 6.95655, 6.65286, 6.24611, 7.1309, 7.1333, 7.24423, 6.04025, 6.86901, 6.802389999999999, 6.70073, 7.313219999999999, 6.95655, 7.50108, 6.39693, 7.07918, 6.7369699999999995, 7.745, 6.39693, 6.8773, 6.52942, 6.94986, 6.703189999999999, 7.37776, 6.882439999999999, 7.04752, 6.49224, 7.1309, 7.663880000000001, 6.907760000000001, 6.43775, 8.05516, 6.807930000000001, 6.907760000000001, 7.24423, 6.05209, 6.33683, 6.90575, 6.354369999999999, 6.62007, 6.68461, 6.85646, 6.44572, 6.95655, 6.8977, 6.90575, 6.84055, 7.676010000000001, 7.20786, 6.85646, 6.77422, 6.54965, 6.697030000000001, 6.68461, 6.8844899999999996, 6.62007, 6.48004, 6.5903, 7.15305, 6.19236, 6.43615, 7.79028, 6.6174, 6.907760000000001, 6.90575, 6.39693, 6.79122, 6.9147300000000005, 6.408530000000001, 7.522939999999999, 6.907760000000001, 6.47697, 6.65286, 6.47697, 7.20786, 6.90575, 6.984719999999999, 6.05209, 6.49224, 6.39693, 6.90575, 6.91374, 7.6009, 6.57786, 6.6783399999999995, 6.41182, 6.53233, 6.907760000000001, 7.236339999999999, 6.72743, 6.551080000000001, 7.20786, 6.8977, 6.59167, 6.984719999999999, 6.646389999999999, 7.459910000000001, 7.0255399999999995, 7.1309, 6.745239999999999, 6.64249, 7.49332, 7.495539999999999, 6.10925, 6.58617, 6.20456, 7.313219999999999, 6.90575, 6.10925, 7.48717, 7.49109, 6.90575, 6.51323, 6.715380000000001, 7.37212, 7.0184, 7.24423, 7.09008, 7.4553, 7.24423, 6.90575, 6.90575, 7.24423, 7.75577, 6.43775, 6.90575, 6.42162, 6.93245, 6.551080000000001, 6.96508, 6.44572, 6.28972, 7.1082399999999994, 6.49072, 7.251339999999999, 6.807930000000001, 7.14756, 7.33368, 6.77422, 6.60394, 7.1309, 7.201169999999999, 6.10925, 6.68461, 6.95655, 7.24423, 6.17587, 6.77422, 6.2860000000000005, 6.828710000000001, 6.72743, 5.9269300000000005, 6.6592899999999995, 6.57786, 6.62007, 6.65286, 6.79122, 6.987489999999999, 6.55536, 7.09008, 7.04752, 6.90575, 7.43838, 7.1309, 6.77422, 6.739339999999999, 7.46737, 7.279319999999999, 7.1309, 7.17012, 6.354369999999999, 6.29157, 6.802389999999999, 6.47697, 6.63857, 6.77422, 6.907760000000001, 7.09589, 6.882439999999999, 6.05209, 7.67322, 7.2957399999999994, 6.802389999999999, 6.90575, 7.503839999999999, 5.97126, 6.15273, 7.57558, 6.8200199999999995, 6.90575, 7.39388, 7.24065, 5.70378, 6.13773, 6.3952599999999995, 7.09008, 6.77992, 7.22766, 7.475339999999999, 6.62007, 5.72031, 6.272880000000001, 7.91936, 6.2146099999999995, 6.85646, 6.51471, 6.253830000000001, 6.30992, 7.3651800000000005, 6.30992, 6.85646, 6.892639999999999, 6.95655, 6.90575, 6.966019999999999, 6.8865300000000005, 7.334980000000001, 6.72743, 6.93245, 7.27031, 6.77992, 6.68461, 7.696210000000001, 6.126869999999999, 6.715380000000001, 7.31122, 6.90575, 6.52942, 6.8426800000000005, 6.62007, 7.37776, 6.907760000000001, 7.18917, 7.9459100000000005, 6.77422, 7.424760000000001, 7.6009, 6.90575, 7.46737, 6.694560000000001, 6.907760000000001, 8.16052, 6.98008, 6.984719999999999, 6.802389999999999, 6.802389999999999, 7.1309, 6.62007, 6.58617, 7.1309, 7.78322, 6.354369999999999, 7.9724699999999995, 7.64969, 6.47697, 7.331060000000001, 6.64118, 6.47697, 7.20786, 7.0201899999999995, 7.279319999999999, 8.02027, 6.80461, 5.99645, 6.77422, 7.01571, 6.57786, 6.47697, 5.93225, 7.46737, 6.47697, 6.85646, 6.67077, 6.85646, 7.313219999999999, 6.566669999999999, 7.1309, 6.77422, 6.6515699999999995, 6.85646, 6.90575, 6.95655, 6.126869999999999, 7.1309, 6.66568, 6.88755, 6.6567300000000005, 7.696210000000001, 6.68461, 6.43775, 6.802389999999999, 6.6592899999999995, 6.84055, 6.2634, 6.4892, 6.62007, 7.1107, 6.57647, 6.85646, 6.43775, 6.90575, 6.30992, 6.85646, 6.04025, 5.76832, 6.551080000000001, 7.09008, 6.86693, 6.65286, 5.9814099999999994, 6.28227, 7.46737, 7.46737, 6.90575, 6.52209, 7.37776, 6.90575, 7.46737, 6.18826, 7.346010000000001, 7.6009, 7.14913, 7.27031, 6.72503, 6.62007, 7.17012, 6.995769999999999, 7.09008, 6.52209, 7.313219999999999, 6.561030000000001, 6.907760000000001, 7.71869, 7.143619999999999, 6.907760000000001, 6.354369999999999, 7.00307, 6.802389999999999, 7.09008, 6.90575, 6.47697, 7.26193, 6.60665, 6.424869999999999, 7.37776, 6.882439999999999, 6.907760000000001, 6.745239999999999, 7.495539999999999, 7.1546199999999995, 6.68461, 6.6592899999999995, 6.72743, 6.42972, 7.0579, 7.05099, 7.233460000000001, 6.90575, 6.6567300000000005, 6.90575, 6.90575, 6.90975, 7.64969, 6.745239999999999, 5.99146, 6.47697, 6.47697, 7.6009, 6.90575, 7.17242, 7.24423, 6.85646, 6.90575, 7.696210000000001, 6.90575, 7.014810000000001, 7.04752, 6.90575, 7.803839999999999, 6.31355, 6.829789999999999, 7.54961, 7.28207, 6.69084, 7.1929300000000005, 6.80017, 6.07535, 7.1309, 7.17012, 7.0884100000000005, 6.77992, 6.90575, 6.90575, 5.01728, 7.136480000000001, 6.608, 7.9831, 6.9828600000000005, 6.30992, 7.09506, 6.44572, 6.2634, 6.90575, 5.96615, 6.9622399999999995, 6.68461, 6.85646, 7.346010000000001, 6.68085, 7.24423, 6.8426800000000005, 6.1070199999999994, 6.43775, 6.253830000000001, 7.30317, 6.829789999999999, 7.20786, 6.95655, 6.907760000000001, 7.43838, 6.3952599999999995, 7.09008, 6.94986, 7.06902, 7.22766, 7.1309, 6.50279, 6.551080000000001, 6.694560000000001, 6.44572, 6.6783399999999995, 7.408530000000001, 7.09008, 7.03615, 6.05209, 7.09008, 6.551080000000001, 6.39693, 6.57228, 6.715380000000001, 6.7511, 7.26193, 6.829789999999999, 6.745239999999999, 6.62007, 6.85646, 6.63726, 6.73102, 6.2634, 6.721430000000001, 6.10925, 7.313219999999999, 6.4488900000000005, 7.1309, 6.70073, 6.8384100000000005, 7.03615, 6.85751, 7.313219999999999, 6.86693, 7.08171, 6.85646, 6.28972, 7.46737, 7.2724, 7.0255399999999995, 6.90575, 6.9828600000000005, 7.450080000000001, 6.224559999999999, 6.77422, 7.1309, 7.49332, 6.39192, 7.4832399999999994, 6.90575, 6.90575, 7.1309, 6.715380000000001, 6.802389999999999, 6.9187, 6.35611, 7.02376, 6.90575, 6.82655, 6.90575, 7.42833, 5.87212, 7.52833, 6.90575, 6.4677, 7.3651800000000005, 6.975410000000001, 7.43838, 7.82405, 6.5439099999999994, 7.16085, 6.04025, 5.52146, 7.00307, 7.279319999999999, 6.907760000000001, 7.54961, 6.90575, 6.90575, 6.62007, 7.0255399999999995, 7.31122, 7.226210000000001, 6.77422, 7.183110000000001, 7.728860000000001, 6.54965, 7.04752, 7.25488, 6.9256, 7.041410000000001, 6.4599, 6.96035, 6.99942, 6.38012, 7.18007, 7.17012, 7.313219999999999, 6.90575, 7.8935699999999995, 6.34564, 6.8977, 6.3699, 6.05209, 6.551080000000001, 6.66568, 6.2146099999999995, 7.106610000000001, 6.86693, 6.745239999999999, 7.696210000000001, 7.64779, 7.313219999999999, 6.61338, 6.8426800000000005, 6.768489999999999, 7.3981699999999995, 6.68461, 7.12287, 6.551080000000001, 6.745239999999999, 7.1309, 7.06048, 6.05209, 6.78672, 7.09008, 7.1309, 6.47697, 7.1025, 7.24423, 7.198180000000001, 7.27101, 7.245660000000001, 7.279319999999999, 6.85646, 7.279319999999999, 7.67322, 6.82437, 6.47697, 7.07918, 7.279319999999999, 7.1309, 6.73102, 7.00307, 7.6009, 6.907760000000001, 7.0884100000000005, 6.829789999999999, 7.11802, 6.77422, 7.26193, 6.90575, 7.00307, 7.46737, 6.57786, 6.90575, 6.62007, 6.3952599999999995, 7.04752, 6.50429, 6.90575, 6.90575, 6.318969999999999, 6.802389999999999, 7.24423, 7.09008, 7.84502, 6.14633, 7.17012, 6.882439999999999, 7.54697, 7.408530000000001, 6.46614, 6.95655, 6.36303, 7.04752, 7.04316, 6.83195, 6.8533, 7.20786, 6.62007, 6.95655, 6.90575, 7.09008, 7.014810000000001, 6.73815, 7.266830000000001, 6.95655, 7.20786, 6.602589999999999, 7.54961, 6.84055, 6.49224, 6.58893, 7.64969, 6.9177100000000005, 6.68461, 7.00307, 6.852239999999999, 6.51175, 7.522939999999999, 6.16331, 6.551080000000001, 6.907760000000001, 6.802389999999999, 6.57925, 6.97167, 6.75926, 6.66823, 7.37776, 6.90575, 7.408530000000001, 6.39693, 7.20786, 6.90575, 6.44572, 6.802389999999999, 6.551080000000001, 6.90575, 6.90575, 6.99118, 7.1592899999999995, 6.697030000000001, 6.90575, 6.59987, 7.01571, 6.85646, 7.46737, 6.907760000000001, 6.62007, 6.90575, 7.6009, 7.00307, 6.17379, 7.346010000000001, 6.90575, 7.24423, 7.0942300000000005, 7.86327, 7.09008, 6.354369999999999, 6.53233, 6.58617, 7.46737, 6.39693, 6.38012, 6.90575, 6.44413, 6.40192, 6.55393, 6.593039999999999, 7.06902, 6.802389999999999, 6.715380000000001, 6.39693, 6.57786, 6.68461, 6.42972, 6.85435, 6.58893, 6.708080000000001, 6.907760000000001, 6.43775, 6.2441699999999996, 6.85646, 5.72031, 7.54961, 6.90575, 6.768489999999999, 6.63595, 6.90575, 6.75577, 6.77194, 6.77422, 6.99485, 6.58617, 6.6567300000000005, 6.9489, 7.354360000000001, 7.279319999999999, 5.8861, 6.6592899999999995, 7.06305, 6.49224, 6.84588, 6.35611, 7.20786, 6.90575, 7.1309, 6.95655, 6.07993, 7.10988, 6.57925, 6.927560000000001, 6.90575, 7.09008, 7.1309, 6.907760000000001, 7.6009, 6.963189999999999, 6.90575, 6.90575, 6.907760000000001, 6.8533, 7.196689999999999, 6.9147300000000005, 6.551080000000001, 6.90575, 6.47697, 7.0255399999999995, 7.522939999999999, 6.354369999999999, 7.1546199999999995, 6.90575, 6.77422, 7.313219999999999, 6.816739999999999, 7.6009, 7.37588, 6.551080000000001, 7.24423, 6.06146, 7.05359, 7.93737, 7.67322, 6.77422, 6.2634, 7.57558, 7.495539999999999, 6.59715, 6.03787, 6.556780000000001, 7.6009, 6.83303, 6.551080000000001, 7.925160000000001, 6.77422, 6.1136800000000004, 6.77992, 7.00307, 7.86327, 6.70073, 7.1309, 6.32794, 6.802389999999999, 6.95655, 6.90575, 6.47697, 6.90575, 7.872839999999999, 6.49072, 6.90575, 6.79122, 6.53233, 6.907760000000001, 6.6280399999999995, 6.05209, 7.02997, 6.90575, 7.313219999999999, 6.07074, 6.77992, 6.62007, 6.59987, 6.62007, 6.8966899999999995, 6.07993, 6.907760000000001, 6.47697, 6.77422, 8.047189999999999, 6.507280000000001, 7.46737, 7.034389999999999, 6.95655, 7.495539999999999, 6.88755, 8.03916, 6.829789999999999, 6.6745600000000005, 6.43455, 6.90575, 7.346660000000001, 6.9256, 7.6009, 7.10988, 7.24423, 7.313219999999999, 6.9256, 6.57786, 6.53669, 6.39693, 7.313219999999999, 7.408530000000001, 6.90575, 6.551080000000001, 6.57925, 6.90575, 6.73102, 7.09008, 6.62007, 6.68461, 6.65286, 7.24423, 7.0422899999999995, 7.034389999999999, 6.59987, 6.16331, 7.43838, 6.818919999999999, 6.551080000000001, 6.53669, 6.95655, 7.2100800000000005, 6.48311, 6.45362, 6.765039999999999, 6.2691, 7.18917, 6.802389999999999, 6.2634, 7.38647, 6.96885, 6.3403599999999996, 6.90575, 7.04752, 7.09008, 6.62007, 5.9839400000000005, 6.95655, 7.49332, 6.62007, 6.753439999999999, 6.77422, 7.495539999999999, 6.56526, 6.88755, 7.47307, 6.90575, 6.90575, 7.909860000000001, 6.69084, 5.627619999999999, 6.68461, 7.740660000000001, 6.43775, 6.43775, 6.813439999999999, 6.9256, 7.64969, 6.10925, 7.1309, 6.907760000000001, 6.85646, 6.77422, 6.768489999999999, 6.62007, 7.06133, 7.24423, 7.54961, 6.354369999999999, 6.62007, 7.61332, 6.8977, 6.551080000000001, 7.40914, 6.49072, 6.30992, 7.0967199999999995, 6.05209, 6.90575, 7.24423, 5.8999, 7.062189999999999, 6.2441699999999996, 6.829789999999999, 6.95655, 6.38012, 7.293019999999999, 6.91175, 6.91175, 6.45362, 6.8773, 6.955589999999999, 7.80588, 6.9613, 6.907760000000001, 7.507689999999999, 6.90575, 6.385190000000001, 7.31122, 6.807930000000001, 6.1717, 7.6009, 6.90575, 7.66153, 7.17012, 7.183110000000001, 6.56948, 8.00637, 6.90575, 6.30992, 6.551080000000001, 7.522939999999999, 6.49979, 7.05704, 6.551080000000001, 7.20564, 7.6009, 5.7525699999999995, 6.90575, 6.802389999999999, 6.84375, 6.95655, 6.8977, 7.34923, 6.93245, 6.79122, 6.61607, 6.90575, 6.697030000000001, 6.5395900000000005, 7.1309, 6.739339999999999, 7.86327, 6.47697, 6.551080000000001, 6.57925, 7.71869, 7.1309, 7.401839999999999, 7.2724, 6.90575, 6.3699, 7.82405, 6.95655, 6.90575, 6.907760000000001, 6.2146099999999995, 6.67203, 7.6811, 6.745239999999999, 7.27031, 6.721430000000001, 6.99485, 7.37776, 7.06048, 7.6009, 6.84375, 7.0282, 6.90575, 8.0229, 6.90575, 6.6592899999999995, 7.1309, 6.984719999999999, 6.354369999999999, 6.52209, 7.362010000000001, 6.73102, 6.39693, 6.8773, 6.507280000000001, 7.313219999999999, 6.802389999999999, 7.46737, 6.82437, 6.2634, 6.551080000000001, 7.05618, 6.56948, 6.90575, 7.09008, 6.753439999999999, 6.966019999999999, 6.5582, 6.907760000000001, 6.98008, 5.70378, 7.313219999999999, 6.62007, 6.84588, 6.95655, 6.68461, 6.57786, 6.2146099999999995, 7.313219999999999, 7.37776, 7.1309, 7.279319999999999, 6.73102, 6.53669, 7.03527, 7.04752, 6.507280000000001, 7.09008, 6.33328, 6.90575, 7.43838, 7.2724, 6.56526, 6.90575, 7.91936, 6.90575, 7.57558, 6.20456, 6.802389999999999, 6.899719999999999, 7.484369999999999, 6.90575, 7.084230000000001, 7.293019999999999, 6.813439999999999, 6.90575, 7.09008, 6.90575, 5.76832, 7.279319999999999, 6.68461, 6.6592899999999995, 7.91936, 7.00307, 6.551080000000001, 6.90575, 6.907760000000001, 6.715380000000001, 6.96885, 6.68461, 6.745239999999999, 6.768489999999999, 6.39693, 7.393260000000001, 6.2146099999999995, 7.09008, 6.4892, 7.676010000000001, 6.907760000000001, 7.54961, 5.79606, 6.77422, 7.04752, 7.37776, 7.17012, 6.8426800000000005, 6.62007, 6.752269999999999, 6.90575, 7.1309, 8.12089, 6.2146099999999995, 7.740660000000001, 6.96979, 6.68461, 7.14283, 5.43808, 7.183110000000001, 7.0255399999999995, 6.68461, 7.37776, 6.17379, 7.09008, 6.51323, 6.6592899999999995, 6.30992, 6.30992, 6.09807, 6.8977, 6.35784, 7.7021, 7.6009, 7.36455, 6.59715, 6.59715, 6.62007, 7.09008, 6.880380000000001, 6.745239999999999, 7.1309, 7.82084, 6.72743, 7.196689999999999, 7.24423, 7.1309, 7.6009, 7.11314, 6.86693, 6.85646, 6.84588, 6.86171, 6.50279, 6.7417, 7.18917, 6.2146099999999995, 7.09008, 7.84385, 6.57647, 6.9707300000000005, 8.3082, 7.1309, 7.17012, 6.90575, 6.62007, 6.86693, 6.90575, 6.907760000000001, 6.39693, 7.0255399999999995, 7.903969999999999, 7.037030000000001, 7.04752, 6.47697, 6.76388, 6.90575, 6.90575, 7.1507, 7.07834, 6.52942, 6.701960000000001, 6.69827, 6.57786, 7.16085, 5.99146, 6.99485, 7.279319999999999, 6.57925, 6.30992, 6.802389999999999, 6.785589999999999, 7.313219999999999, 7.29097, 6.802389999999999, 7.20786, 6.802389999999999, 6.75926, 6.68461, 6.8977, 6.90575, 7.4570300000000005, 7.1309, 7.90101, 6.32794, 7.81883, 6.2146099999999995, 6.62007, 6.813439999999999, 6.551080000000001, 6.920669999999999, 7.195189999999999, 6.745239999999999, 6.3315, 6.90575, 7.0396600000000005, 6.90575, 6.30992, 6.96885, 6.39693, 7.17012, 6.60394, 6.68461, 6.4677, 6.4552, 7.1546199999999995, 7.37776, 7.18917, 7.136480000000001, 7.03878, 7.06048, 6.715380000000001, 7.1309, 6.90575, 7.1507, 6.29157, 6.86693, 6.90575, 7.0255399999999995, 7.495539999999999, 6.90575, 7.57353, 6.23048, 6.802389999999999, 7.6009, 6.55962, 6.834110000000001, 7.313219999999999, 6.802389999999999, 6.66441, 7.251339999999999, 6.802389999999999, 7.43838, 6.43775, 6.5820300000000005, 7.17012, 6.68461, 6.90575, 7.281389999999999, 7.17702, 6.90575, 6.90575, 8.229510000000001, 7.136480000000001, 6.74288, 7.0934, 7.200419999999999, 7.37776, 6.79122, 6.39693, 7.46737, 6.802389999999999, 6.62007, 6.90575, 7.0255399999999995, 7.70661, 6.907760000000001, 7.1107, 6.593039999999999, 7.20786, 6.556780000000001, 6.83518, 6.95273, 6.907760000000001, 6.68461, 6.28972, 7.00307, 6.967910000000001, 6.68461, 6.85646, 6.90575, 7.09008, 6.90575, 7.21891, 6.90575, 6.745239999999999, 7.6009, 6.817830000000001, 6.6592899999999995, 7.46737, 6.720219999999999, 6.90575, 6.90575, 6.892639999999999, 6.86485, 6.947939999999999, 6.90575, 6.551080000000001, 7.04752, 6.4599, 7.398789999999999, 7.37776, 7.35883, 6.745239999999999, 7.05876, 6.694560000000001, 6.68461, 7.64969, 6.59578, 7.027310000000001, 6.2146099999999995, 6.23441, 6.2804, 7.6256, 6.6346300000000005, 7.195189999999999, 6.52649, 6.49527, 6.51915, 7.54961, 7.09008, 7.00307, 6.77422, 7.1293, 7.17012, 6.90575, 6.6515699999999995, 7.313219999999999, 6.72743, 6.68461, 6.90575, 7.495539999999999, 6.745239999999999, 7.251339999999999, 8.048789999999999, 7.313219999999999, 6.745239999999999, 6.907760000000001, 6.90575, 7.17012, 6.2441699999999996, 8.08641, 6.9594, 6.55962, 6.74406, 7.56008, 7.408530000000001, 6.61338, 7.18007, 6.95655, 6.85646, 7.313219999999999, 6.18826, 6.47697, 7.43838, 6.53233, 7.88231, 6.90575, 7.37776, 6.44413, 7.2998, 6.551080000000001, 6.90575, 7.46737, 6.63595, 6.802389999999999, 7.346010000000001, 6.90575, 6.9256, 6.52209, 6.3699, 6.02345, 7.32251, 7.04752, 7.04752, 6.65286, 6.85646, 6.745239999999999, 6.9256, 6.90575, 6.16331, 6.813439999999999, 5.8141300000000005, 6.01616, 6.48158, 7.46737, 6.551080000000001, 7.67322, 6.35957, 7.1309, 6.39693, 7.46737, 6.95655, 6.3716099999999996, 7.293019999999999, 6.08677, 7.64969, 8.13153, 6.3613, 6.551080000000001, 6.907760000000001, 6.97261, 6.907760000000001, 6.43775, 6.6567300000000005, 7.062189999999999, 7.195189999999999, 7.185389999999999, 6.01616, 7.20786, 7.495539999999999, 6.90575, 6.551080000000001, 7.00307, 7.0255399999999995, 7.495539999999999, 6.768489999999999, 6.23441, 6.907760000000001, 6.745239999999999, 7.21744, 6.05209, 7.24423, 7.09008, 7.00307, 6.721430000000001, 6.813439999999999, 7.64969, 7.3696, 7.20786, 6.78333, 6.57647, 6.5903, 6.74993, 6.57925, 6.907760000000001, 7.18917, 6.802389999999999, 7.014810000000001, 6.43615, 6.608, 6.68461, 6.62007, 6.19032, 6.12249, 7.313219999999999, 6.83303, 6.6871100000000006, 7.09008, 7.37776, 7.64969, 7.91936, 6.907760000000001, 6.13773, 6.67203, 8.00637, 6.65286, 6.57368, 5.70711, 6.57786, 7.37776, 6.2146099999999995, 7.408530000000001, 7.91936, 7.09008, 7.37776, 6.6592899999999995, 6.90575, 7.57558, 6.2146099999999995, 6.35957, 6.51471, 8.537, 6.07993, 7.36645, 6.61338, 7.64969, 7.09008, 7.1082399999999994, 7.09008, 6.90575, 6.84162, 7.313219999999999, 6.07993, 6.3952599999999995, 6.633319999999999, 6.42162, 7.09008, 7.313219999999999, 6.79122, 7.2861899999999995, 6.802389999999999, 5.98896, 7.620710000000001, 7.09008, 7.6009, 6.48768, 7.37776, 7.525639999999999, 6.72623, 7.09008, 7.585789999999999, 6.45362, 6.354369999999999, 6.907760000000001, 7.346010000000001, 7.027310000000001, 6.9489, 6.907760000000001, 7.495539999999999, 6.58617, 6.90575, 6.633319999999999, 6.2634, 7.35819, 6.68461, 7.30317, 6.95655, 6.907760000000001, 7.313219999999999, 6.90575, 7.09008, 7.196689999999999, 6.68461, 6.9828600000000005, 7.02465, 6.49224, 6.49979, 5.8861, 7.393260000000001, 6.32794, 6.28786, 6.68461, 6.62007, 6.84162, 6.2146099999999995, 6.983789999999999, 6.17379, 6.95655, 6.90575, 6.62007, 7.00307, 6.95655, 6.90575, 6.62007, 7.313219999999999, 7.0884100000000005, 6.90575, 6.551080000000001, 6.90575, 7.09008, 6.68461, 6.58617, 7.2233, 6.813439999999999, 6.2146099999999995, 7.6009, 6.30992, 6.47697, 7.46737, 6.87213, 6.73102, 6.30992, 7.45298, 7.1309, 6.90675, 6.551080000000001, 6.85646, 6.381819999999999, 6.4708, 6.90575, 7.6009, 6.52062, 6.907760000000001, 6.51471, 6.9828600000000005, 6.84055, 7.44659, 7.388330000000001, 6.85118, 7.24423, 6.90575, 7.10906, 6.222580000000001, 6.84588, 7.17012, 6.52503, 6.2860000000000005 ], "y0": "male" }, { "box": { "visible": false }, "fillcolor": "rgba(0, 0, 0, 0)", "hoverinfo": "x", "hoveron": "points", "jitter": 0.3, "legendgroup": "male&no", "line": { "color": "rgba(0, 0, 0, 0)", "width": 0 }, "marker": { "color": "hsla(246, 70%, 70%,1)", "line": { "color": "hsla(246, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "hexagon" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0.6, "points": "all", "scalegroup": "male&no", "showlegend": false, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 7.67322, 7.32975, 7.91936, 7.71869, 6.882439999999999, 6.907760000000001, 6.93342, 7.557989999999999, 6.57925, 7.313219999999999, 6.47697, 7.1309, 6.907760000000001, 6.682110000000001, 6.39693, 7.00307, 5.78383, 7.11477, 6.993930000000001, 6.593039999999999, 6.51471, 6.30992, 7.554860000000001, 6.90675, 6.85646, 6.90575, 6.90575, 7.35947, 6.39693, 7.313219999999999, 6.787839999999999, 6.90575, 6.802389999999999, 7.00307, 7.282760000000001, 6.23048, 6.67203, 7.56008, 6.30992, 7.47307, 6.90575, 7.46737, 6.829789999999999, 6.60665, 6.74052, 6.745239999999999, 7.6009, 6.62007, 6.551080000000001, 7.60589, 6.53669, 6.5582, 6.19236, 7.37776, 6.23832, 6.27476, 6.48311, 6.745239999999999, 6.663130000000001, 7.20786, 6.79122, 6.62007, 6.42162, 6.28227, 6.745239999999999, 7.408530000000001, 6.317159999999999, 6.551080000000001, 6.68461, 7.1107, 6.90575, 6.84588, 8.10168, 7.31255, 5.99645, 6.90575, 6.802389999999999, 6.907760000000001, 6.90575, 6.6592899999999995, 8.047189999999999, 6.62407, 6.17379, 7.78322, 7.12448, 6.8977, 7.82405, 7.75148, 7.346010000000001, 7.1309, 6.84055, 7.041410000000001, 7.346010000000001, 6.966019999999999, 6.90575, 7.17012, 7.82405, 6.88755, 6.39693, 6.65286, 6.90575, 7.00125, 7.064760000000001, 7.00307, 6.745239999999999, 6.54535, 6.62007, 6.10925, 6.39693, 8.16052, 6.745239999999999, 7.1309, 6.77422, 6.87213, 6.6567300000000005, 6.80017, 7.226210000000001, 6.70073, 7.495539999999999, 8.05516, 6.9256, 6.694560000000001, 6.90575, 7.29709, 7.313219999999999, 7.173189999999999, 6.62007, 6.7226300000000005, 6.85118, 6.49224, 7.313219999999999, 7.158510000000001, 6.34564, 6.7093, 7.00307, 6.90575, 6.53669, 7.313219999999999, 6.90575, 6.62007, 6.4552, 6.77422, 6.62007, 6.96508, 5.5606800000000005, 6.715380000000001, 7.408530000000001, 7.04752, 6.98008, 7.3670800000000005, 6.68461, 6.90575, 6.90575, 6.45362, 6.47697, 6.67203, 7.34278, 6.802389999999999, 6.90575, 6.658010000000001, 6.9256, 6.90575, 6.6592899999999995, 6.47851, 6.745239999999999, 7.20786, 7.475910000000001, 6.62007, 6.4892, 7.43838, 7.064760000000001, 7.26193, 6.23245, 6.30445, 7.313219999999999, 6.85646, 7.26193, 6.907760000000001, 7.481560000000001, 7.04752, 6.73815, 5.8579300000000005, 7.57558, 6.90575, 6.86693, 6.39693, 7.1507, 6.58617, 7.282760000000001, 6.90575, 6.10925, 7.1309, 6.95655, 6.65286, 6.24611, 7.1309, 7.1333, 7.24423, 6.04025, 6.86901, 6.802389999999999, 6.70073, 7.313219999999999, 6.95655, 7.50108, 6.39693, 7.07918, 6.7369699999999995, 7.745, 6.39693, 6.8773, 6.52942, 6.94986, 6.703189999999999, 7.37776, 6.882439999999999, 7.04752, 6.49224, 7.1309, 7.663880000000001, 6.907760000000001, 6.43775, 8.05516, 6.807930000000001, 6.907760000000001, 7.24423, 6.05209, 6.33683, 6.90575, 6.354369999999999, 6.62007, 6.68461, 6.85646, 6.44572, 6.95655, 6.8977, 6.90575, 6.84055, 7.676010000000001, 7.20786, 6.85646, 6.77422, 6.54965, 6.697030000000001, 6.68461, 6.8844899999999996, 6.62007, 6.48004, 6.5903, 7.15305, 6.19236, 6.43615, 7.79028, 6.6174, 6.907760000000001, 6.90575, 6.39693, 6.79122, 6.9147300000000005, 6.408530000000001, 7.522939999999999, 6.907760000000001, 6.47697, 6.65286, 6.47697, 7.20786, 6.90575, 6.984719999999999, 6.05209, 6.49224, 6.39693, 6.90575, 6.91374, 7.6009, 6.57786, 6.6783399999999995, 6.41182, 6.53233, 6.907760000000001, 7.236339999999999, 6.72743, 6.551080000000001, 7.20786, 6.8977, 6.59167, 6.984719999999999, 6.646389999999999, 7.459910000000001, 7.0255399999999995, 7.1309, 6.745239999999999, 6.64249, 7.49332, 7.495539999999999, 6.10925, 6.58617, 6.20456, 7.313219999999999, 6.90575, 6.10925, 7.48717, 7.49109, 6.90575, 6.51323, 6.715380000000001, 7.37212, 7.0184, 7.24423, 7.09008, 7.4553, 7.24423, 6.90575, 6.90575, 7.24423, 7.75577, 6.43775, 6.90575, 6.42162, 6.93245, 6.551080000000001, 6.96508, 6.44572, 6.28972, 7.1082399999999994, 6.49072, 7.251339999999999, 6.807930000000001, 7.14756, 7.33368, 6.77422, 6.60394, 7.1309, 7.201169999999999, 6.10925, 6.68461, 6.95655, 7.24423, 6.17587, 6.77422, 6.2860000000000005, 6.828710000000001, 6.72743, 5.9269300000000005, 6.6592899999999995, 6.57786, 6.62007, 6.65286, 6.79122, 6.987489999999999, 6.55536, 7.09008, 7.04752, 6.90575, 7.43838, 7.1309, 6.77422, 6.739339999999999, 7.46737, 7.279319999999999, 7.1309, 7.17012, 6.354369999999999, 6.29157, 6.802389999999999, 6.47697, 6.63857, 6.77422, 6.907760000000001, 7.09589, 6.882439999999999, 6.05209, 7.67322, 7.2957399999999994, 6.802389999999999, 6.90575, 7.503839999999999, 5.97126, 6.15273, 7.57558, 6.8200199999999995, 6.90575, 7.39388, 7.24065, 5.70378, 6.13773, 6.3952599999999995, 7.09008, 6.77992, 7.22766, 7.475339999999999, 6.62007, 5.72031, 6.272880000000001, 7.91936, 6.2146099999999995, 6.85646, 6.51471, 6.253830000000001, 6.30992, 7.3651800000000005, 6.30992, 6.85646, 6.892639999999999, 6.95655, 6.90575, 6.966019999999999, 6.8865300000000005, 7.334980000000001, 6.72743, 6.93245, 7.27031, 6.77992, 6.68461, 7.696210000000001, 6.126869999999999, 6.715380000000001, 7.31122, 6.90575, 6.52942, 6.8426800000000005, 6.62007, 7.37776, 6.907760000000001, 7.18917, 7.9459100000000005, 6.77422, 7.424760000000001, 7.6009, 6.90575, 7.46737, 6.694560000000001, 6.907760000000001, 8.16052, 6.98008, 6.984719999999999, 6.802389999999999, 6.802389999999999, 7.1309, 6.62007, 6.58617, 7.1309, 7.78322, 6.354369999999999, 7.9724699999999995, 7.64969, 6.47697, 7.331060000000001, 6.64118, 6.47697, 7.20786, 7.0201899999999995, 7.279319999999999, 8.02027, 6.80461, 5.99645, 6.77422, 7.01571, 6.57786, 6.47697, 5.93225, 7.46737, 6.47697, 6.85646, 6.67077, 6.85646, 7.313219999999999, 6.566669999999999, 7.1309, 6.77422, 6.6515699999999995, 6.85646, 6.90575, 6.95655, 6.126869999999999, 7.1309, 6.66568, 6.88755, 6.6567300000000005, 7.696210000000001, 6.68461, 6.43775, 6.802389999999999, 6.6592899999999995, 6.84055, 6.2634, 6.4892, 6.62007, 7.1107, 6.57647, 6.85646, 6.43775, 6.90575, 6.30992, 6.85646, 6.04025, 5.76832, 6.551080000000001, 7.09008, 6.86693, 6.65286 ], "y0": "male" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(246, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(246, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "male&no", "line": { "width": 0 }, "marker": { "color": "hsla(246, 50%, 50%,0.9)", "line": { "color": "hsla(246, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "hexagon" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": false, "scalegroup": "male&no", "showlegend": false, "side": "positive", "span": [ 6.871185580302662, 6.912654429590365 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 7.67322, 7.32975, 7.91936, 7.71869, 6.882439999999999, 6.907760000000001, 6.93342, 7.557989999999999, 6.57925, 7.313219999999999, 6.47697, 7.1309, 6.907760000000001, 6.682110000000001, 6.39693, 7.00307, 5.78383, 7.11477, 6.993930000000001, 6.593039999999999, 6.51471, 6.30992, 7.554860000000001, 6.90675, 6.85646, 6.90575, 6.90575, 7.35947, 6.39693, 7.313219999999999, 6.787839999999999, 6.90575, 6.802389999999999, 7.00307, 7.282760000000001, 6.23048, 6.67203, 7.56008, 6.30992, 7.47307, 6.90575, 7.46737, 6.829789999999999, 6.60665, 6.74052, 6.745239999999999, 7.6009, 6.62007, 6.551080000000001, 7.60589, 6.53669, 6.5582, 6.19236, 7.37776, 6.23832, 6.27476, 6.48311, 6.745239999999999, 6.663130000000001, 7.20786, 6.79122, 6.62007, 6.42162, 6.28227, 6.745239999999999, 7.408530000000001, 6.317159999999999, 6.551080000000001, 6.68461, 7.1107, 6.90575, 6.84588, 8.10168, 7.31255, 5.99645, 6.90575, 6.802389999999999, 6.907760000000001, 6.90575, 6.6592899999999995, 8.047189999999999, 6.62407, 6.17379, 7.78322, 7.12448, 6.8977, 7.82405, 7.75148, 7.346010000000001, 7.1309, 6.84055, 7.041410000000001, 7.346010000000001, 6.966019999999999, 6.90575, 7.17012, 7.82405, 6.88755, 6.39693, 6.65286, 6.90575, 7.00125, 7.064760000000001, 7.00307, 6.745239999999999, 6.54535, 6.62007, 6.10925, 6.39693, 8.16052, 6.745239999999999, 7.1309, 6.77422, 6.87213, 6.6567300000000005, 6.80017, 7.226210000000001, 6.70073, 7.495539999999999, 8.05516, 6.9256, 6.694560000000001, 6.90575, 7.29709, 7.313219999999999, 7.173189999999999, 6.62007, 6.7226300000000005, 6.85118, 6.49224, 7.313219999999999, 7.158510000000001, 6.34564, 6.7093, 7.00307, 6.90575, 6.53669, 7.313219999999999, 6.90575, 6.62007, 6.4552, 6.77422, 6.62007, 6.96508, 5.5606800000000005, 6.715380000000001, 7.408530000000001, 7.04752, 6.98008, 7.3670800000000005, 6.68461, 6.90575, 6.90575, 6.45362, 6.47697, 6.67203, 7.34278, 6.802389999999999, 6.90575, 6.658010000000001, 6.9256, 6.90575, 6.6592899999999995, 6.47851, 6.745239999999999, 7.20786, 7.475910000000001, 6.62007, 6.4892, 7.43838, 7.064760000000001, 7.26193, 6.23245, 6.30445, 7.313219999999999, 6.85646, 7.26193, 6.907760000000001, 7.481560000000001, 7.04752, 6.73815, 5.8579300000000005, 7.57558, 6.90575, 6.86693, 6.39693, 7.1507, 6.58617, 7.282760000000001, 6.90575, 6.10925, 7.1309, 6.95655, 6.65286, 6.24611, 7.1309, 7.1333, 7.24423, 6.04025, 6.86901, 6.802389999999999, 6.70073, 7.313219999999999, 6.95655, 7.50108, 6.39693, 7.07918, 6.7369699999999995, 7.745, 6.39693, 6.8773, 6.52942, 6.94986, 6.703189999999999, 7.37776, 6.882439999999999, 7.04752, 6.49224, 7.1309, 7.663880000000001, 6.907760000000001, 6.43775, 8.05516, 6.807930000000001, 6.907760000000001, 7.24423, 6.05209, 6.33683, 6.90575, 6.354369999999999, 6.62007, 6.68461, 6.85646, 6.44572, 6.95655, 6.8977, 6.90575, 6.84055, 7.676010000000001, 7.20786, 6.85646, 6.77422, 6.54965, 6.697030000000001, 6.68461, 6.8844899999999996, 6.62007, 6.48004, 6.5903, 7.15305, 6.19236, 6.43615, 7.79028, 6.6174, 6.907760000000001, 6.90575, 6.39693, 6.79122, 6.9147300000000005, 6.408530000000001, 7.522939999999999, 6.907760000000001, 6.47697, 6.65286, 6.47697, 7.20786, 6.90575, 6.984719999999999, 6.05209, 6.49224, 6.39693, 6.90575, 6.91374, 7.6009, 6.57786, 6.6783399999999995, 6.41182, 6.53233, 6.907760000000001, 7.236339999999999, 6.72743, 6.551080000000001, 7.20786, 6.8977, 6.59167, 6.984719999999999, 6.646389999999999, 7.459910000000001, 7.0255399999999995, 7.1309, 6.745239999999999, 6.64249, 7.49332, 7.495539999999999, 6.10925, 6.58617, 6.20456, 7.313219999999999, 6.90575, 6.10925, 7.48717, 7.49109, 6.90575, 6.51323, 6.715380000000001, 7.37212, 7.0184, 7.24423, 7.09008, 7.4553, 7.24423, 6.90575, 6.90575, 7.24423, 7.75577, 6.43775, 6.90575, 6.42162, 6.93245, 6.551080000000001, 6.96508, 6.44572, 6.28972, 7.1082399999999994, 6.49072, 7.251339999999999, 6.807930000000001, 7.14756, 7.33368, 6.77422, 6.60394, 7.1309, 7.201169999999999, 6.10925, 6.68461, 6.95655, 7.24423, 6.17587, 6.77422, 6.2860000000000005, 6.828710000000001, 6.72743, 5.9269300000000005, 6.6592899999999995, 6.57786, 6.62007, 6.65286, 6.79122, 6.987489999999999, 6.55536, 7.09008, 7.04752, 6.90575, 7.43838, 7.1309, 6.77422, 6.739339999999999, 7.46737, 7.279319999999999, 7.1309, 7.17012, 6.354369999999999, 6.29157, 6.802389999999999, 6.47697, 6.63857, 6.77422, 6.907760000000001, 7.09589, 6.882439999999999, 6.05209, 7.67322, 7.2957399999999994, 6.802389999999999, 6.90575, 7.503839999999999, 5.97126, 6.15273, 7.57558, 6.8200199999999995, 6.90575, 7.39388, 7.24065, 5.70378, 6.13773, 6.3952599999999995, 7.09008, 6.77992, 7.22766, 7.475339999999999, 6.62007, 5.72031, 6.272880000000001, 7.91936, 6.2146099999999995, 6.85646, 6.51471, 6.253830000000001, 6.30992, 7.3651800000000005, 6.30992, 6.85646, 6.892639999999999, 6.95655, 6.90575, 6.966019999999999, 6.8865300000000005, 7.334980000000001, 6.72743, 6.93245, 7.27031, 6.77992, 6.68461, 7.696210000000001, 6.126869999999999, 6.715380000000001, 7.31122, 6.90575, 6.52942, 6.8426800000000005, 6.62007, 7.37776, 6.907760000000001, 7.18917, 7.9459100000000005, 6.77422, 7.424760000000001, 7.6009, 6.90575, 7.46737, 6.694560000000001, 6.907760000000001, 8.16052, 6.98008, 6.984719999999999, 6.802389999999999, 6.802389999999999, 7.1309, 6.62007, 6.58617, 7.1309, 7.78322, 6.354369999999999, 7.9724699999999995, 7.64969, 6.47697, 7.331060000000001, 6.64118, 6.47697, 7.20786, 7.0201899999999995, 7.279319999999999, 8.02027, 6.80461, 5.99645, 6.77422, 7.01571, 6.57786, 6.47697, 5.93225, 7.46737, 6.47697, 6.85646, 6.67077, 6.85646, 7.313219999999999, 6.566669999999999, 7.1309, 6.77422, 6.6515699999999995, 6.85646, 6.90575, 6.95655, 6.126869999999999, 7.1309, 6.66568, 6.88755, 6.6567300000000005, 7.696210000000001, 6.68461, 6.43775, 6.802389999999999, 6.6592899999999995, 6.84055, 6.2634, 6.4892, 6.62007, 7.1107, 6.57647, 6.85646, 6.43775, 6.90575, 6.30992, 6.85646, 6.04025, 5.76832, 6.551080000000001, 7.09008, 6.86693, 6.65286, 5.9814099999999994, 6.28227, 7.46737, 7.46737, 6.90575, 6.52209, 7.37776, 6.90575, 7.46737, 6.18826, 7.346010000000001, 7.6009, 7.14913, 7.27031, 6.72503, 6.62007, 7.17012, 6.995769999999999, 7.09008, 6.52209, 7.313219999999999, 6.561030000000001, 6.907760000000001, 7.71869, 7.143619999999999, 6.907760000000001, 6.354369999999999, 7.00307, 6.802389999999999, 7.09008, 6.90575, 6.47697, 7.26193, 6.60665, 6.424869999999999, 7.37776, 6.882439999999999, 6.907760000000001, 6.745239999999999, 7.495539999999999, 7.1546199999999995, 6.68461, 6.6592899999999995, 6.72743, 6.42972, 7.0579, 7.05099, 7.233460000000001, 6.90575, 6.6567300000000005, 6.90575, 6.90575, 6.90975, 7.64969, 6.745239999999999, 5.99146, 6.47697, 6.47697, 7.6009, 6.90575, 7.17242, 7.24423, 6.85646, 6.90575, 7.696210000000001, 6.90575, 7.014810000000001, 7.04752, 6.90575, 7.803839999999999, 6.31355, 6.829789999999999, 7.54961, 7.28207, 6.69084, 7.1929300000000005, 6.80017, 6.07535, 7.1309, 7.17012, 7.0884100000000005, 6.77992, 6.90575, 6.90575, 5.01728, 7.136480000000001, 6.608, 7.9831, 6.9828600000000005, 6.30992, 7.09506, 6.44572, 6.2634, 6.90575, 5.96615, 6.9622399999999995, 6.68461, 6.85646, 7.346010000000001, 6.68085, 7.24423, 6.8426800000000005, 6.1070199999999994, 6.43775, 6.253830000000001, 7.30317, 6.829789999999999, 7.20786, 6.95655, 6.907760000000001, 7.43838, 6.3952599999999995, 7.09008, 6.94986, 7.06902, 7.22766, 7.1309, 6.50279, 6.551080000000001, 6.694560000000001, 6.44572, 6.6783399999999995, 7.408530000000001, 7.09008, 7.03615, 6.05209, 7.09008, 6.551080000000001, 6.39693, 6.57228, 6.715380000000001, 6.7511, 7.26193, 6.829789999999999, 6.745239999999999, 6.62007, 6.85646, 6.63726, 6.73102, 6.2634, 6.721430000000001, 6.10925, 7.313219999999999, 6.4488900000000005, 7.1309, 6.70073, 6.8384100000000005, 7.03615, 6.85751, 7.313219999999999, 6.86693, 7.08171, 6.85646, 6.28972, 7.46737, 7.2724, 7.0255399999999995, 6.90575, 6.9828600000000005, 7.450080000000001, 6.224559999999999, 6.77422, 7.1309, 7.49332, 6.39192, 7.4832399999999994, 6.90575, 6.90575, 7.1309, 6.715380000000001, 6.802389999999999, 6.9187, 6.35611, 7.02376, 6.90575, 6.82655, 6.90575, 7.42833, 5.87212, 7.52833, 6.90575, 6.4677, 7.3651800000000005, 6.975410000000001, 7.43838, 7.82405, 6.5439099999999994, 7.16085, 6.04025, 5.52146, 7.00307, 7.279319999999999, 6.907760000000001, 7.54961, 6.90575, 6.90575, 6.62007, 7.0255399999999995, 7.31122, 7.226210000000001, 6.77422, 7.183110000000001, 7.728860000000001, 6.54965, 7.04752, 7.25488, 6.9256, 7.041410000000001, 6.4599, 6.96035, 6.99942, 6.38012, 7.18007, 7.17012, 7.313219999999999, 6.90575, 7.8935699999999995, 6.34564, 6.8977, 6.3699, 6.05209, 6.551080000000001, 6.66568, 6.2146099999999995, 7.106610000000001, 6.86693, 6.745239999999999, 7.696210000000001, 7.64779, 7.313219999999999, 6.61338, 6.8426800000000005, 6.768489999999999, 7.3981699999999995, 6.68461, 7.12287, 6.551080000000001, 6.745239999999999, 7.1309, 7.06048, 6.05209, 6.78672, 7.09008, 7.1309, 6.47697, 7.1025, 7.24423, 7.198180000000001, 7.27101, 7.245660000000001, 7.279319999999999, 6.85646, 7.279319999999999, 7.67322, 6.82437, 6.47697, 7.07918, 7.279319999999999, 7.1309, 6.73102, 7.00307, 7.6009, 6.907760000000001, 7.0884100000000005, 6.829789999999999, 7.11802, 6.77422, 7.26193, 6.90575, 7.00307, 7.46737, 6.57786, 6.90575, 6.62007, 6.3952599999999995, 7.04752, 6.50429, 6.90575, 6.90575, 6.318969999999999, 6.802389999999999, 7.24423, 7.09008, 7.84502, 6.14633, 7.17012, 6.882439999999999, 7.54697, 7.408530000000001, 6.46614, 6.95655, 6.36303, 7.04752, 7.04316, 6.83195, 6.8533, 7.20786, 6.62007, 6.95655, 6.90575, 7.09008, 7.014810000000001, 6.73815, 7.266830000000001, 6.95655, 7.20786, 6.602589999999999, 7.54961, 6.84055, 6.49224, 6.58893, 7.64969, 6.9177100000000005, 6.68461, 7.00307, 6.852239999999999, 6.51175, 7.522939999999999, 6.16331, 6.551080000000001, 6.907760000000001, 6.802389999999999, 6.57925, 6.97167, 6.75926, 6.66823, 7.37776, 6.90575, 7.408530000000001, 6.39693, 7.20786, 6.90575, 6.44572, 6.802389999999999, 6.551080000000001, 6.90575, 6.90575, 6.99118, 7.1592899999999995, 6.697030000000001, 6.90575, 6.59987, 7.01571, 6.85646, 7.46737, 6.907760000000001, 6.62007, 6.90575, 7.6009, 7.00307, 6.17379, 7.346010000000001, 6.90575, 7.24423, 7.0942300000000005, 7.86327, 7.09008, 6.354369999999999, 6.53233, 6.58617, 7.46737, 6.39693, 6.38012, 6.90575, 6.44413, 6.40192, 6.55393, 6.593039999999999, 7.06902, 6.802389999999999, 6.715380000000001, 6.39693, 6.57786, 6.68461, 6.42972, 6.85435, 6.58893, 6.708080000000001, 6.907760000000001, 6.43775, 6.2441699999999996, 6.85646, 5.72031, 7.54961, 6.90575, 6.768489999999999, 6.63595, 6.90575, 6.75577, 6.77194, 6.77422, 6.99485, 6.58617, 6.6567300000000005, 6.9489, 7.354360000000001, 7.279319999999999, 5.8861, 6.6592899999999995, 7.06305, 6.49224, 6.84588, 6.35611, 7.20786, 6.90575, 7.1309, 6.95655, 6.07993, 7.10988, 6.57925, 6.927560000000001, 6.90575, 7.09008, 7.1309, 6.907760000000001, 7.6009, 6.963189999999999, 6.90575, 6.90575, 6.907760000000001, 6.8533, 7.196689999999999, 6.9147300000000005, 6.551080000000001, 6.90575, 6.47697, 7.0255399999999995, 7.522939999999999, 6.354369999999999, 7.1546199999999995, 6.90575, 6.77422, 7.313219999999999, 6.816739999999999, 7.6009, 7.37588, 6.551080000000001, 7.24423, 6.06146, 7.05359, 7.93737, 7.67322, 6.77422, 6.2634, 7.57558, 7.495539999999999, 6.59715, 6.03787, 6.556780000000001, 7.6009, 6.83303, 6.551080000000001, 7.925160000000001, 6.77422, 6.1136800000000004, 6.77992, 7.00307, 7.86327, 6.70073, 7.1309, 6.32794, 6.802389999999999, 6.95655, 6.90575, 6.47697, 6.90575, 7.872839999999999, 6.49072, 6.90575, 6.79122, 6.53233, 6.907760000000001, 6.6280399999999995, 6.05209, 7.02997, 6.90575, 7.313219999999999, 6.07074, 6.77992, 6.62007, 6.59987, 6.62007, 6.8966899999999995, 6.07993, 6.907760000000001, 6.47697, 6.77422, 8.047189999999999, 6.507280000000001, 7.46737, 7.034389999999999, 6.95655, 7.495539999999999, 6.88755, 8.03916, 6.829789999999999, 6.6745600000000005, 6.43455, 6.90575, 7.346660000000001, 6.9256, 7.6009, 7.10988, 7.24423, 7.313219999999999, 6.9256, 6.57786, 6.53669, 6.39693, 7.313219999999999, 7.408530000000001, 6.90575, 6.551080000000001, 6.57925, 6.90575, 6.73102, 7.09008, 6.62007, 6.68461, 6.65286, 7.24423, 7.0422899999999995, 7.034389999999999, 6.59987, 6.16331, 7.43838, 6.818919999999999, 6.551080000000001, 6.53669, 6.95655, 7.2100800000000005, 6.48311, 6.45362, 6.765039999999999, 6.2691, 7.18917, 6.802389999999999, 6.2634, 7.38647, 6.96885, 6.3403599999999996, 6.90575, 7.04752, 7.09008, 6.62007, 5.9839400000000005, 6.95655, 7.49332, 6.62007, 6.753439999999999, 6.77422, 7.495539999999999, 6.56526, 6.88755, 7.47307, 6.90575, 6.90575, 7.909860000000001, 6.69084, 5.627619999999999, 6.68461, 7.740660000000001, 6.43775, 6.43775, 6.813439999999999, 6.9256, 7.64969, 6.10925, 7.1309, 6.907760000000001, 6.85646, 6.77422, 6.768489999999999, 6.62007, 7.06133, 7.24423, 7.54961, 6.354369999999999, 6.62007, 7.61332, 6.8977, 6.551080000000001, 7.40914, 6.49072, 6.30992, 7.0967199999999995, 6.05209, 6.90575, 7.24423, 5.8999, 7.062189999999999, 6.2441699999999996, 6.829789999999999, 6.95655, 6.38012, 7.293019999999999, 6.91175, 6.91175, 6.45362, 6.8773, 6.955589999999999, 7.80588, 6.9613, 6.907760000000001, 7.507689999999999, 6.90575, 6.385190000000001, 7.31122, 6.807930000000001, 6.1717, 7.6009, 6.90575, 7.66153, 7.17012, 7.183110000000001, 6.56948, 8.00637, 6.90575, 6.30992, 6.551080000000001, 7.522939999999999, 6.49979, 7.05704, 6.551080000000001, 7.20564, 7.6009, 5.7525699999999995, 6.90575, 6.802389999999999, 6.84375, 6.95655, 6.8977, 7.34923, 6.93245, 6.79122, 6.61607, 6.90575, 6.697030000000001, 6.5395900000000005, 7.1309, 6.739339999999999, 7.86327, 6.47697, 6.551080000000001, 6.57925, 7.71869, 7.1309, 7.401839999999999, 7.2724, 6.90575, 6.3699, 7.82405, 6.95655, 6.90575, 6.907760000000001, 6.2146099999999995, 6.67203, 7.6811, 6.745239999999999, 7.27031, 6.721430000000001, 6.99485, 7.37776, 7.06048, 7.6009, 6.84375, 7.0282, 6.90575, 8.0229, 6.90575, 6.6592899999999995, 7.1309, 6.984719999999999, 6.354369999999999, 6.52209, 7.362010000000001, 6.73102, 6.39693, 6.8773, 6.507280000000001, 7.313219999999999, 6.802389999999999, 7.46737, 6.82437, 6.2634, 6.551080000000001, 7.05618, 6.56948, 6.90575, 7.09008, 6.753439999999999, 6.966019999999999, 6.5582, 6.907760000000001, 6.98008, 5.70378, 7.313219999999999, 6.62007, 6.84588, 6.95655, 6.68461, 6.57786, 6.2146099999999995, 7.313219999999999, 7.37776, 7.1309, 7.279319999999999, 6.73102, 6.53669, 7.03527, 7.04752, 6.507280000000001, 7.09008, 6.33328, 6.90575, 7.43838, 7.2724, 6.56526, 6.90575, 7.91936, 6.90575, 7.57558, 6.20456, 6.802389999999999, 6.899719999999999, 7.484369999999999, 6.90575, 7.084230000000001, 7.293019999999999, 6.813439999999999, 6.90575, 7.09008, 6.90575, 5.76832, 7.279319999999999, 6.68461, 6.6592899999999995, 7.91936, 7.00307, 6.551080000000001, 6.90575, 6.907760000000001, 6.715380000000001, 6.96885, 6.68461, 6.745239999999999, 6.768489999999999, 6.39693, 7.393260000000001, 6.2146099999999995, 7.09008, 6.4892, 7.676010000000001, 6.907760000000001, 7.54961, 5.79606, 6.77422, 7.04752, 7.37776, 7.17012, 6.8426800000000005, 6.62007, 6.752269999999999, 6.90575, 7.1309, 8.12089, 6.2146099999999995, 7.740660000000001, 6.96979, 6.68461, 7.14283, 5.43808, 7.183110000000001, 7.0255399999999995, 6.68461, 7.37776, 6.17379, 7.09008, 6.51323, 6.6592899999999995, 6.30992, 6.30992, 6.09807, 6.8977, 6.35784, 7.7021, 7.6009, 7.36455, 6.59715, 6.59715, 6.62007, 7.09008, 6.880380000000001, 6.745239999999999, 7.1309, 7.82084, 6.72743, 7.196689999999999, 7.24423, 7.1309, 7.6009, 7.11314, 6.86693, 6.85646, 6.84588, 6.86171, 6.50279, 6.7417, 7.18917, 6.2146099999999995, 7.09008, 7.84385, 6.57647, 6.9707300000000005, 8.3082, 7.1309, 7.17012, 6.90575, 6.62007, 6.86693, 6.90575, 6.907760000000001, 6.39693, 7.0255399999999995, 7.903969999999999, 7.037030000000001, 7.04752, 6.47697, 6.76388, 6.90575, 6.90575, 7.1507, 7.07834, 6.52942, 6.701960000000001, 6.69827, 6.57786, 7.16085, 5.99146, 6.99485, 7.279319999999999, 6.57925, 6.30992, 6.802389999999999, 6.785589999999999, 7.313219999999999, 7.29097, 6.802389999999999, 7.20786, 6.802389999999999, 6.75926, 6.68461, 6.8977, 6.90575, 7.4570300000000005, 7.1309, 7.90101, 6.32794, 7.81883, 6.2146099999999995, 6.62007, 6.813439999999999, 6.551080000000001, 6.920669999999999, 7.195189999999999, 6.745239999999999, 6.3315, 6.90575, 7.0396600000000005, 6.90575, 6.30992, 6.96885, 6.39693, 7.17012, 6.60394, 6.68461, 6.4677, 6.4552, 7.1546199999999995, 7.37776, 7.18917, 7.136480000000001, 7.03878, 7.06048, 6.715380000000001, 7.1309, 6.90575, 7.1507, 6.29157, 6.86693, 6.90575, 7.0255399999999995, 7.495539999999999, 6.90575, 7.57353, 6.23048, 6.802389999999999, 7.6009, 6.55962, 6.834110000000001, 7.313219999999999, 6.802389999999999, 6.66441, 7.251339999999999, 6.802389999999999, 7.43838, 6.43775, 6.5820300000000005, 7.17012, 6.68461, 6.90575, 7.281389999999999, 7.17702, 6.90575, 6.90575, 8.229510000000001, 7.136480000000001, 6.74288, 7.0934, 7.200419999999999, 7.37776, 6.79122, 6.39693, 7.46737, 6.802389999999999, 6.62007, 6.90575, 7.0255399999999995, 7.70661, 6.907760000000001, 7.1107, 6.593039999999999, 7.20786, 6.556780000000001, 6.83518, 6.95273, 6.907760000000001, 6.68461, 6.28972, 7.00307, 6.967910000000001, 6.68461, 6.85646, 6.90575, 7.09008, 6.90575, 7.21891, 6.90575, 6.745239999999999, 7.6009, 6.817830000000001, 6.6592899999999995, 7.46737, 6.720219999999999, 6.90575, 6.90575, 6.892639999999999, 6.86485, 6.947939999999999, 6.90575, 6.551080000000001, 7.04752, 6.4599, 7.398789999999999, 7.37776, 7.35883, 6.745239999999999, 7.05876, 6.694560000000001, 6.68461, 7.64969, 6.59578, 7.027310000000001, 6.2146099999999995, 6.23441, 6.2804, 7.6256, 6.6346300000000005, 7.195189999999999, 6.52649, 6.49527, 6.51915, 7.54961, 7.09008, 7.00307, 6.77422, 7.1293, 7.17012, 6.90575, 6.6515699999999995, 7.313219999999999, 6.72743, 6.68461, 6.90575, 7.495539999999999, 6.745239999999999, 7.251339999999999, 8.048789999999999, 7.313219999999999, 6.745239999999999, 6.907760000000001, 6.90575, 7.17012, 6.2441699999999996, 8.08641, 6.9594, 6.55962, 6.74406, 7.56008, 7.408530000000001, 6.61338, 7.18007, 6.95655, 6.85646, 7.313219999999999, 6.18826, 6.47697, 7.43838, 6.53233, 7.88231, 6.90575, 7.37776, 6.44413, 7.2998, 6.551080000000001, 6.90575, 7.46737, 6.63595, 6.802389999999999, 7.346010000000001, 6.90575, 6.9256, 6.52209, 6.3699, 6.02345, 7.32251, 7.04752, 7.04752, 6.65286, 6.85646, 6.745239999999999, 6.9256, 6.90575, 6.16331, 6.813439999999999, 5.8141300000000005, 6.01616, 6.48158, 7.46737, 6.551080000000001, 7.67322, 6.35957, 7.1309, 6.39693, 7.46737, 6.95655, 6.3716099999999996, 7.293019999999999, 6.08677, 7.64969, 8.13153, 6.3613, 6.551080000000001, 6.907760000000001, 6.97261, 6.907760000000001, 6.43775, 6.6567300000000005, 7.062189999999999, 7.195189999999999, 7.185389999999999, 6.01616, 7.20786, 7.495539999999999, 6.90575, 6.551080000000001, 7.00307, 7.0255399999999995, 7.495539999999999, 6.768489999999999, 6.23441, 6.907760000000001, 6.745239999999999, 7.21744, 6.05209, 7.24423, 7.09008, 7.00307, 6.721430000000001, 6.813439999999999, 7.64969, 7.3696, 7.20786, 6.78333, 6.57647, 6.5903, 6.74993, 6.57925, 6.907760000000001, 7.18917, 6.802389999999999, 7.014810000000001, 6.43615, 6.608, 6.68461, 6.62007, 6.19032, 6.12249, 7.313219999999999, 6.83303, 6.6871100000000006, 7.09008, 7.37776, 7.64969, 7.91936, 6.907760000000001, 6.13773, 6.67203, 8.00637, 6.65286, 6.57368, 5.70711, 6.57786, 7.37776, 6.2146099999999995, 7.408530000000001, 7.91936, 7.09008, 7.37776, 6.6592899999999995, 6.90575, 7.57558, 6.2146099999999995, 6.35957, 6.51471, 8.537, 6.07993, 7.36645, 6.61338, 7.64969, 7.09008, 7.1082399999999994, 7.09008, 6.90575, 6.84162, 7.313219999999999, 6.07993, 6.3952599999999995, 6.633319999999999, 6.42162, 7.09008, 7.313219999999999, 6.79122, 7.2861899999999995, 6.802389999999999, 5.98896, 7.620710000000001, 7.09008, 7.6009, 6.48768, 7.37776, 7.525639999999999, 6.72623, 7.09008, 7.585789999999999, 6.45362, 6.354369999999999, 6.907760000000001, 7.346010000000001, 7.027310000000001, 6.9489, 6.907760000000001, 7.495539999999999, 6.58617, 6.90575, 6.633319999999999, 6.2634, 7.35819, 6.68461, 7.30317, 6.95655, 6.907760000000001, 7.313219999999999, 6.90575, 7.09008, 7.196689999999999, 6.68461, 6.9828600000000005, 7.02465, 6.49224, 6.49979, 5.8861, 7.393260000000001, 6.32794, 6.28786, 6.68461, 6.62007, 6.84162, 6.2146099999999995, 6.983789999999999, 6.17379, 6.95655, 6.90575, 6.62007, 7.00307, 6.95655, 6.90575, 6.62007, 7.313219999999999, 7.0884100000000005, 6.90575, 6.551080000000001, 6.90575, 7.09008, 6.68461, 6.58617, 7.2233, 6.813439999999999, 6.2146099999999995, 7.6009, 6.30992, 6.47697, 7.46737, 6.87213, 6.73102, 6.30992, 7.45298, 7.1309, 6.90675, 6.551080000000001, 6.85646, 6.381819999999999, 6.4708, 6.90575, 7.6009, 6.52062, 6.907760000000001, 6.51471, 6.9828600000000005, 6.84055, 7.44659, 7.388330000000001, 6.85118, 7.24423, 6.90575, 7.10906, 6.222580000000001, 6.84588, 7.17012, 6.52503, 6.2860000000000005 ], "y0": "male" }, { "fillcolor": "hsla(328, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(328, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "male&yes", "line": { "color": "hsla(328, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(328, 70%, 70%,1)", "line": { "color": "hsla(328, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "hexagon" }, "meanline": { "color": "hsla(328, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage male&yes", "orientation": "h", "pointpos": -0.6, "points": false, "scalegroup": "male&yes", "scalemode": "count", "showlegend": true, "side": "negative", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.99942, 5.99146, 7.09008, 5.61677, 6.646389999999999, 7.02643, 6.4552, 6.95845, 7.06902, 6.04025, 6.907760000000001, 6.745239999999999, 6.30079, 7.068169999999999, 6.07535, 6.7417, 6.47697, 6.77878, 7.06902, 6.57368, 6.829789999999999, 6.892639999999999, 7.0255399999999995, 6.551080000000001, 6.882439999999999, 6.48004, 6.60665, 6.10925, 6.94505, 6.9546399999999995, 7.17012, 6.49979, 6.5439099999999994, 6.39192, 6.30992, 7.116389999999999, 6.46925, 5.94803, 7.408530000000001, 7.0076, 6.88857, 7.041410000000001, 6.66696, 6.30992, 7.074960000000001, 7.5606, 5.99146, 6.16331, 5.94803, 6.43775, 6.39693, 6.813439999999999, 6.694560000000001, 6.29157, 6.16331, 6.88755, 6.95655, 6.28227, 6.05912, 6.602589999999999, 6.2146099999999995, 6.95655, 6.461469999999999, 7.09008, 6.663130000000001, 6.16121, 6.2146099999999995, 6.6995, 6.58617, 6.69084, 6.54965, 6.882439999999999, 5.70378, 6.7226300000000005, 6.802389999999999, 6.12249, 6.90575, 6.206580000000001, 5.99146, 6.682110000000001, 6.49677, 6.10925, 6.2146099999999995, 6.25575, 7.0884100000000005, 6.16331, 5.8999, 7.01392, 6.9363399999999995, 6.1070199999999994, 6.85646, 6.44572, 6.551080000000001, 7.111510000000001, 6.2146099999999995, 6.66696, 7.0076, 6.30992, 6.55393, 6.24611, 6.563860000000001, 6.60665, 6.507280000000001, 6.461469999999999, 6.62407, 6.2146099999999995, 6.51471, 5.96615, 6.51471, 6.551080000000001, 6.5820300000000005, 7.04752, 6.354369999999999, 6.59578, 6.5467900000000006, 6.551080000000001, 6.39693, 6.39693, 6.36647, 6.622739999999999, 5.7525699999999995, 6.15273, 7.04752, 5.52146, 6.770789999999999, 6.907760000000001, 6.05209, 7.045780000000001, 6.37673, 6.907760000000001, 7.03527, 6.765039999999999, 6.551080000000001, 6.907760000000001, 6.10925, 6.90575, 7.06987, 6.43775, 6.97261, 7.179310000000001, 6.7226300000000005, 6.82437, 6.715380000000001, 6.77878, 6.62007, 6.818919999999999, 6.68461, 6.57647, 6.43455, 5.89715, 6.556780000000001, 6.93925, 6.551080000000001, 6.69084, 6.05209, 6.87005, 6.65544, 6.42162, 5.9269300000000005, 6.317159999999999, 6.42972, 6.19236, 6.61607, 6.57368, 6.2634, 6.17379, 7.333019999999999, 6.37502, 6.16331, 6.317159999999999, 6.68461, 6.912739999999999, 6.86693, 6.62007, 6.49072, 6.9431199999999995, 6.90575, 6.10925, 6.7334, 6.91075, 6.6592899999999995, 5.8579300000000005, 6.16331, 7.441319999999999, 7.07834, 6.36475, 6.63857, 7.00307, 6.56948, 7.15383, 6.88755, 6.715380000000001, 7.37776, 5.8579300000000005, 6.2441699999999996, 6.90575, 6.272880000000001, 6.66568, 6.61338, 6.40688, 6.83518, 6.38856, 6.768489999999999, 6.34739, 7.00307, 6.66058, 6.58064, 6.64249, 6.715380000000001, 6.62007, 6.51471, 5.99146, 6.16331, 6.1203, 6.90575, 6.54822, 6.551080000000001, 5.8579300000000005, 5.70378, 6.87213, 5.89715, 6.30628, 6.708080000000001, 6.818919999999999, 7.041410000000001, 6.06611, 6.882439999999999, 6.37502, 5.70378, 7.03615, 5.66988, 6.907760000000001, 6.752269999999999, 6.48158, 6.47697, 6.802389999999999, 6.984719999999999, 5.9269300000000005, 6.385190000000001, 7.07242, 6.785589999999999, 6.403569999999999, 6.035480000000001, 7.338889999999999, 7.0255399999999995, 7.00307, 5.99146, 6.07993, 7.488289999999999, 6.51175, 5.7365699999999995, 5.7365699999999995, 6.697030000000001, 6.802389999999999, 6.68835, 5.8260000000000005, 7.20786, 6.3716099999999996, 6.47697, 6.802389999999999, 6.85646, 6.43775, 6.89163, 7.0121199999999995, 6.05209, 6.90575, 6.62007, 7.24423, 6.36819, 6.745239999999999, 6.19236, 6.39693, 6.85646, 6.7334, 5.9269300000000005, 5.98896, 6.55393, 7.02643, 6.6871100000000006, 6.42162, 6.06379, 6.93537, 7.09008, 6.802389999999999, 6.47697, 6.2634, 6.10032, 6.0282800000000005, 7.408530000000001, 5.99146, 6.2441699999999996, 6.00141, 6.9196800000000005, 6.90575, 6.646389999999999, 6.746410000000001, 6.30992, 6.42972, 6.18826, 6.5467900000000006, 6.7334, 6.07993, 6.90575, 7.04752, 6.66185, 7.23418, 6.54247, 6.753439999999999, 6.51471, 7.034389999999999, 7.262630000000001, 6.30992, 6.30445, 6.34564, 6.95655, 6.62007, 5.82895, 6.06146, 6.43775, 6.03787, 6.3952599999999995, 6.22654, 7.144410000000001, 5.70378, 6.5903, 7.1592899999999995, 6.72383, 6.7334, 6.20456, 6.10925, 6.715380000000001, 7.084230000000001, 6.97635, 6.685860000000001, 7.00307, 6.35089, 5.70378, 6.461469999999999, 6.53233, 6.39693, 6.19848, 6.22654, 6.10925, 7.08171, 7.1546199999999995, 7.1309, 6.745239999999999, 6.18415, 5.82895, 6.48158, 6.94022, 6.41836, 7.0193, 6.983789999999999, 6.633319999999999, 6.29157, 6.91672, 5.8141300000000005, 6.47697, 6.646389999999999, 6.84055, 6.834110000000001, 6.52942, 7.00307, 6.37502, 6.48158, 6.68461, 6.10925, 6.82437, 6.18415, 6.43775, 7.1107, 6.44572, 6.769639999999999, 6.818919999999999, 6.58617, 6.7093, 6.83195, 7.135689999999999, 8.51719, 6.68461, 5.99146, 5.99146, 6.39693, 6.927560000000001, 6.85751, 6.08677, 7.1309, 6.802389999999999, 6.30992, 6.36303, 5.8999, 6.47697, 6.55251, 6.29157, 5.59842, 6.62407, 5.9814099999999994, 6.76273, 7.06902, 6.80128, 7.313219999999999, 6.966019999999999, 6.39693, 6.293419999999999, 5.4161, 5.87493, 6.30992, 6.2146099999999995, 6.10925, 6.6783399999999995, 6.39693, 7.259119999999999, 6.47697, 6.2634, 6.47697, 6.90575, 6.815639999999999, 6.65028, 6.27099, 6.602589999999999, 6.58755, 5.45959, 6.85646, 5.8579300000000005, 5.78074, 6.2146099999999995, 5.84354, 6.58064, 6.2634, 7.00307, 7.21891, 6.45677, 6.950810000000001, 6.23048, 6.96035, 6.3716099999999996, 6.2146099999999995, 6.7334, 6.86066, 6.378430000000001, 6.48004, 7.00307, 6.47697, 7.4787300000000005, 6.2146099999999995, 6.802389999999999, 6.43775, 7.1025, 7.04752, 6.9256, 6.035480000000001, 6.01616, 6.27099, 6.354369999999999, 6.2634, 6.92166, 5.9269300000000005, 6.745239999999999, 6.24998, 6.893660000000001, 6.53669, 6.43615, 7.04752, 6.39693, 6.1334, 6.765039999999999, 5.99146, 6.43775, 6.81124, 6.62007, 7.03878, 7.0255399999999995, 6.83518, 6.53669, 6.52942, 6.54965, 5.8693, 6.0282800000000005, 6.30992, 6.23245, 6.31536, 7.486610000000001, 6.14204, 6.88755, 6.34564, 6.44413, 6.62007, 5.99146, 6.93245, 5.99146, 6.7093, 6.75926, 6.3315, 6.5439099999999994, 6.1717, 6.45362, 5.70378, 6.43775, 6.90575, 5.99146, 7.32647, 5.96101, 6.84055, 7.00307, 6.62007, 5.7525699999999995, 6.62407, 6.795710000000001, 7.212289999999999, 6.05209, 6.38856, 6.93925, 6.47697, 6.8773, 6.703189999999999, 6.658010000000001, 6.50429, 6.58617, 6.893660000000001, 6.51471, 6.06611, 6.68461, 6.65544, 7.475910000000001, 6.72743, 6.81124, 7.10906, 6.40523, 6.54822, 6.14204, 7.24423, 5.9269300000000005, 6.69084, 6.88755, 7.24423, 6.2634, 6.95655, 6.98008, 6.75577, 7.09008, 6.697030000000001, 5.78383, 6.79794, 6.2634, 6.61874, 6.64118, 6.98101, 6.90575, 5.90263, 6.17794, 6.96035, 6.35957, 6.829789999999999, 6.66568, 7.09008, 6.10925, 6.4552, 6.58617, 7.23778, 6.21261, 6.57925, 6.907760000000001, 6.802389999999999, 7.08171, 5.4161, 6.48311, 6.408530000000001, 7.17778, 6.95177, 6.785589999999999, 7.033510000000001, 6.23637, 6.530880000000001, 6.62007, 6.79122, 6.30992, 6.62007, 6.81014, 6.56526, 6.551080000000001, 6.9613, 6.7901, 6.95655, 7.18007, 5.99146, 5.99146, 6.4552, 6.59987, 6.68461, 6.317159999999999, 5.8861, 5.99146, 6.6871100000000006, 6.802389999999999, 5.93754, 6.802389999999999, 6.52356, 6.55251, 6.56526, 6.72383, 6.68461, 6.94698, 5.96615, 6.41673, 6.29157, 6.90375, 6.1944099999999995, 6.745239999999999, 6.13773, 6.858569999999999, 6.2804, 6.77422, 6.893660000000001, 6.86693, 7.408530000000001, 6.633319999999999, 6.68461, 7.185389999999999, 7.26543, 6.10925, 6.60123, 6.77194, 6.3243599999999995, 6.55393, 6.10925, 6.9613, 6.907760000000001, 7.1309, 6.354369999999999, 5.4161, 6.55536, 6.02102, 6.7334, 6.53669, 6.95655, 6.551080000000001, 6.16331, 6.3421199999999995, 6.9196800000000005, 6.51471, 6.551080000000001, 6.86693, 6.35611, 6.34914, 7.17012, 6.802389999999999, 6.253830000000001, 6.90575, 6.48464, 6.49224, 6.82763, 6.2634, 7.20786, 7.02997, 6.89467, 7.17012, 6.33328, 5.84354, 6.85646, 6.912739999999999, 6.97635, 6.2653, 6.59715, 7.16627, 6.19644, 6.39693, 5.9814099999999994, 6.6958, 7.279319999999999, 6.68461, 6.2146099999999995, 6.90575, 7.08339, 7.11233, 6.912739999999999, 6.8254600000000005, 6.62007, 6.33328, 6.15698, 6.893660000000001, 6.30262, 6.56808, 6.36303, 6.752269999999999, 6.02102, 6.633319999999999, 6.2634, 7.183110000000001, 6.6174, 6.45047, 6.9707300000000005, 6.49979, 6.68461, 6.68461, 6.975410000000001, 6.2672, 6.59987, 6.7334, 6.16331, 6.2146099999999995, 6.95655, 6.614730000000001, 6.72743, 6.17379, 6.6280399999999995, 6.83518, 6.63857, 6.17794, 6.30992, 7.07834, 7.346010000000001, 6.938280000000001, 6.715380000000001, 6.58617, 5.59842, 6.3935900000000006, 6.49072, 6.721430000000001, 6.59715, 6.00389, 6.9828600000000005, 7.04752, 6.23441, 6.551080000000001, 6.14633, 6.563860000000001, 6.3243599999999995, 6.6796, 7.062189999999999, 6.34564, 6.561030000000001, 6.17379, 7.06987, 6.87626, 6.505780000000001, 6.745239999999999, 6.966019999999999, 6.68461, 6.575080000000001, 6.40192, 6.56808, 6.7334, 6.30992, 7.0775, 6.6796, 6.745239999999999, 6.47697, 6.47697, 6.61874, 6.30079, 6.27099, 6.34564, 6.551080000000001, 6.551080000000001, 6.23441, 6.52209, 6.739339999999999, 6.16331, 6.68461, 6.715380000000001, 6.86171, 5.70378, 6.551080000000001, 6.33683, 7.0579, 5.4161, 5.5797300000000005, 5.9269300000000005, 6.463030000000001, 6.86797, 6.95655, 6.60665, 6.748760000000001, 6.77992, 6.42162, 6.8844899999999996, 6.52209, 6.90575, 6.907760000000001, 6.817830000000001, 7.323169999999999, 6.41017, 6.787839999999999, 7.0967199999999995, 5.9269300000000005, 6.55393, 6.17379, 7.00307, 7.31122, 6.31355, 6.44572, 6.59578, 6.47697, 6.62007, 6.69332, 6.7511, 7.09008, 5.8579300000000005, 6.907760000000001, 5.65249, 7.1333, 7.200419999999999, 7.1309, 6.461469999999999, 6.85646, 7.03527, 6.19848, 6.62007, 6.907760000000001, 6.05209, 7.1452, 6.02102, 5.82895, 6.33683, 6.04025, 6.2146099999999995, 6.64249, 6.6567300000000005, 6.813439999999999, 6.53669, 6.90575, 6.47697, 7.21524, 6.57925, 6.8426800000000005, 6.907760000000001, 6.90575, 6.424869999999999, 6.65415, 6.88346, 6.53669, 6.3207699999999996, 6.95655, 5.95584, 6.715380000000001, 6.44254, 6.8966899999999995, 6.23245, 6.95655, 6.813439999999999, 6.752269999999999, 6.86066, 6.7334, 6.318969999999999, 6.79122, 5.95324, 6.54103, 6.24222, 6.68461, 6.9177100000000005, 5.9814099999999994, 6.44254, 7.451239999999999, 6.51471, 6.76273, 6.885510000000001, 6.966019999999999, 6.633319999999999, 5.940169999999999, 6.32615, 6.508769999999999, 6.551080000000001, 7.31986, 6.21661, 7.17012, 5.99146, 6.3081, 6.311730000000001, 6.39693, 6.95655, 6.48311, 6.39693, 6.60665, 6.70441, 6.51471, 6.77992, 6.68461, 6.29157, 6.40523, 6.18826, 6.83518, 7.1624, 6.813439999999999, 6.907760000000001, 6.68461, 6.53814, 6.2146099999999995, 6.36647, 6.47697, 6.60665, 6.68461, 7.2724, 6.90575, 5.7462, 7.20786, 6.551080000000001, 6.58064, 6.17379, 5.70378, 6.34564, 6.65028, 7.03878, 6.10032, 6.58617, 6.68461, 6.551080000000001, 6.87626, 5.16479, 6.551080000000001, 5.2983199999999995, 6.60665, 6.907760000000001, 6.18415, 7.43838, 6.66441, 6.551080000000001, 5.99146, 6.41182, 6.43775, 6.10925, 6.43775, 6.4599, 5.99146, 6.5439099999999994, 6.6515699999999995, 7.04752, 6.44572, 6.3243599999999995, 6.41346, 6.551080000000001, 6.62007, 6.5439099999999994, 6.38012, 6.4151, 6.52209, 6.29157, 6.2146099999999995, 6.73102, 7.1309, 6.10925, 6.04025, 7.0396600000000005, 7.09589, 7.10003, 6.73102, 6.87523, 6.90575, 7.173960000000001, 6.47389, 6.99026, 7.0884100000000005, 6.206580000000001, 6.56526, 6.53379, 6.46614, 6.61338, 6.85646, 6.47389, 6.10925, 6.2441699999999996, 6.42162, 6.716589999999999, 6.58617, 6.95655, 6.29157, 6.46459, 6.95177, 6.58617, 6.50129, 6.2952699999999995, 6.85646, 6.15698, 6.15273, 7.01392, 6.62007, 6.68461, 6.50429, 5.78383, 6.54535, 6.3716099999999996, 6.62007, 6.703189999999999, 6.9622399999999995, 6.802389999999999, 6.43935, 7.044910000000001, 6.42162, 6.802389999999999, 7.127689999999999, 6.45677, 6.59987, 6.715380000000001, 7.00307, 6.937310000000001, 6.2106, 6.0845, 6.16331, 6.2146099999999995, 6.74406, 6.73221, 6.13123, 6.37673, 6.62007, 5.82895, 5.8999, 6.2146099999999995, 6.2146099999999995, 6.62007, 6.61338, 7.00307, 6.35611, 6.8977, 7.59287, 7.393260000000001, 6.834110000000001, 6.802389999999999, 6.224559999999999, 6.90575, 6.16542, 6.62007, 6.95655, 6.796819999999999, 6.66568, 6.813439999999999, 6.43615, 6.77194, 6.90575, 6.66823, 6.62007, 6.551080000000001, 5.78383, 6.753439999999999, 6.967910000000001, 6.745239999999999, 6.51471, 6.86485, 6.41346, 6.7093, 6.22654, 6.16331, 6.86171, 6.58617, 7.1309, 6.77422, 6.39693, 6.58617, 6.551080000000001, 6.2146099999999995, 6.99485, 6.45047, 6.66185, 6.94119, 6.90575, 7.21891, 6.10925, 7.09008, 6.354369999999999, 7.279319999999999, 6.354369999999999, 7.183110000000001, 6.62007, 6.795710000000001, 6.16121, 5.6801699999999995, 6.65286, 6.715380000000001, 6.78333, 6.67582, 6.907760000000001, 6.53233, 6.882439999999999, 7.0255399999999995, 6.23048, 6.715380000000001, 6.4892, 6.63726, 6.12249, 6.3613, 6.05209, 6.697030000000001, 6.8742, 6.08677, 6.907760000000001, 5.70378, 6.715380000000001, 6.2146099999999995, 6.3699, 6.54822, 6.802389999999999, 6.7226300000000005, 6.51026, 6.50429, 6.58617, 6.8977, 5.9135, 6.17379, 6.93537, 6.2146099999999995, 5.82895, 6.7569300000000005, 7.2998, 6.17794, 6.68461, 6.62007, 6.45205, 6.802389999999999, 6.32794, 6.68461, 6.714169999999999, 6.43775, 5.4161, 7.00307, 6.7569300000000005, 6.48004, 6.889589999999999, 6.59167, 6.33328, 6.33328, 6.551080000000001, 6.802389999999999, 7.3908, 6.9256, 6.95655, 6.13123, 7.06561, 6.566669999999999, 6.9966800000000005, 6.43775, 6.424869999999999, 6.646389999999999, 6.2146099999999995, 6.802389999999999, 6.90575, 6.9613, 5.70378, 6.78672, 7.09008, 6.602589999999999, 6.42162, 6.44572, 6.20456, 6.57925, 6.38012, 5.76832, 6.507280000000001, 6.2634, 6.2146099999999995, 6.50129, 6.10925, 7.196689999999999, 6.818919999999999, 6.72623, 6.7569300000000005, 6.62936, 6.31355, 6.62007, 6.2653, 6.7334, 6.95655, 6.47697, 6.3716099999999996, 6.52209, 7.106610000000001, 6.40523, 6.69084, 6.6567300000000005, 6.697030000000001, 6.22654, 6.907760000000001, 5.76832, 6.47697, 5.89715, 6.745239999999999, 6.43775, 7.029089999999999, 6.95177, 6.87626, 6.318969999999999, 6.570880000000001, 7.09008, 6.7511, 7.034389999999999, 5.70378, 6.55393, 6.72743, 6.05209, 6.90575, 6.551080000000001, 6.907760000000001, 6.785589999999999, 6.39693, 6.697030000000001, 6.814539999999999, 6.639880000000001, 6.62007, 6.77194, 6.551080000000001, 6.802389999999999, 6.57228, 6.47697, 6.907760000000001, 6.68461, 6.45834, 6.556780000000001, 6.5582, 7.1309, 5.4161, 6.90575, 7.18992, 6.6107, 6.79794, 6.16331, 6.6592899999999995, 7.0483899999999995, 6.598510000000001, 5.5797300000000005, 6.09131, 7.106610000000001, 7.22548, 6.48768, 6.87213, 6.23245, 6.39693, 6.4677, 7.35244, 7.05272, 6.33328, 6.802389999999999, 6.10925, 6.77422, 6.30992, 6.802389999999999, 7.16858, 6.802389999999999, 6.58617, 6.551080000000001, 7.1507, 6.852239999999999, 6.70564, 6.11147, 6.95655, 6.34564, 7.03878, 7.400010000000001, 5.8579300000000005, 7.37588, 6.83195, 7.00307, 6.84162, 6.354369999999999, 6.93342, 6.608, 6.85646, 6.056780000000001, 6.6120399999999995, 6.63726, 6.55393, 6.7511, 6.907760000000001, 6.05912, 6.54535, 7.00307, 6.51471, 6.66823, 5.52146, 6.551080000000001, 6.44572, 7.00307, 6.253830000000001, 5.99146, 6.907760000000001, 6.3315, 6.39693, 6.09582, 6.07535, 6.8426800000000005, 7.0518600000000005, 6.993930000000001, 6.79122, 6.7511, 6.78897, 7.259119999999999, 6.90575, 6.563860000000001, 6.30992, 6.66696, 6.47235, 6.56244, 6.80351, 6.92658, 6.4892, 6.28227, 7.06902, 6.08677, 5.958419999999999, 5.68698, 6.62007, 6.33683, 6.753439999999999, 6.52209, 6.8200199999999995, 6.81014, 6.49072, 6.745239999999999, 6.11147, 7.181589999999999, 6.29157, 7.2998, 5.86079, 6.51619, 6.937310000000001, 5.83188, 6.9256, 6.10925, 6.39693, 6.82437, 6.802389999999999, 7.239210000000001, 6.62407, 6.551080000000001, 6.41673, 6.42162, 6.715380000000001, 6.85646, 5.8579300000000005, 6.07993, 6.30992, 6.69084, 6.70564, 5.7462, 6.16752, 6.24222, 6.93049, 6.59715, 6.45047, 6.68461, 6.62007, 6.6592899999999995, 7.04752, 6.30992, 6.6346300000000005, 6.59167, 6.1181, 6.41836, 6.54103, 6.51471, 5.7462, 6.39693, 6.94698, 6.96885, 6.907760000000001, 7.00307, 7.173189999999999, 6.77422, 6.815639999999999, 6.43294, 6.88857, 6.90575, 7.226210000000001, 5.70378, 6.05912, 6.507280000000001, 6.47697, 6.2146099999999995, 6.57368, 6.53669, 5.76832, 6.2146099999999995, 6.8426800000000005, 7.520230000000001, 5.5797300000000005, 6.51323, 7.1082399999999994, 6.5582, 7.17012, 6.6958, 6.39693, 6.95177, 7.09008, 6.5582, 6.9613, 6.715380000000001, 5.70378, 6.3935900000000006, 6.86171, 6.83087, 6.6783399999999995, 6.54535, 6.593039999999999, 6.44572, 6.3716099999999996, 7.00307, 6.126869999999999, 6.50129, 6.8773, 6.56526, 6.354369999999999, 6.96885, 6.575080000000001, 6.42811, 6.78672, 6.829789999999999, 7.00307, 6.1944099999999995, 6.551080000000001, 6.907760000000001, 6.2146099999999995, 6.139880000000001, 7.1293, 6.89467, 6.621410000000001, 6.5467900000000006, 6.34388, 6.39024, 6.424869999999999, 6.49979, 6.7901, 6.4488900000000005, 6.614730000000001, 6.802389999999999, 6.60665, 6.93245, 6.7226300000000005, 7.37776, 6.37502, 6.57925, 7.46737, 6.639880000000001, 6.36303, 5.82895, 6.551080000000001, 6.78333, 6.563860000000001, 7.0076, 6.82437, 6.4677, 7.127689999999999, 6.62007, 7.288930000000001, 6.39693, 6.68461, 7.10988, 6.563860000000001, 6.354369999999999, 6.7546, 5.99146, 6.74052, 6.67203, 6.86485, 6.6107, 7.24423, 6.9256, 6.85118, 6.58617, 5.70378, 6.2146099999999995, 6.92363, 5.67675, 6.813439999999999, 6.62936, 5.7589, 6.93245, 6.78897, 6.74759, 7.00307, 6.3935900000000006, 6.802389999999999, 6.78672, 6.39693, 6.593039999999999, 6.259580000000001, 6.41999, 5.52146, 7.43838, 6.64509, 7.09008, 6.745239999999999, 6.80461, 6.08904, 6.65286, 6.802389999999999, 6.87626, 7.21082, 6.8426800000000005, 6.3207699999999996, 6.24611, 6.18826, 6.975410000000001, 6.30992, 6.83303, 7.61874, 6.48158, 6.44095, 6.907760000000001, 6.8384100000000005, 6.79122, 6.551080000000001, 6.6695, 6.813439999999999, 6.68461, 6.47389, 6.45362, 6.551080000000001, 5.8861, 6.98008, 6.983789999999999, 6.55962, 6.05912, 6.566669999999999, 6.829789999999999, 6.85646, 6.643789999999999, 6.77422, 6.25767, 6.966019999999999, 6.33328, 6.77422, 6.8384100000000005, 6.62007, 6.69332, 6.745239999999999, 5.8260000000000005, 6.07535, 6.47697, 7.24423, 7.12367, 6.18415, 6.44413, 6.72623, 6.2146099999999995, 6.47697, 6.907760000000001, 6.10925, 6.5903, 5.95584, 6.461469999999999, 6.697030000000001, 5.9839400000000005, 6.66568, 6.2146099999999995, 6.56526, 6.51471, 5.61677, 6.49375, 6.10925, 6.95655, 6.95655, 6.76273, 6.311730000000001, 7.00307, 6.68461, 6.95655, 7.17012, 6.86171, 6.49224, 6.8865300000000005, 6.602589999999999, 6.85646, 6.30992, 6.5467900000000006, 6.530880000000001, 6.46459, 6.7334, 5.87774, 6.35957, 6.768489999999999, 5.6733199999999995, 6.95845, 6.44572, 6.583410000000001, 6.91672, 7.027310000000001, 6.551080000000001, 6.84055, 6.71174, 6.787839999999999, 6.83087, 6.67203, 6.55393, 7.165489999999999, 6.47389, 6.35957, 6.07535, 6.30992, 6.43775, 6.77878, 6.966019999999999, 6.3716099999999996, 6.43133, 6.64898, 6.2146099999999995, 6.66058, 7.016610000000001, 7.09008, 5.66988, 6.53379, 6.84801, 5.99146, 7.07242, 6.23637, 7.346010000000001, 6.975410000000001, 6.79122, 6.719010000000001, 6.68336, 6.955589999999999, 5.78383, 5.66988, 7.0255399999999995, 6.3935900000000006, 6.807930000000001, 6.74288, 6.802389999999999, 6.354369999999999, 6.18208, 6.47697, 7.18463, 6.84588, 6.715380000000001, 6.04025, 5.84644, 6.507280000000001, 7.098380000000001, 6.633319999999999, 6.43455, 6.36475, 5.7462, 6.10925, 6.73459, 6.49224, 6.28413, 6.56948, 6.80461, 6.03787, 6.11589, 6.68461, 7.09008, 5.96615, 8.26873, 6.17794, 6.3935900000000006, 7.12287, 6.43775, 5.95324, 6.6796, 6.758089999999999, 5.70378, 6.84588, 6.21261, 6.10032, 6.802389999999999, 5.82305, 6.90575, 5.59842, 7.08171, 6.97354, 7.30653, 6.58617, 6.1944099999999995, 6.01616, 6.32794, 6.74052, 6.58617, 6.66568, 6.44572, 7.1309, 5.99146, 5.59842, 6.49224, 6.821110000000001, 6.56526, 6.813439999999999, 7.2717, 6.30262, 6.38351, 6.551080000000001, 5.45959, 6.43775, 6.90575, 6.61874, 6.06843, 6.1203, 6.7569300000000005, 5.7651900000000005, 6.938280000000001, 7.08255, 6.41346, 6.882439999999999, 6.90575, 6.51471, 6.5439099999999994, 7.35372, 7.135689999999999, 6.86693, 7.1309, 5.78383, 6.829789999999999, 6.65286, 6.7334, 7.2998, 6.65415, 6.90575, 6.39693, 6.770789999999999, 6.39693, 6.49072, 6.13123, 6.29711, 6.799060000000001, 6.272880000000001, 6.354369999999999, 6.49527, 6.57925, 6.697030000000001, 5.52146, 6.703189999999999, 6.752269999999999, 6.2146099999999995, 6.42162, 6.90575, 7.014810000000001, 6.62007, 6.58617, 6.51471, 5.96615, 6.52942, 6.56526, 7.09008, 6.49979, 6.769639999999999, 6.08677, 6.7369699999999995, 7.064760000000001, 7.11883, 6.51175, 6.57228, 6.907760000000001, 6.58617, 6.57925, 6.43294, 6.54247, 6.95655, 6.10925, 6.3243599999999995, 6.83518, 6.993930000000001, 6.984719999999999, 6.907760000000001, 6.77992, 6.07993, 6.72743, 6.33683, 6.70073, 7.0103100000000005, 6.551080000000001, 7.1309, 6.7334, 6.24028, 6.354369999999999, 6.85013, 6.39693, 6.461469999999999, 6.5395900000000005, 6.05209, 6.28413, 6.126869999999999, 7.12287, 6.39693, 6.49072, 6.47697, 6.802389999999999, 6.44572, 6.966019999999999, 6.62936, 6.28227, 6.9575, 6.461469999999999, 6.90575, 7.00307, 6.16331, 6.59578, 6.272880000000001, 6.2146099999999995, 6.64509, 6.58617, 7.00307, 6.95655, 6.62007, 7.09008, 6.98101, 6.81014, 6.51767, 6.85435, 6.9256, 6.6733, 7.5574699999999995, 6.30992, 6.47697, 6.8956800000000005, 6.56948, 6.33328, 6.802389999999999, 6.9707300000000005, 6.92363, 6.57368, 7.1155800000000005, 7.1309, 6.58617, 6.14633, 7.092569999999999, 6.86485, 7.200419999999999, 6.95655, 6.05209, 6.44254, 5.72031, 6.4599, 6.60394, 6.975410000000001, 6.39693, 7.400010000000001, 6.67708, 6.99942, 6.68461, 6.57925, 6.83518, 6.58617, 6.43615, 6.55962, 6.13123, 6.30992, 6.720219999999999, 6.66823, 6.703189999999999, 6.0822199999999995, 6.77878, 6.28972, 6.68461, 6.41182, 6.74993, 7.25347, 6.984719999999999, 6.90575, 6.937310000000001, 7.0775, 6.907760000000001, 6.01127, 6.802389999999999, 6.745239999999999, 6.80572, 6.2480400000000005, 6.31355, 6.49677, 6.633319999999999, 5.742999999999999, 6.39693, 6.47697, 6.47697, 6.30262, 6.745239999999999, 7.07412, 6.354369999999999, 6.10925, 7.42357, 6.768489999999999, 6.95655, 6.715380000000001, 6.27099, 6.829789999999999, 5.9839400000000005, 5.84354, 7.12287, 6.2146099999999995, 7.00307, 6.35611, 6.39693, 6.88755, 7.04316, 6.84162, 6.45362, 6.83518, 6.85646, 6.46925, 5.99146, 5.99146, 6.22654, 6.633319999999999, 6.77308, 7.1107, 6.967910000000001, 6.995769999999999, 6.66568, 6.594410000000001, 6.5439099999999994, 6.60665, 7.04752, 7.062189999999999, 7.04752, 6.937310000000001, 6.23441, 6.25767, 6.2146099999999995, 6.2146099999999995, 6.386880000000001, 6.44413, 6.10925, 6.90073, 6.745239999999999, 6.8773, 7.037030000000001, 6.40523, 6.17379, 6.685860000000001, 6.38856, 6.551080000000001, 6.9226399999999995, 5.72359, 6.882439999999999, 5.940169999999999, 6.9147300000000005, 6.563860000000001, 5.78996, 6.769639999999999, 6.73102, 7.06133, 6.68461, 6.2146099999999995, 6.912739999999999, 6.2634, 7.08171, 6.60935, 6.85646, 6.30992, 7.338889999999999, 6.22654, 6.311730000000001, 7.01392, 6.49224, 6.2205900000000005, 6.632000000000001, 6.944089999999999, 6.83518, 6.80128, 6.07993 ], "y0": "male" }, { "box": { "visible": false }, "fillcolor": "rgba(0, 0, 0, 0)", "hoverinfo": "x", "hoveron": "points", "jitter": 0.3, "legendgroup": "male&yes", "line": { "color": "rgba(0, 0, 0, 0)", "width": 0 }, "marker": { "color": "hsla(328, 70%, 70%,1)", "line": { "color": "hsla(328, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "hexagon" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": -0.6, "points": "all", "scalegroup": "male&yes", "showlegend": false, "side": "negative", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.99942, 5.99146, 7.09008, 5.61677, 6.646389999999999, 7.02643, 6.4552, 6.95845, 7.06902, 6.04025, 6.907760000000001, 6.745239999999999, 6.30079, 7.068169999999999, 6.07535, 6.7417, 6.47697, 6.77878, 7.06902, 6.57368, 6.829789999999999, 6.892639999999999, 7.0255399999999995, 6.551080000000001, 6.882439999999999, 6.48004, 6.60665, 6.10925, 6.94505, 6.9546399999999995, 7.17012, 6.49979, 6.5439099999999994, 6.39192, 6.30992, 7.116389999999999, 6.46925, 5.94803, 7.408530000000001, 7.0076, 6.88857, 7.041410000000001, 6.66696, 6.30992, 7.074960000000001, 7.5606, 5.99146, 6.16331, 5.94803, 6.43775, 6.39693, 6.813439999999999, 6.694560000000001, 6.29157, 6.16331, 6.88755, 6.95655, 6.28227, 6.05912, 6.602589999999999, 6.2146099999999995, 6.95655, 6.461469999999999, 7.09008, 6.663130000000001, 6.16121, 6.2146099999999995, 6.6995, 6.58617, 6.69084, 6.54965, 6.882439999999999, 5.70378, 6.7226300000000005, 6.802389999999999, 6.12249, 6.90575, 6.206580000000001, 5.99146, 6.682110000000001, 6.49677, 6.10925, 6.2146099999999995, 6.25575, 7.0884100000000005, 6.16331, 5.8999, 7.01392, 6.9363399999999995, 6.1070199999999994, 6.85646, 6.44572, 6.551080000000001, 7.111510000000001, 6.2146099999999995, 6.66696, 7.0076, 6.30992, 6.55393, 6.24611, 6.563860000000001, 6.60665, 6.507280000000001, 6.461469999999999, 6.62407, 6.2146099999999995, 6.51471, 5.96615, 6.51471, 6.551080000000001, 6.5820300000000005, 7.04752, 6.354369999999999, 6.59578, 6.5467900000000006, 6.551080000000001, 6.39693, 6.39693, 6.36647, 6.622739999999999, 5.7525699999999995, 6.15273, 7.04752, 5.52146, 6.770789999999999, 6.907760000000001, 6.05209, 7.045780000000001, 6.37673, 6.907760000000001, 7.03527, 6.765039999999999, 6.551080000000001, 6.907760000000001, 6.10925, 6.90575, 7.06987, 6.43775, 6.97261, 7.179310000000001, 6.7226300000000005, 6.82437, 6.715380000000001, 6.77878, 6.62007, 6.818919999999999, 6.68461, 6.57647, 6.43455, 5.89715, 6.556780000000001, 6.93925, 6.551080000000001, 6.69084, 6.05209, 6.87005, 6.65544, 6.42162, 5.9269300000000005, 6.317159999999999, 6.42972, 6.19236, 6.61607, 6.57368, 6.2634, 6.17379, 7.333019999999999, 6.37502, 6.16331, 6.317159999999999, 6.68461, 6.912739999999999, 6.86693, 6.62007, 6.49072, 6.9431199999999995, 6.90575, 6.10925, 6.7334, 6.91075, 6.6592899999999995, 5.8579300000000005, 6.16331, 7.441319999999999, 7.07834, 6.36475, 6.63857, 7.00307, 6.56948, 7.15383, 6.88755, 6.715380000000001, 7.37776, 5.8579300000000005, 6.2441699999999996, 6.90575, 6.272880000000001, 6.66568, 6.61338, 6.40688, 6.83518, 6.38856, 6.768489999999999, 6.34739, 7.00307, 6.66058, 6.58064, 6.64249, 6.715380000000001, 6.62007, 6.51471, 5.99146, 6.16331, 6.1203, 6.90575, 6.54822, 6.551080000000001, 5.8579300000000005, 5.70378, 6.87213, 5.89715, 6.30628, 6.708080000000001, 6.818919999999999, 7.041410000000001, 6.06611, 6.882439999999999, 6.37502, 5.70378, 7.03615, 5.66988, 6.907760000000001, 6.752269999999999, 6.48158, 6.47697, 6.802389999999999, 6.984719999999999, 5.9269300000000005, 6.385190000000001, 7.07242, 6.785589999999999, 6.403569999999999, 6.035480000000001, 7.338889999999999, 7.0255399999999995, 7.00307, 5.99146, 6.07993, 7.488289999999999, 6.51175, 5.7365699999999995, 5.7365699999999995, 6.697030000000001, 6.802389999999999, 6.68835, 5.8260000000000005, 7.20786, 6.3716099999999996, 6.47697, 6.802389999999999, 6.85646, 6.43775, 6.89163, 7.0121199999999995, 6.05209, 6.90575, 6.62007, 7.24423, 6.36819, 6.745239999999999, 6.19236, 6.39693, 6.85646, 6.7334, 5.9269300000000005, 5.98896, 6.55393, 7.02643, 6.6871100000000006, 6.42162, 6.06379, 6.93537, 7.09008, 6.802389999999999, 6.47697, 6.2634, 6.10032, 6.0282800000000005, 7.408530000000001, 5.99146, 6.2441699999999996, 6.00141, 6.9196800000000005, 6.90575, 6.646389999999999, 6.746410000000001, 6.30992, 6.42972, 6.18826, 6.5467900000000006, 6.7334, 6.07993, 6.90575, 7.04752, 6.66185, 7.23418, 6.54247, 6.753439999999999, 6.51471, 7.034389999999999, 7.262630000000001, 6.30992, 6.30445, 6.34564, 6.95655, 6.62007, 5.82895, 6.06146, 6.43775, 6.03787, 6.3952599999999995, 6.22654, 7.144410000000001, 5.70378, 6.5903, 7.1592899999999995, 6.72383, 6.7334, 6.20456, 6.10925, 6.715380000000001, 7.084230000000001, 6.97635, 6.685860000000001, 7.00307, 6.35089, 5.70378, 6.461469999999999, 6.53233, 6.39693, 6.19848, 6.22654, 6.10925, 7.08171, 7.1546199999999995, 7.1309, 6.745239999999999, 6.18415, 5.82895, 6.48158, 6.94022, 6.41836, 7.0193, 6.983789999999999, 6.633319999999999, 6.29157, 6.91672, 5.8141300000000005, 6.47697, 6.646389999999999, 6.84055, 6.834110000000001, 6.52942, 7.00307, 6.37502, 6.48158, 6.68461, 6.10925, 6.82437, 6.18415, 6.43775, 7.1107, 6.44572, 6.769639999999999, 6.818919999999999, 6.58617, 6.7093, 6.83195, 7.135689999999999, 8.51719, 6.68461, 5.99146, 5.99146, 6.39693, 6.927560000000001, 6.85751, 6.08677, 7.1309, 6.802389999999999, 6.30992, 6.36303, 5.8999, 6.47697, 6.55251, 6.29157, 5.59842, 6.62407, 5.9814099999999994, 6.76273, 7.06902, 6.80128, 7.313219999999999, 6.966019999999999, 6.39693, 6.293419999999999, 5.4161, 5.87493, 6.30992, 6.2146099999999995, 6.10925, 6.6783399999999995, 6.39693, 7.259119999999999, 6.47697, 6.2634, 6.47697, 6.90575, 6.815639999999999, 6.65028, 6.27099, 6.602589999999999, 6.58755, 5.45959, 6.85646, 5.8579300000000005, 5.78074, 6.2146099999999995, 5.84354, 6.58064, 6.2634, 7.00307, 7.21891, 6.45677, 6.950810000000001, 6.23048, 6.96035, 6.3716099999999996, 6.2146099999999995, 6.7334, 6.86066, 6.378430000000001, 6.48004, 7.00307, 6.47697, 7.4787300000000005, 6.2146099999999995, 6.802389999999999, 6.43775, 7.1025, 7.04752, 6.9256, 6.035480000000001, 6.01616, 6.27099, 6.354369999999999, 6.2634, 6.92166, 5.9269300000000005, 6.745239999999999, 6.24998, 6.893660000000001, 6.53669, 6.43615, 7.04752, 6.39693, 6.1334, 6.765039999999999, 5.99146, 6.43775, 6.81124, 6.62007, 7.03878, 7.0255399999999995, 6.83518, 6.53669, 6.52942, 6.54965, 5.8693, 6.0282800000000005, 6.30992, 6.23245, 6.31536, 7.486610000000001, 6.14204, 6.88755, 6.34564, 6.44413, 6.62007, 5.99146, 6.93245, 5.99146, 6.7093, 6.75926, 6.3315, 6.5439099999999994, 6.1717, 6.45362, 5.70378, 6.43775, 6.90575 ], "y0": "male" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(328, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(328, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "male&yes", "line": { "width": 0 }, "marker": { "color": "hsla(328, 50%, 50%,0.9)", "line": { "color": "hsla(328, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "hexagon" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": false, "scalegroup": "male&yes", "showlegend": false, "side": "negative", "span": [ 6.567149411163781, 6.601717753482179 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 6.99942, 5.99146, 7.09008, 5.61677, 6.646389999999999, 7.02643, 6.4552, 6.95845, 7.06902, 6.04025, 6.907760000000001, 6.745239999999999, 6.30079, 7.068169999999999, 6.07535, 6.7417, 6.47697, 6.77878, 7.06902, 6.57368, 6.829789999999999, 6.892639999999999, 7.0255399999999995, 6.551080000000001, 6.882439999999999, 6.48004, 6.60665, 6.10925, 6.94505, 6.9546399999999995, 7.17012, 6.49979, 6.5439099999999994, 6.39192, 6.30992, 7.116389999999999, 6.46925, 5.94803, 7.408530000000001, 7.0076, 6.88857, 7.041410000000001, 6.66696, 6.30992, 7.074960000000001, 7.5606, 5.99146, 6.16331, 5.94803, 6.43775, 6.39693, 6.813439999999999, 6.694560000000001, 6.29157, 6.16331, 6.88755, 6.95655, 6.28227, 6.05912, 6.602589999999999, 6.2146099999999995, 6.95655, 6.461469999999999, 7.09008, 6.663130000000001, 6.16121, 6.2146099999999995, 6.6995, 6.58617, 6.69084, 6.54965, 6.882439999999999, 5.70378, 6.7226300000000005, 6.802389999999999, 6.12249, 6.90575, 6.206580000000001, 5.99146, 6.682110000000001, 6.49677, 6.10925, 6.2146099999999995, 6.25575, 7.0884100000000005, 6.16331, 5.8999, 7.01392, 6.9363399999999995, 6.1070199999999994, 6.85646, 6.44572, 6.551080000000001, 7.111510000000001, 6.2146099999999995, 6.66696, 7.0076, 6.30992, 6.55393, 6.24611, 6.563860000000001, 6.60665, 6.507280000000001, 6.461469999999999, 6.62407, 6.2146099999999995, 6.51471, 5.96615, 6.51471, 6.551080000000001, 6.5820300000000005, 7.04752, 6.354369999999999, 6.59578, 6.5467900000000006, 6.551080000000001, 6.39693, 6.39693, 6.36647, 6.622739999999999, 5.7525699999999995, 6.15273, 7.04752, 5.52146, 6.770789999999999, 6.907760000000001, 6.05209, 7.045780000000001, 6.37673, 6.907760000000001, 7.03527, 6.765039999999999, 6.551080000000001, 6.907760000000001, 6.10925, 6.90575, 7.06987, 6.43775, 6.97261, 7.179310000000001, 6.7226300000000005, 6.82437, 6.715380000000001, 6.77878, 6.62007, 6.818919999999999, 6.68461, 6.57647, 6.43455, 5.89715, 6.556780000000001, 6.93925, 6.551080000000001, 6.69084, 6.05209, 6.87005, 6.65544, 6.42162, 5.9269300000000005, 6.317159999999999, 6.42972, 6.19236, 6.61607, 6.57368, 6.2634, 6.17379, 7.333019999999999, 6.37502, 6.16331, 6.317159999999999, 6.68461, 6.912739999999999, 6.86693, 6.62007, 6.49072, 6.9431199999999995, 6.90575, 6.10925, 6.7334, 6.91075, 6.6592899999999995, 5.8579300000000005, 6.16331, 7.441319999999999, 7.07834, 6.36475, 6.63857, 7.00307, 6.56948, 7.15383, 6.88755, 6.715380000000001, 7.37776, 5.8579300000000005, 6.2441699999999996, 6.90575, 6.272880000000001, 6.66568, 6.61338, 6.40688, 6.83518, 6.38856, 6.768489999999999, 6.34739, 7.00307, 6.66058, 6.58064, 6.64249, 6.715380000000001, 6.62007, 6.51471, 5.99146, 6.16331, 6.1203, 6.90575, 6.54822, 6.551080000000001, 5.8579300000000005, 5.70378, 6.87213, 5.89715, 6.30628, 6.708080000000001, 6.818919999999999, 7.041410000000001, 6.06611, 6.882439999999999, 6.37502, 5.70378, 7.03615, 5.66988, 6.907760000000001, 6.752269999999999, 6.48158, 6.47697, 6.802389999999999, 6.984719999999999, 5.9269300000000005, 6.385190000000001, 7.07242, 6.785589999999999, 6.403569999999999, 6.035480000000001, 7.338889999999999, 7.0255399999999995, 7.00307, 5.99146, 6.07993, 7.488289999999999, 6.51175, 5.7365699999999995, 5.7365699999999995, 6.697030000000001, 6.802389999999999, 6.68835, 5.8260000000000005, 7.20786, 6.3716099999999996, 6.47697, 6.802389999999999, 6.85646, 6.43775, 6.89163, 7.0121199999999995, 6.05209, 6.90575, 6.62007, 7.24423, 6.36819, 6.745239999999999, 6.19236, 6.39693, 6.85646, 6.7334, 5.9269300000000005, 5.98896, 6.55393, 7.02643, 6.6871100000000006, 6.42162, 6.06379, 6.93537, 7.09008, 6.802389999999999, 6.47697, 6.2634, 6.10032, 6.0282800000000005, 7.408530000000001, 5.99146, 6.2441699999999996, 6.00141, 6.9196800000000005, 6.90575, 6.646389999999999, 6.746410000000001, 6.30992, 6.42972, 6.18826, 6.5467900000000006, 6.7334, 6.07993, 6.90575, 7.04752, 6.66185, 7.23418, 6.54247, 6.753439999999999, 6.51471, 7.034389999999999, 7.262630000000001, 6.30992, 6.30445, 6.34564, 6.95655, 6.62007, 5.82895, 6.06146, 6.43775, 6.03787, 6.3952599999999995, 6.22654, 7.144410000000001, 5.70378, 6.5903, 7.1592899999999995, 6.72383, 6.7334, 6.20456, 6.10925, 6.715380000000001, 7.084230000000001, 6.97635, 6.685860000000001, 7.00307, 6.35089, 5.70378, 6.461469999999999, 6.53233, 6.39693, 6.19848, 6.22654, 6.10925, 7.08171, 7.1546199999999995, 7.1309, 6.745239999999999, 6.18415, 5.82895, 6.48158, 6.94022, 6.41836, 7.0193, 6.983789999999999, 6.633319999999999, 6.29157, 6.91672, 5.8141300000000005, 6.47697, 6.646389999999999, 6.84055, 6.834110000000001, 6.52942, 7.00307, 6.37502, 6.48158, 6.68461, 6.10925, 6.82437, 6.18415, 6.43775, 7.1107, 6.44572, 6.769639999999999, 6.818919999999999, 6.58617, 6.7093, 6.83195, 7.135689999999999, 8.51719, 6.68461, 5.99146, 5.99146, 6.39693, 6.927560000000001, 6.85751, 6.08677, 7.1309, 6.802389999999999, 6.30992, 6.36303, 5.8999, 6.47697, 6.55251, 6.29157, 5.59842, 6.62407, 5.9814099999999994, 6.76273, 7.06902, 6.80128, 7.313219999999999, 6.966019999999999, 6.39693, 6.293419999999999, 5.4161, 5.87493, 6.30992, 6.2146099999999995, 6.10925, 6.6783399999999995, 6.39693, 7.259119999999999, 6.47697, 6.2634, 6.47697, 6.90575, 6.815639999999999, 6.65028, 6.27099, 6.602589999999999, 6.58755, 5.45959, 6.85646, 5.8579300000000005, 5.78074, 6.2146099999999995, 5.84354, 6.58064, 6.2634, 7.00307, 7.21891, 6.45677, 6.950810000000001, 6.23048, 6.96035, 6.3716099999999996, 6.2146099999999995, 6.7334, 6.86066, 6.378430000000001, 6.48004, 7.00307, 6.47697, 7.4787300000000005, 6.2146099999999995, 6.802389999999999, 6.43775, 7.1025, 7.04752, 6.9256, 6.035480000000001, 6.01616, 6.27099, 6.354369999999999, 6.2634, 6.92166, 5.9269300000000005, 6.745239999999999, 6.24998, 6.893660000000001, 6.53669, 6.43615, 7.04752, 6.39693, 6.1334, 6.765039999999999, 5.99146, 6.43775, 6.81124, 6.62007, 7.03878, 7.0255399999999995, 6.83518, 6.53669, 6.52942, 6.54965, 5.8693, 6.0282800000000005, 6.30992, 6.23245, 6.31536, 7.486610000000001, 6.14204, 6.88755, 6.34564, 6.44413, 6.62007, 5.99146, 6.93245, 5.99146, 6.7093, 6.75926, 6.3315, 6.5439099999999994, 6.1717, 6.45362, 5.70378, 6.43775, 6.90575, 5.99146, 7.32647, 5.96101, 6.84055, 7.00307, 6.62007, 5.7525699999999995, 6.62407, 6.795710000000001, 7.212289999999999, 6.05209, 6.38856, 6.93925, 6.47697, 6.8773, 6.703189999999999, 6.658010000000001, 6.50429, 6.58617, 6.893660000000001, 6.51471, 6.06611, 6.68461, 6.65544, 7.475910000000001, 6.72743, 6.81124, 7.10906, 6.40523, 6.54822, 6.14204, 7.24423, 5.9269300000000005, 6.69084, 6.88755, 7.24423, 6.2634, 6.95655, 6.98008, 6.75577, 7.09008, 6.697030000000001, 5.78383, 6.79794, 6.2634, 6.61874, 6.64118, 6.98101, 6.90575, 5.90263, 6.17794, 6.96035, 6.35957, 6.829789999999999, 6.66568, 7.09008, 6.10925, 6.4552, 6.58617, 7.23778, 6.21261, 6.57925, 6.907760000000001, 6.802389999999999, 7.08171, 5.4161, 6.48311, 6.408530000000001, 7.17778, 6.95177, 6.785589999999999, 7.033510000000001, 6.23637, 6.530880000000001, 6.62007, 6.79122, 6.30992, 6.62007, 6.81014, 6.56526, 6.551080000000001, 6.9613, 6.7901, 6.95655, 7.18007, 5.99146, 5.99146, 6.4552, 6.59987, 6.68461, 6.317159999999999, 5.8861, 5.99146, 6.6871100000000006, 6.802389999999999, 5.93754, 6.802389999999999, 6.52356, 6.55251, 6.56526, 6.72383, 6.68461, 6.94698, 5.96615, 6.41673, 6.29157, 6.90375, 6.1944099999999995, 6.745239999999999, 6.13773, 6.858569999999999, 6.2804, 6.77422, 6.893660000000001, 6.86693, 7.408530000000001, 6.633319999999999, 6.68461, 7.185389999999999, 7.26543, 6.10925, 6.60123, 6.77194, 6.3243599999999995, 6.55393, 6.10925, 6.9613, 6.907760000000001, 7.1309, 6.354369999999999, 5.4161, 6.55536, 6.02102, 6.7334, 6.53669, 6.95655, 6.551080000000001, 6.16331, 6.3421199999999995, 6.9196800000000005, 6.51471, 6.551080000000001, 6.86693, 6.35611, 6.34914, 7.17012, 6.802389999999999, 6.253830000000001, 6.90575, 6.48464, 6.49224, 6.82763, 6.2634, 7.20786, 7.02997, 6.89467, 7.17012, 6.33328, 5.84354, 6.85646, 6.912739999999999, 6.97635, 6.2653, 6.59715, 7.16627, 6.19644, 6.39693, 5.9814099999999994, 6.6958, 7.279319999999999, 6.68461, 6.2146099999999995, 6.90575, 7.08339, 7.11233, 6.912739999999999, 6.8254600000000005, 6.62007, 6.33328, 6.15698, 6.893660000000001, 6.30262, 6.56808, 6.36303, 6.752269999999999, 6.02102, 6.633319999999999, 6.2634, 7.183110000000001, 6.6174, 6.45047, 6.9707300000000005, 6.49979, 6.68461, 6.68461, 6.975410000000001, 6.2672, 6.59987, 6.7334, 6.16331, 6.2146099999999995, 6.95655, 6.614730000000001, 6.72743, 6.17379, 6.6280399999999995, 6.83518, 6.63857, 6.17794, 6.30992, 7.07834, 7.346010000000001, 6.938280000000001, 6.715380000000001, 6.58617, 5.59842, 6.3935900000000006, 6.49072, 6.721430000000001, 6.59715, 6.00389, 6.9828600000000005, 7.04752, 6.23441, 6.551080000000001, 6.14633, 6.563860000000001, 6.3243599999999995, 6.6796, 7.062189999999999, 6.34564, 6.561030000000001, 6.17379, 7.06987, 6.87626, 6.505780000000001, 6.745239999999999, 6.966019999999999, 6.68461, 6.575080000000001, 6.40192, 6.56808, 6.7334, 6.30992, 7.0775, 6.6796, 6.745239999999999, 6.47697, 6.47697, 6.61874, 6.30079, 6.27099, 6.34564, 6.551080000000001, 6.551080000000001, 6.23441, 6.52209, 6.739339999999999, 6.16331, 6.68461, 6.715380000000001, 6.86171, 5.70378, 6.551080000000001, 6.33683, 7.0579, 5.4161, 5.5797300000000005, 5.9269300000000005, 6.463030000000001, 6.86797, 6.95655, 6.60665, 6.748760000000001, 6.77992, 6.42162, 6.8844899999999996, 6.52209, 6.90575, 6.907760000000001, 6.817830000000001, 7.323169999999999, 6.41017, 6.787839999999999, 7.0967199999999995, 5.9269300000000005, 6.55393, 6.17379, 7.00307, 7.31122, 6.31355, 6.44572, 6.59578, 6.47697, 6.62007, 6.69332, 6.7511, 7.09008, 5.8579300000000005, 6.907760000000001, 5.65249, 7.1333, 7.200419999999999, 7.1309, 6.461469999999999, 6.85646, 7.03527, 6.19848, 6.62007, 6.907760000000001, 6.05209, 7.1452, 6.02102, 5.82895, 6.33683, 6.04025, 6.2146099999999995, 6.64249, 6.6567300000000005, 6.813439999999999, 6.53669, 6.90575, 6.47697, 7.21524, 6.57925, 6.8426800000000005, 6.907760000000001, 6.90575, 6.424869999999999, 6.65415, 6.88346, 6.53669, 6.3207699999999996, 6.95655, 5.95584, 6.715380000000001, 6.44254, 6.8966899999999995, 6.23245, 6.95655, 6.813439999999999, 6.752269999999999, 6.86066, 6.7334, 6.318969999999999, 6.79122, 5.95324, 6.54103, 6.24222, 6.68461, 6.9177100000000005, 5.9814099999999994, 6.44254, 7.451239999999999, 6.51471, 6.76273, 6.885510000000001, 6.966019999999999, 6.633319999999999, 5.940169999999999, 6.32615, 6.508769999999999, 6.551080000000001, 7.31986, 6.21661, 7.17012, 5.99146, 6.3081, 6.311730000000001, 6.39693, 6.95655, 6.48311, 6.39693, 6.60665, 6.70441, 6.51471, 6.77992, 6.68461, 6.29157, 6.40523, 6.18826, 6.83518, 7.1624, 6.813439999999999, 6.907760000000001, 6.68461, 6.53814, 6.2146099999999995, 6.36647, 6.47697, 6.60665, 6.68461, 7.2724, 6.90575, 5.7462, 7.20786, 6.551080000000001, 6.58064, 6.17379, 5.70378, 6.34564, 6.65028, 7.03878, 6.10032, 6.58617, 6.68461, 6.551080000000001, 6.87626, 5.16479, 6.551080000000001, 5.2983199999999995, 6.60665, 6.907760000000001, 6.18415, 7.43838, 6.66441, 6.551080000000001, 5.99146, 6.41182, 6.43775, 6.10925, 6.43775, 6.4599, 5.99146, 6.5439099999999994, 6.6515699999999995, 7.04752, 6.44572, 6.3243599999999995, 6.41346, 6.551080000000001, 6.62007, 6.5439099999999994, 6.38012, 6.4151, 6.52209, 6.29157, 6.2146099999999995, 6.73102, 7.1309, 6.10925, 6.04025, 7.0396600000000005, 7.09589, 7.10003, 6.73102, 6.87523, 6.90575, 7.173960000000001, 6.47389, 6.99026, 7.0884100000000005, 6.206580000000001, 6.56526, 6.53379, 6.46614, 6.61338, 6.85646, 6.47389, 6.10925, 6.2441699999999996, 6.42162, 6.716589999999999, 6.58617, 6.95655, 6.29157, 6.46459, 6.95177, 6.58617, 6.50129, 6.2952699999999995, 6.85646, 6.15698, 6.15273, 7.01392, 6.62007, 6.68461, 6.50429, 5.78383, 6.54535, 6.3716099999999996, 6.62007, 6.703189999999999, 6.9622399999999995, 6.802389999999999, 6.43935, 7.044910000000001, 6.42162, 6.802389999999999, 7.127689999999999, 6.45677, 6.59987, 6.715380000000001, 7.00307, 6.937310000000001, 6.2106, 6.0845, 6.16331, 6.2146099999999995, 6.74406, 6.73221, 6.13123, 6.37673, 6.62007, 5.82895, 5.8999, 6.2146099999999995, 6.2146099999999995, 6.62007, 6.61338, 7.00307, 6.35611, 6.8977, 7.59287, 7.393260000000001, 6.834110000000001, 6.802389999999999, 6.224559999999999, 6.90575, 6.16542, 6.62007, 6.95655, 6.796819999999999, 6.66568, 6.813439999999999, 6.43615, 6.77194, 6.90575, 6.66823, 6.62007, 6.551080000000001, 5.78383, 6.753439999999999, 6.967910000000001, 6.745239999999999, 6.51471, 6.86485, 6.41346, 6.7093, 6.22654, 6.16331, 6.86171, 6.58617, 7.1309, 6.77422, 6.39693, 6.58617, 6.551080000000001, 6.2146099999999995, 6.99485, 6.45047, 6.66185, 6.94119, 6.90575, 7.21891, 6.10925, 7.09008, 6.354369999999999, 7.279319999999999, 6.354369999999999, 7.183110000000001, 6.62007, 6.795710000000001, 6.16121, 5.6801699999999995, 6.65286, 6.715380000000001, 6.78333, 6.67582, 6.907760000000001, 6.53233, 6.882439999999999, 7.0255399999999995, 6.23048, 6.715380000000001, 6.4892, 6.63726, 6.12249, 6.3613, 6.05209, 6.697030000000001, 6.8742, 6.08677, 6.907760000000001, 5.70378, 6.715380000000001, 6.2146099999999995, 6.3699, 6.54822, 6.802389999999999, 6.7226300000000005, 6.51026, 6.50429, 6.58617, 6.8977, 5.9135, 6.17379, 6.93537, 6.2146099999999995, 5.82895, 6.7569300000000005, 7.2998, 6.17794, 6.68461, 6.62007, 6.45205, 6.802389999999999, 6.32794, 6.68461, 6.714169999999999, 6.43775, 5.4161, 7.00307, 6.7569300000000005, 6.48004, 6.889589999999999, 6.59167, 6.33328, 6.33328, 6.551080000000001, 6.802389999999999, 7.3908, 6.9256, 6.95655, 6.13123, 7.06561, 6.566669999999999, 6.9966800000000005, 6.43775, 6.424869999999999, 6.646389999999999, 6.2146099999999995, 6.802389999999999, 6.90575, 6.9613, 5.70378, 6.78672, 7.09008, 6.602589999999999, 6.42162, 6.44572, 6.20456, 6.57925, 6.38012, 5.76832, 6.507280000000001, 6.2634, 6.2146099999999995, 6.50129, 6.10925, 7.196689999999999, 6.818919999999999, 6.72623, 6.7569300000000005, 6.62936, 6.31355, 6.62007, 6.2653, 6.7334, 6.95655, 6.47697, 6.3716099999999996, 6.52209, 7.106610000000001, 6.40523, 6.69084, 6.6567300000000005, 6.697030000000001, 6.22654, 6.907760000000001, 5.76832, 6.47697, 5.89715, 6.745239999999999, 6.43775, 7.029089999999999, 6.95177, 6.87626, 6.318969999999999, 6.570880000000001, 7.09008, 6.7511, 7.034389999999999, 5.70378, 6.55393, 6.72743, 6.05209, 6.90575, 6.551080000000001, 6.907760000000001, 6.785589999999999, 6.39693, 6.697030000000001, 6.814539999999999, 6.639880000000001, 6.62007, 6.77194, 6.551080000000001, 6.802389999999999, 6.57228, 6.47697, 6.907760000000001, 6.68461, 6.45834, 6.556780000000001, 6.5582, 7.1309, 5.4161, 6.90575, 7.18992, 6.6107, 6.79794, 6.16331, 6.6592899999999995, 7.0483899999999995, 6.598510000000001, 5.5797300000000005, 6.09131, 7.106610000000001, 7.22548, 6.48768, 6.87213, 6.23245, 6.39693, 6.4677, 7.35244, 7.05272, 6.33328, 6.802389999999999, 6.10925, 6.77422, 6.30992, 6.802389999999999, 7.16858, 6.802389999999999, 6.58617, 6.551080000000001, 7.1507, 6.852239999999999, 6.70564, 6.11147, 6.95655, 6.34564, 7.03878, 7.400010000000001, 5.8579300000000005, 7.37588, 6.83195, 7.00307, 6.84162, 6.354369999999999, 6.93342, 6.608, 6.85646, 6.056780000000001, 6.6120399999999995, 6.63726, 6.55393, 6.7511, 6.907760000000001, 6.05912, 6.54535, 7.00307, 6.51471, 6.66823, 5.52146, 6.551080000000001, 6.44572, 7.00307, 6.253830000000001, 5.99146, 6.907760000000001, 6.3315, 6.39693, 6.09582, 6.07535, 6.8426800000000005, 7.0518600000000005, 6.993930000000001, 6.79122, 6.7511, 6.78897, 7.259119999999999, 6.90575, 6.563860000000001, 6.30992, 6.66696, 6.47235, 6.56244, 6.80351, 6.92658, 6.4892, 6.28227, 7.06902, 6.08677, 5.958419999999999, 5.68698, 6.62007, 6.33683, 6.753439999999999, 6.52209, 6.8200199999999995, 6.81014, 6.49072, 6.745239999999999, 6.11147, 7.181589999999999, 6.29157, 7.2998, 5.86079, 6.51619, 6.937310000000001, 5.83188, 6.9256, 6.10925, 6.39693, 6.82437, 6.802389999999999, 7.239210000000001, 6.62407, 6.551080000000001, 6.41673, 6.42162, 6.715380000000001, 6.85646, 5.8579300000000005, 6.07993, 6.30992, 6.69084, 6.70564, 5.7462, 6.16752, 6.24222, 6.93049, 6.59715, 6.45047, 6.68461, 6.62007, 6.6592899999999995, 7.04752, 6.30992, 6.6346300000000005, 6.59167, 6.1181, 6.41836, 6.54103, 6.51471, 5.7462, 6.39693, 6.94698, 6.96885, 6.907760000000001, 7.00307, 7.173189999999999, 6.77422, 6.815639999999999, 6.43294, 6.88857, 6.90575, 7.226210000000001, 5.70378, 6.05912, 6.507280000000001, 6.47697, 6.2146099999999995, 6.57368, 6.53669, 5.76832, 6.2146099999999995, 6.8426800000000005, 7.520230000000001, 5.5797300000000005, 6.51323, 7.1082399999999994, 6.5582, 7.17012, 6.6958, 6.39693, 6.95177, 7.09008, 6.5582, 6.9613, 6.715380000000001, 5.70378, 6.3935900000000006, 6.86171, 6.83087, 6.6783399999999995, 6.54535, 6.593039999999999, 6.44572, 6.3716099999999996, 7.00307, 6.126869999999999, 6.50129, 6.8773, 6.56526, 6.354369999999999, 6.96885, 6.575080000000001, 6.42811, 6.78672, 6.829789999999999, 7.00307, 6.1944099999999995, 6.551080000000001, 6.907760000000001, 6.2146099999999995, 6.139880000000001, 7.1293, 6.89467, 6.621410000000001, 6.5467900000000006, 6.34388, 6.39024, 6.424869999999999, 6.49979, 6.7901, 6.4488900000000005, 6.614730000000001, 6.802389999999999, 6.60665, 6.93245, 6.7226300000000005, 7.37776, 6.37502, 6.57925, 7.46737, 6.639880000000001, 6.36303, 5.82895, 6.551080000000001, 6.78333, 6.563860000000001, 7.0076, 6.82437, 6.4677, 7.127689999999999, 6.62007, 7.288930000000001, 6.39693, 6.68461, 7.10988, 6.563860000000001, 6.354369999999999, 6.7546, 5.99146, 6.74052, 6.67203, 6.86485, 6.6107, 7.24423, 6.9256, 6.85118, 6.58617, 5.70378, 6.2146099999999995, 6.92363, 5.67675, 6.813439999999999, 6.62936, 5.7589, 6.93245, 6.78897, 6.74759, 7.00307, 6.3935900000000006, 6.802389999999999, 6.78672, 6.39693, 6.593039999999999, 6.259580000000001, 6.41999, 5.52146, 7.43838, 6.64509, 7.09008, 6.745239999999999, 6.80461, 6.08904, 6.65286, 6.802389999999999, 6.87626, 7.21082, 6.8426800000000005, 6.3207699999999996, 6.24611, 6.18826, 6.975410000000001, 6.30992, 6.83303, 7.61874, 6.48158, 6.44095, 6.907760000000001, 6.8384100000000005, 6.79122, 6.551080000000001, 6.6695, 6.813439999999999, 6.68461, 6.47389, 6.45362, 6.551080000000001, 5.8861, 6.98008, 6.983789999999999, 6.55962, 6.05912, 6.566669999999999, 6.829789999999999, 6.85646, 6.643789999999999, 6.77422, 6.25767, 6.966019999999999, 6.33328, 6.77422, 6.8384100000000005, 6.62007, 6.69332, 6.745239999999999, 5.8260000000000005, 6.07535, 6.47697, 7.24423, 7.12367, 6.18415, 6.44413, 6.72623, 6.2146099999999995, 6.47697, 6.907760000000001, 6.10925, 6.5903, 5.95584, 6.461469999999999, 6.697030000000001, 5.9839400000000005, 6.66568, 6.2146099999999995, 6.56526, 6.51471, 5.61677, 6.49375, 6.10925, 6.95655, 6.95655, 6.76273, 6.311730000000001, 7.00307, 6.68461, 6.95655, 7.17012, 6.86171, 6.49224, 6.8865300000000005, 6.602589999999999, 6.85646, 6.30992, 6.5467900000000006, 6.530880000000001, 6.46459, 6.7334, 5.87774, 6.35957, 6.768489999999999, 5.6733199999999995, 6.95845, 6.44572, 6.583410000000001, 6.91672, 7.027310000000001, 6.551080000000001, 6.84055, 6.71174, 6.787839999999999, 6.83087, 6.67203, 6.55393, 7.165489999999999, 6.47389, 6.35957, 6.07535, 6.30992, 6.43775, 6.77878, 6.966019999999999, 6.3716099999999996, 6.43133, 6.64898, 6.2146099999999995, 6.66058, 7.016610000000001, 7.09008, 5.66988, 6.53379, 6.84801, 5.99146, 7.07242, 6.23637, 7.346010000000001, 6.975410000000001, 6.79122, 6.719010000000001, 6.68336, 6.955589999999999, 5.78383, 5.66988, 7.0255399999999995, 6.3935900000000006, 6.807930000000001, 6.74288, 6.802389999999999, 6.354369999999999, 6.18208, 6.47697, 7.18463, 6.84588, 6.715380000000001, 6.04025, 5.84644, 6.507280000000001, 7.098380000000001, 6.633319999999999, 6.43455, 6.36475, 5.7462, 6.10925, 6.73459, 6.49224, 6.28413, 6.56948, 6.80461, 6.03787, 6.11589, 6.68461, 7.09008, 5.96615, 8.26873, 6.17794, 6.3935900000000006, 7.12287, 6.43775, 5.95324, 6.6796, 6.758089999999999, 5.70378, 6.84588, 6.21261, 6.10032, 6.802389999999999, 5.82305, 6.90575, 5.59842, 7.08171, 6.97354, 7.30653, 6.58617, 6.1944099999999995, 6.01616, 6.32794, 6.74052, 6.58617, 6.66568, 6.44572, 7.1309, 5.99146, 5.59842, 6.49224, 6.821110000000001, 6.56526, 6.813439999999999, 7.2717, 6.30262, 6.38351, 6.551080000000001, 5.45959, 6.43775, 6.90575, 6.61874, 6.06843, 6.1203, 6.7569300000000005, 5.7651900000000005, 6.938280000000001, 7.08255, 6.41346, 6.882439999999999, 6.90575, 6.51471, 6.5439099999999994, 7.35372, 7.135689999999999, 6.86693, 7.1309, 5.78383, 6.829789999999999, 6.65286, 6.7334, 7.2998, 6.65415, 6.90575, 6.39693, 6.770789999999999, 6.39693, 6.49072, 6.13123, 6.29711, 6.799060000000001, 6.272880000000001, 6.354369999999999, 6.49527, 6.57925, 6.697030000000001, 5.52146, 6.703189999999999, 6.752269999999999, 6.2146099999999995, 6.42162, 6.90575, 7.014810000000001, 6.62007, 6.58617, 6.51471, 5.96615, 6.52942, 6.56526, 7.09008, 6.49979, 6.769639999999999, 6.08677, 6.7369699999999995, 7.064760000000001, 7.11883, 6.51175, 6.57228, 6.907760000000001, 6.58617, 6.57925, 6.43294, 6.54247, 6.95655, 6.10925, 6.3243599999999995, 6.83518, 6.993930000000001, 6.984719999999999, 6.907760000000001, 6.77992, 6.07993, 6.72743, 6.33683, 6.70073, 7.0103100000000005, 6.551080000000001, 7.1309, 6.7334, 6.24028, 6.354369999999999, 6.85013, 6.39693, 6.461469999999999, 6.5395900000000005, 6.05209, 6.28413, 6.126869999999999, 7.12287, 6.39693, 6.49072, 6.47697, 6.802389999999999, 6.44572, 6.966019999999999, 6.62936, 6.28227, 6.9575, 6.461469999999999, 6.90575, 7.00307, 6.16331, 6.59578, 6.272880000000001, 6.2146099999999995, 6.64509, 6.58617, 7.00307, 6.95655, 6.62007, 7.09008, 6.98101, 6.81014, 6.51767, 6.85435, 6.9256, 6.6733, 7.5574699999999995, 6.30992, 6.47697, 6.8956800000000005, 6.56948, 6.33328, 6.802389999999999, 6.9707300000000005, 6.92363, 6.57368, 7.1155800000000005, 7.1309, 6.58617, 6.14633, 7.092569999999999, 6.86485, 7.200419999999999, 6.95655, 6.05209, 6.44254, 5.72031, 6.4599, 6.60394, 6.975410000000001, 6.39693, 7.400010000000001, 6.67708, 6.99942, 6.68461, 6.57925, 6.83518, 6.58617, 6.43615, 6.55962, 6.13123, 6.30992, 6.720219999999999, 6.66823, 6.703189999999999, 6.0822199999999995, 6.77878, 6.28972, 6.68461, 6.41182, 6.74993, 7.25347, 6.984719999999999, 6.90575, 6.937310000000001, 7.0775, 6.907760000000001, 6.01127, 6.802389999999999, 6.745239999999999, 6.80572, 6.2480400000000005, 6.31355, 6.49677, 6.633319999999999, 5.742999999999999, 6.39693, 6.47697, 6.47697, 6.30262, 6.745239999999999, 7.07412, 6.354369999999999, 6.10925, 7.42357, 6.768489999999999, 6.95655, 6.715380000000001, 6.27099, 6.829789999999999, 5.9839400000000005, 5.84354, 7.12287, 6.2146099999999995, 7.00307, 6.35611, 6.39693, 6.88755, 7.04316, 6.84162, 6.45362, 6.83518, 6.85646, 6.46925, 5.99146, 5.99146, 6.22654, 6.633319999999999, 6.77308, 7.1107, 6.967910000000001, 6.995769999999999, 6.66568, 6.594410000000001, 6.5439099999999994, 6.60665, 7.04752, 7.062189999999999, 7.04752, 6.937310000000001, 6.23441, 6.25767, 6.2146099999999995, 6.2146099999999995, 6.386880000000001, 6.44413, 6.10925, 6.90073, 6.745239999999999, 6.8773, 7.037030000000001, 6.40523, 6.17379, 6.685860000000001, 6.38856, 6.551080000000001, 6.9226399999999995, 5.72359, 6.882439999999999, 5.940169999999999, 6.9147300000000005, 6.563860000000001, 5.78996, 6.769639999999999, 6.73102, 7.06133, 6.68461, 6.2146099999999995, 6.912739999999999, 6.2634, 7.08171, 6.60935, 6.85646, 6.30992, 7.338889999999999, 6.22654, 6.311730000000001, 7.01392, 6.49224, 6.2205900000000005, 6.632000000000001, 6.944089999999999, 6.83518, 6.80128, 6.07993 ], "y0": "male" } ], "layout": { "legend": { "tracegroupgap": 0, "x": 1.1, "xanchor": "right", "y": 1.1 }, "margin": { "b": 40, "l": 80, "r": 10, "t": 10 }, "paper_bgcolor": "#eeeeff", "plot_bgcolor": "#ffffff", "showlegend": true, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "barpolar" } ], "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" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "colorscale": { "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" ] ], "sequential": [ [ 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, "#f0f921" ] ], "sequentialminus": [ [ 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, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "text": "Gender & BlueCollar ~ Wage", "x": 0.5 }, "violingap": 0, "violingroupgap": 0, "violinmode": "overlay", "xaxis": { "showgrid": false, "showline": true, "showticklabels": true, "title": { "text": "Wage (log)" }, "visible": true, "zeroline": true }, "yaxis": { "showgrid": true, "showline": true, "showticklabels": true, "side": "left", "title": { "text": "Gender & BlueCollar" }, "visible": true, "zeroline": true } } }, "text/html": [ "
\n", " \n", " \n", "
\n", " \n", "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "#superimposed plot for combination of two X variables\n", "traces,layout=cmplot(train,xcol=[\"sex\",\"bluecol\"],xsuperimposed=True,ycol=\"lwage\",\n", " ycolorgroups=False, pointsoverdens=True,markoutliers=False,pointshapes=[\"hexagon\"],pointsmaxdisplayed=500)\n", "layout[\"legend_tracegroupgap\"]=0\n", "layout[\"title_text\"]=\"Gender & BlueCollar ~ Wage\"\n", "layout[\"xaxis_title\"]=\"Wage (log)\"\n", "layout[\"yaxis_title\"]=\"Gender & BlueCollar\"\n", "go.Figure(traces,layout)" ] }, { "cell_type": "code", "execution_count": 15, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "fillcolor": "hsla(55, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(55, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "9-13&no", "line": { "color": "hsla(55, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(55, 70%, 70%,1)", "line": { "color": "hsla(55, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "hexagon" }, "meanline": { "color": "hsla(55, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage 9-13&no", "orientation": "h", "pointpos": -0.6, "points": false, "scalegroup": "9-13&no", "scalemode": "count", "showlegend": true, "side": "negative", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 7.09008, 6.55536, 7.32975, 6.39693, 7.06902, 6.04025, 6.745239999999999, 6.30079, 6.07535, 6.47697, 6.50279, 7.06902, 6.829789999999999, 6.551080000000001, 6.882439999999999, 6.682110000000001, 7.00307, 6.10925, 6.9546399999999995, 6.51471, 6.46925, 6.66696, 6.62007, 6.17379, 6.16331, 6.2146099999999995, 6.43775, 6.39693, 6.30992, 6.602589999999999, 6.461469999999999, 6.60665, 6.745239999999999, 6.551080000000001, 6.48158, 6.5582, 6.16121, 6.2146099999999995, 5.8999, 6.58617, 6.48311, 6.882439999999999, 6.663130000000001, 5.70378, 6.90575, 5.99146, 7.408530000000001, 6.2146099999999995, 7.0884100000000005, 5.8999, 5.73334, 6.1070199999999994, 6.85646, 5.99645, 6.2146099999999995, 6.30992, 6.24611, 6.43775, 7.346010000000001, 6.2146099999999995, 6.51471, 5.96615, 6.354369999999999, 6.39693, 6.36647, 5.463830000000001, 6.05209, 6.54535, 6.745239999999999, 5.43808, 6.87213, 6.551080000000001, 7.226210000000001, 7.495539999999999, 6.9256, 7.313219999999999, 7.173189999999999, 6.62007, 7.313219999999999, 5.89715, 6.2146099999999995, 6.7093, 6.62007, 6.4552, 6.77422, 5.5606800000000005, 6.39693, 6.77422, 7.408530000000001, 5.90808, 6.39693, 6.68461, 5.0814, 4.605169999999999, 6.7334, 7.34278, 6.802389999999999, 6.90575, 6.9256, 5.8579300000000005, 7.441319999999999, 6.63857, 7.475910000000001, 6.62007, 6.7901, 6.56948, 6.86485, 7.064760000000001, 6.715380000000001, 5.8579300000000005, 6.2441699999999996, 6.66568, 7.04752, 6.73815, 5.8579300000000005, 6.34739, 6.30079, 6.62007, 6.51471, 6.65286, 6.16331, 7.1309, 5.93489, 6.1203, 7.50108, 6.39693, 6.19644, 6.551080000000001, 5.8579300000000005, 5.70378, 6.318969999999999, 6.39693, 6.708080000000001, 6.52942, 7.041410000000001, 6.4677, 6.06611, 6.94986, 6.37502, 5.66988, 6.2480400000000005, 6.385190000000001, 7.1309, 6.807930000000001, 6.785589999999999, 6.035480000000001, 6.05209, 7.0255399999999995, 5.99146, 7.488289999999999, 6.51175, 5.7365699999999995, 5.8999, 6.90575, 6.697030000000001, 6.36475, 5.8260000000000005, 6.3716099999999996, 6.43775, 6.77422, 6.05209, 6.697030000000001, 6.19236, 5.9269300000000005, 6.20456, 6.55393, 6.5903, 6.19236, 6.06379, 6.2634, 6.10032, 6.0282800000000005, 6.6174, 6.1070199999999994, 6.00141, 6.39693, 5.9269300000000005, 6.30992, 6.42972, 6.07993, 6.90575, 6.66185, 7.23418, 6.47697, 6.30992, 6.95655, 6.49224, 6.62007, 5.82895, 6.39693, 6.03787, 7.6009, 7.1592899999999995, 6.53233, 6.20456, 7.20786, 6.35089, 5.70378, 6.53233, 6.16331, 6.19848, 6.22654, 7.1309, 6.3716099999999996, 6.18415, 5.82895, 6.20456, 7.0193, 6.10925, 6.646389999999999, 6.56244, 6.834110000000001, 6.52942, 6.23245, 6.68461, 6.30992, 6.10925, 6.43775, 6.43775, 7.1107, 6.44572, 6.93245, 6.58617, 6.44572, 6.83195, 6.28972, 7.1082399999999994, 8.51719, 5.99146, 6.927560000000001, 6.08677, 6.17587, 6.2860000000000005, 6.828710000000001, 6.47697, 5.59842, 6.5582, 6.76273, 7.06902, 7.313219999999999, 6.966019999999999, 5.95324, 6.39693, 6.65286, 5.9454199999999995, 6.293419999999999, 5.87493, 6.30992, 6.28972, 6.2146099999999995, 6.39693, 7.259119999999999, 6.47697, 6.2952699999999995, 6.47697, 6.815639999999999, 6.05209, 6.802389999999999, 6.47697, 6.77422, 6.621410000000001, 6.882439999999999, 5.78074, 6.2146099999999995, 5.84354, 6.2634, 7.00307, 6.45677, 5.97126, 6.02345, 6.2146099999999995, 6.2146099999999995, 6.43775, 5.70378, 5.883319999999999, 6.9256, 6.01616, 6.2146099999999995, 6.85646, 6.354369999999999, 6.745239999999999, 6.24998, 7.04752, 6.39693, 5.59842, 6.95655, 5.99146, 6.966019999999999, 6.62007, 7.27031, 7.03878, 6.901739999999999, 6.83518, 6.53669, 6.715380000000001, 6.30992, 5.8579300000000005, 6.8426800000000005, 6.14204, 5.99146, 6.75926, 6.77422, 5.70378, 7.46737, 6.694560000000001, 6.907760000000001, 6.17379, 5.81711, 6.802389999999999, 6.30079, 7.32647, 6.7901, 5.96101, 5.7525699999999995, 6.07993, 7.212289999999999, 6.38856, 6.47697, 6.47697, 6.58617, 5.74939, 6.893660000000001, 6.68461, 6.64118, 6.33328, 6.72743, 7.20786, 5.99645, 6.40523, 6.77422, 6.386880000000001, 7.24423, 5.93225, 5.9269300000000005, 5.8141300000000005, 6.47697, 6.2634, 7.313219999999999, 5.86647, 6.98008, 6.566669999999999, 7.09008, 6.697030000000001, 5.78383, 6.61874, 5.90263, 6.96035, 6.6515699999999995, 6.35957, 6.10925, 7.1309, 6.4552, 6.66568, 6.88755, 6.10925, 6.43775, 6.802389999999999, 6.6592899999999995, 6.408530000000001, 6.2634, 6.785589999999999, 7.1107, 6.57647, 6.90575, 6.30992, 5.76832, 6.9613, 6.43775, 5.940169999999999, 6.35957, 6.2146099999999995, 6.90575, 6.1025599999999995, 7.37776, 7.46737, 5.99146, 6.18826, 6.15698, 7.346010000000001, 6.68461, 7.14913, 7.27031, 5.8861, 5.99146, 6.62007, 6.802389999999999, 6.56526, 6.561030000000001, 6.907760000000001, 5.96615, 6.41673, 7.00307, 6.90375, 5.958419999999999, 6.1944099999999995, 6.47697, 5.8579300000000005, 6.13773, 6.2804, 7.26543, 6.10925, 6.77194, 6.715380000000001, 6.6567300000000005, 6.90575, 6.90975, 6.354369999999999, 6.95655, 6.551080000000001, 6.16331, 6.9196800000000005, 6.65286, 6.51471, 6.39693, 6.35611, 7.17012, 6.802389999999999, 6.90575, 6.26149, 6.90575, 7.20786, 6.31355, 5.84354, 6.29157, 6.912739999999999, 6.80017, 7.0884100000000005, 5.50126, 7.136480000000001, 6.2634, 5.96615, 6.9622399999999995, 6.4708, 6.8254600000000005, 7.24423, 6.62007, 6.15698, 6.30262, 5.8999, 7.20786, 6.95655, 6.02102, 6.2634, 7.183110000000001, 6.33328, 6.6174, 6.3952599999999995, 6.6567300000000005, 7.22766, 6.68461, 7.1309, 6.2672, 6.16331, 7.09008, 6.72743, 7.03615, 6.6280399999999995, 6.30992, 6.57228, 5.59842, 6.49072, 6.59715, 6.9828600000000005, 6.29157, 6.85646, 6.86901, 7.04752, 6.23441, 6.14633, 7.062189999999999, 6.966019999999999, 7.1309, 6.70073, 7.0775, 6.6592899999999995, 6.745239999999999, 7.0255399999999995, 6.27099, 6.90575, 6.551080000000001, 7.49332, 6.39192, 6.551080000000001, 6.9187, 7.02376, 5.8141300000000005, 5.4161, 5.5797300000000005, 6.90575, 5.9269300000000005, 5.87212, 6.95655, 6.60665, 5.52146, 7.00307, 6.907760000000001, 6.23441, 6.463030000000001, 6.907760000000001, 7.323169999999999, 6.65286, 7.31122, 6.31355, 5.8141300000000005, 6.47697, 6.77422, 7.09008, 7.183110000000001, 7.25488, 6.96035, 6.06379, 6.19848, 6.62007, 5.8861, 5.8861, 5.82895, 6.04025, 6.2146099999999995, 6.813439999999999, 6.53669, 6.8426800000000005, 6.907760000000001, 7.106610000000001, 5.52146, 6.86693, 6.88346, 7.64779, 5.95584, 6.715380000000001, 6.61338, 6.23245, 5.52146, 6.06379, 6.2205900000000005, 6.7334, 6.79122, 6.0822199999999995, 5.95324, 7.06048, 6.9177100000000005, 7.1309, 7.451239999999999, 7.198180000000001, 6.51471, 6.85646, 6.3952599999999995, 6.73102, 6.633319999999999, 6.551080000000001, 7.0884100000000005, 6.39693, 6.829789999999999, 6.90575, 5.99146, 6.57786, 6.90575, 6.3952599999999995, 6.48311, 6.70441, 5.99146, 6.40523, 7.24423, 6.83518, 6.907760000000001, 6.53814, 6.29895, 5.8579300000000005, 6.745239999999999, 6.36303, 6.17379, 5.93225, 6.34564, 6.49072, 7.20786, 5.78383, 6.551080000000001, 6.87626, 5.16479, 6.58893, 6.60665, 7.64969, 5.99146, 5.82008, 6.43775, 6.4599, 6.551080000000001, 6.551080000000001, 6.802389999999999, 6.57925, 6.29157, 6.39693, 6.59715, 5.01064, 6.2146099999999995, 6.97167, 6.75926, 6.73102, 6.66823, 7.37776, 7.09589, 6.90575, 6.46614, 6.10925, 6.59987, 6.58617, 6.29157, 6.8426800000000005, 6.95177, 6.85646, 6.15698, 6.30992, 6.15273, 7.01392, 6.3716099999999996, 6.62007, 6.703189999999999, 6.53233, 6.58617, 6.602589999999999, 6.9622399999999995, 6.424869999999999, 6.38012, 6.802389999999999, 6.802389999999999, 6.937310000000001, 6.16331, 6.2146099999999995, 6.2441699999999996, 6.2634, 5.72031, 5.82895, 5.8999, 6.2146099999999995, 6.62007, 7.06305, 6.07993, 6.551080000000001, 6.17587, 7.1309, 6.07993, 6.224559999999999, 6.62007, 6.43775, 6.813439999999999, 7.196689999999999, 6.551080000000001, 7.0255399999999995, 6.551080000000001, 7.37588, 6.86485, 6.22654, 5.70378, 6.06146, 7.05359, 6.58617, 6.58617, 6.2146099999999995, 6.10925, 6.2146099999999995, 6.354369999999999, 6.83303, 6.551080000000001, 6.77422, 6.1136800000000004, 7.00307, 7.1309, 6.32794, 5.6801699999999995, 6.65286, 6.907760000000001, 6.682110000000001, 6.19236, 6.53233, 6.882439999999999, 7.0255399999999995, 6.23048, 7.872839999999999, 6.4892, 6.63726, 6.05209, 6.697030000000001, 5.70378, 6.2146099999999995, 6.77992, 6.07993, 6.47697, 8.047189999999999, 6.2146099999999995, 6.507280000000001, 5.82895, 7.034389999999999, 6.68461, 6.10925, 6.43775, 7.00307, 6.38856, 6.889589999999999, 6.57786, 6.53669, 6.802389999999999, 6.13123, 5.99894, 6.424869999999999, 6.646389999999999, 5.39363, 5.96615, 6.2146099999999995, 5.70378, 6.65286, 6.44572, 6.551080000000001, 6.53669, 5.76832, 7.2100800000000005, 6.507280000000001, 6.45362, 6.765039999999999, 6.802389999999999, 7.38647, 6.10925, 6.14419, 6.818919999999999, 6.72623, 6.7569300000000005, 6.692080000000001, 5.9839400000000005, 6.31355, 7.495539999999999, 6.7334, 6.224559999999999, 6.90575, 6.69084, 6.3716099999999996, 6.07304, 6.2146099999999995, 5.627619999999999, 6.68461, 6.22654, 5.95324, 6.907760000000001, 6.43775, 6.813439999999999, 6.47697, 5.8579300000000005, 7.1309, 6.745239999999999, 6.768489999999999, 5.97889, 7.029089999999999, 6.62007, 7.24423, 6.34388, 6.49072, 6.1070199999999994, 6.30992, 6.05209, 6.697030000000001, 6.23637, 6.62007, 6.551080000000001, 5.8999, 5.52146, 6.57228, 6.47697, 6.47697, 6.68461, 6.556780000000001, 6.36303, 6.90575, 6.79794, 6.633319999999999, 6.90575, 6.87213, 7.183110000000001, 6.802389999999999, 6.10925, 6.30992, 7.16858, 6.58617, 6.551080000000001, 6.551080000000001, 6.0330900000000005, 7.1507, 6.70564, 6.90575, 6.95655, 6.8977, 6.79122, 5.8861, 5.8579300000000005, 7.37588, 6.61607, 5.82305, 6.5395900000000005, 6.6120399999999995, 6.63726, 6.739339999999999, 6.47697, 6.907760000000001, 6.66823, 5.52146, 7.00307, 5.39363, 6.253830000000001, 5.99146, 6.907760000000001, 6.39693, 5.43808, 6.09582, 5.95324, 6.07535, 6.993930000000001, 6.7511, 7.259119999999999, 6.2146099999999995, 6.2804, 7.06048, 6.30992, 6.84375, 7.0282, 6.39693, 6.28227, 5.68698, 6.06611, 6.73102, 6.2146099999999995, 6.802389999999999, 6.745239999999999, 6.11147, 6.551080000000001, 7.2998, 6.51619, 6.937310000000001, 6.3952599999999995, 6.62407, 6.551080000000001, 6.84588, 6.42162, 6.715380000000001, 5.8579300000000005, 6.07993, 6.30992, 5.7462, 6.16752, 6.24222, 7.03527, 7.04752, 6.93049, 6.33328, 6.68461, 6.62007, 6.30992, 6.1181, 6.41836, 6.90575, 5.7462, 6.39693, 6.96885, 6.77422, 6.90575, 7.226210000000001, 5.76832, 5.70378, 6.05912, 6.68461, 6.2146099999999995, 6.907760000000001, 6.68461, 6.745239999999999, 6.39859, 5.76832, 6.2146099999999995, 7.520230000000001, 5.5797300000000005, 6.51323, 7.393260000000001, 6.5582, 6.9613, 6.86171, 6.83087, 6.02345, 5.9269300000000005, 7.04752, 6.72743, 6.354369999999999, 6.42811, 6.752269999999999, 6.829789999999999, 6.1944099999999995, 6.2146099999999995, 6.68461, 6.2634, 6.139880000000001, 7.1293, 5.5797300000000005, 7.183110000000001, 6.07993, 6.39024, 6.68461, 6.4488900000000005, 6.802389999999999, 6.6592899999999995, 6.30992, 6.7226300000000005, 5.4161, 6.36303, 5.82895, 6.59715, 6.62007, 6.47697, 5.50126, 6.62007, 6.39693, 5.99146, 6.86485, 5.82895, 6.85118, 5.70378, 6.2146099999999995, 6.62936, 6.50279, 6.78897, 6.74759, 6.39693, 6.41999, 5.52146, 7.43838, 7.09008, 6.39693, 6.77422, 6.1944099999999995, 6.65286, 7.1507, 7.07834, 7.61874, 5.99146, 6.907760000000001, 5.01064, 6.551080000000001, 6.68461, 6.45362, 7.313219999999999, 6.98008, 6.68461, 6.85646, 6.25767, 6.966019999999999, 6.33328, 6.2146099999999995, 5.65249, 6.920669999999999, 7.0396600000000005, 5.8260000000000005, 6.07535, 6.96885, 6.47697, 7.24423, 6.60394, 6.18415, 6.68461, 6.2146099999999995, 6.907760000000001, 6.4552, 6.66568, 6.51471, 5.61677, 7.06048, 6.10925, 6.95655, 6.76273, 6.317159999999999, 6.29157, 6.68461, 7.0255399999999995, 6.86171, 7.495539999999999, 6.90575, 6.35611, 5.8579300000000005, 6.30992, 6.05209, 5.6733199999999995, 6.44572, 6.583410000000001, 6.46925, 6.84055, 7.136480000000001, 6.787839999999999, 6.74288, 7.0934, 7.0255399999999995, 6.30992, 6.43775, 6.83518, 6.95273, 6.43133, 6.68461, 6.64898, 6.967910000000001, 6.68461, 6.85646, 6.53379, 6.23637, 6.719010000000001, 6.90575, 6.65286, 5.78383, 5.66988, 7.0255399999999995, 7.04752, 6.802389999999999, 6.2146099999999995, 6.59578, 6.715380000000001, 5.84644, 6.2146099999999995, 5.76205, 5.68698, 6.43455, 6.51915, 5.7462, 6.10925, 6.49224, 5.7365699999999995, 7.313219999999999, 6.11589, 6.2146099999999995, 7.09008, 5.96615, 8.26873, 6.3935900000000006, 7.251339999999999, 5.7365699999999995, 6.2441699999999996, 5.59842, 6.9594, 6.58617, 7.18007, 6.47697, 6.95655, 6.58617, 5.61313, 6.44572, 5.99146, 6.18826, 5.59842, 6.23441, 6.56526, 5.7462, 6.056780000000001, 6.38351, 6.90575, 6.53233, 6.1203, 6.06843, 6.7569300000000005, 6.41346, 6.51471, 7.2998, 6.5439099999999994, 5.7365699999999995, 5.76832, 6.86693, 7.1309, 6.65286, 5.5797300000000005, 7.2998, 6.9256, 6.90575, 6.39693, 6.49072, 6.02345, 6.23832, 6.354369999999999, 6.49527, 5.52146, 6.65286, 6.752269999999999, 6.2146099999999995, 6.90575, 6.9256, 5.96615, 6.52942, 6.19644, 6.813439999999999, 5.8141300000000005, 6.49979, 6.08677, 6.14633, 7.195189999999999, 6.07993, 6.01616, 6.70073, 6.3716099999999996, 7.1309, 6.354369999999999, 7.00307, 6.39693, 6.768489999999999, 6.126869999999999, 7.21744, 6.49072, 6.47697, 6.05209, 6.721430000000001, 6.813439999999999, 6.28227, 7.3696, 6.461469999999999, 7.20786, 6.5903, 7.00307, 6.16331, 6.59578, 6.2146099999999995, 6.43615, 6.64509, 6.58617, 6.19032, 6.62007, 6.39693, 6.83303, 6.98101, 6.6871100000000006, 7.09008, 6.14204, 6.907760000000001, 6.13773, 6.30992, 6.47697, 6.33328, 6.9707300000000005, 6.2146099999999995, 6.58617, 6.14633, 6.11147, 5.66988, 6.60394, 6.975410000000001, 6.39693, 7.400010000000001, 5.90808, 6.07993, 7.1082399999999994, 6.83518, 6.58617, 6.07993, 7.09008, 6.30992, 6.643789999999999, 5.66988, 6.703189999999999, 6.06611, 6.57786, 6.28972, 6.41182, 7.25347, 6.984719999999999, 6.907760000000001, 6.3315, 6.01127, 6.58617, 6.90575, 6.80572, 6.68461, 6.907760000000001, 5.742999999999999, 6.745239999999999, 6.9828600000000005, 6.253830000000001, 7.02465, 5.8861, 6.32794, 6.28786, 5.9839400000000005, 5.84354, 6.05209, 5.93225, 6.17379, 6.39693, 7.04316, 5.273, 6.85646, 6.46925, 5.99146, 5.99146, 6.22654, 6.95655, 6.5439099999999994, 6.62007, 7.0884100000000005, 6.23441, 6.47697, 6.05209, 6.2146099999999995, 6.2146099999999995, 6.10925, 6.90073, 6.8773, 7.037030000000001, 6.36303, 6.40523, 6.30992, 6.551080000000001, 7.45298, 5.72359, 6.39693, 6.551080000000001, 5.78996, 6.73102, 6.2146099999999995, 6.41017, 7.08171, 6.30992, 6.39693, 7.338889999999999, 6.26149, 6.3081 ], "y0": "9-13" }, { "box": { "visible": false }, "fillcolor": "rgba(0, 0, 0, 0)", "hoverinfo": "x", "hoveron": "points", "jitter": 0.3, "legendgroup": "9-13&no", "line": { "color": "rgba(0, 0, 0, 0)", "width": 0 }, "marker": { "color": "hsla(55, 70%, 70%,1)", "line": { "color": "hsla(55, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "hexagon" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": -0.6, "points": "all", "scalegroup": "9-13&no", "showlegend": false, "side": "negative", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 7.09008, 6.55536, 7.32975, 6.39693, 7.06902, 6.04025, 6.745239999999999, 6.30079, 6.07535, 6.47697, 6.50279, 7.06902, 6.829789999999999, 6.551080000000001, 6.882439999999999, 6.682110000000001, 7.00307, 6.10925, 6.9546399999999995, 6.51471, 6.46925, 6.66696, 6.62007, 6.17379, 6.16331, 6.2146099999999995, 6.43775, 6.39693, 6.30992, 6.602589999999999, 6.461469999999999, 6.60665, 6.745239999999999, 6.551080000000001, 6.48158, 6.5582, 6.16121, 6.2146099999999995, 5.8999, 6.58617, 6.48311, 6.882439999999999, 6.663130000000001, 5.70378, 6.90575, 5.99146, 7.408530000000001, 6.2146099999999995, 7.0884100000000005, 5.8999, 5.73334, 6.1070199999999994, 6.85646, 5.99645, 6.2146099999999995, 6.30992, 6.24611, 6.43775, 7.346010000000001, 6.2146099999999995, 6.51471, 5.96615, 6.354369999999999, 6.39693, 6.36647, 5.463830000000001, 6.05209, 6.54535, 6.745239999999999, 5.43808, 6.87213, 6.551080000000001, 7.226210000000001, 7.495539999999999, 6.9256, 7.313219999999999, 7.173189999999999, 6.62007, 7.313219999999999, 5.89715, 6.2146099999999995, 6.7093, 6.62007, 6.4552, 6.77422, 5.5606800000000005, 6.39693, 6.77422, 7.408530000000001, 5.90808, 6.39693, 6.68461, 5.0814, 4.605169999999999, 6.7334, 7.34278, 6.802389999999999, 6.90575, 6.9256, 5.8579300000000005 ], "y0": "9-13" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(55, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(55, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "9-13&no", "line": { "width": 0 }, "marker": { "color": "hsla(55, 50%, 50%,0.9)", "line": { "color": "hsla(55, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "hexagon" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": false, "scalegroup": "9-13&no", "showlegend": false, "side": "negative", "span": [ 6.481879605096187, 6.533470001783474 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 7.09008, 6.55536, 7.32975, 6.39693, 7.06902, 6.04025, 6.745239999999999, 6.30079, 6.07535, 6.47697, 6.50279, 7.06902, 6.829789999999999, 6.551080000000001, 6.882439999999999, 6.682110000000001, 7.00307, 6.10925, 6.9546399999999995, 6.51471, 6.46925, 6.66696, 6.62007, 6.17379, 6.16331, 6.2146099999999995, 6.43775, 6.39693, 6.30992, 6.602589999999999, 6.461469999999999, 6.60665, 6.745239999999999, 6.551080000000001, 6.48158, 6.5582, 6.16121, 6.2146099999999995, 5.8999, 6.58617, 6.48311, 6.882439999999999, 6.663130000000001, 5.70378, 6.90575, 5.99146, 7.408530000000001, 6.2146099999999995, 7.0884100000000005, 5.8999, 5.73334, 6.1070199999999994, 6.85646, 5.99645, 6.2146099999999995, 6.30992, 6.24611, 6.43775, 7.346010000000001, 6.2146099999999995, 6.51471, 5.96615, 6.354369999999999, 6.39693, 6.36647, 5.463830000000001, 6.05209, 6.54535, 6.745239999999999, 5.43808, 6.87213, 6.551080000000001, 7.226210000000001, 7.495539999999999, 6.9256, 7.313219999999999, 7.173189999999999, 6.62007, 7.313219999999999, 5.89715, 6.2146099999999995, 6.7093, 6.62007, 6.4552, 6.77422, 5.5606800000000005, 6.39693, 6.77422, 7.408530000000001, 5.90808, 6.39693, 6.68461, 5.0814, 4.605169999999999, 6.7334, 7.34278, 6.802389999999999, 6.90575, 6.9256, 5.8579300000000005, 7.441319999999999, 6.63857, 7.475910000000001, 6.62007, 6.7901, 6.56948, 6.86485, 7.064760000000001, 6.715380000000001, 5.8579300000000005, 6.2441699999999996, 6.66568, 7.04752, 6.73815, 5.8579300000000005, 6.34739, 6.30079, 6.62007, 6.51471, 6.65286, 6.16331, 7.1309, 5.93489, 6.1203, 7.50108, 6.39693, 6.19644, 6.551080000000001, 5.8579300000000005, 5.70378, 6.318969999999999, 6.39693, 6.708080000000001, 6.52942, 7.041410000000001, 6.4677, 6.06611, 6.94986, 6.37502, 5.66988, 6.2480400000000005, 6.385190000000001, 7.1309, 6.807930000000001, 6.785589999999999, 6.035480000000001, 6.05209, 7.0255399999999995, 5.99146, 7.488289999999999, 6.51175, 5.7365699999999995, 5.8999, 6.90575, 6.697030000000001, 6.36475, 5.8260000000000005, 6.3716099999999996, 6.43775, 6.77422, 6.05209, 6.697030000000001, 6.19236, 5.9269300000000005, 6.20456, 6.55393, 6.5903, 6.19236, 6.06379, 6.2634, 6.10032, 6.0282800000000005, 6.6174, 6.1070199999999994, 6.00141, 6.39693, 5.9269300000000005, 6.30992, 6.42972, 6.07993, 6.90575, 6.66185, 7.23418, 6.47697, 6.30992, 6.95655, 6.49224, 6.62007, 5.82895, 6.39693, 6.03787, 7.6009, 7.1592899999999995, 6.53233, 6.20456, 7.20786, 6.35089, 5.70378, 6.53233, 6.16331, 6.19848, 6.22654, 7.1309, 6.3716099999999996, 6.18415, 5.82895, 6.20456, 7.0193, 6.10925, 6.646389999999999, 6.56244, 6.834110000000001, 6.52942, 6.23245, 6.68461, 6.30992, 6.10925, 6.43775, 6.43775, 7.1107, 6.44572, 6.93245, 6.58617, 6.44572, 6.83195, 6.28972, 7.1082399999999994, 8.51719, 5.99146, 6.927560000000001, 6.08677, 6.17587, 6.2860000000000005, 6.828710000000001, 6.47697, 5.59842, 6.5582, 6.76273, 7.06902, 7.313219999999999, 6.966019999999999, 5.95324, 6.39693, 6.65286, 5.9454199999999995, 6.293419999999999, 5.87493, 6.30992, 6.28972, 6.2146099999999995, 6.39693, 7.259119999999999, 6.47697, 6.2952699999999995, 6.47697, 6.815639999999999, 6.05209, 6.802389999999999, 6.47697, 6.77422, 6.621410000000001, 6.882439999999999, 5.78074, 6.2146099999999995, 5.84354, 6.2634, 7.00307, 6.45677, 5.97126, 6.02345, 6.2146099999999995, 6.2146099999999995, 6.43775, 5.70378, 5.883319999999999, 6.9256, 6.01616, 6.2146099999999995, 6.85646, 6.354369999999999, 6.745239999999999, 6.24998, 7.04752, 6.39693, 5.59842, 6.95655, 5.99146, 6.966019999999999, 6.62007, 7.27031, 7.03878, 6.901739999999999, 6.83518, 6.53669, 6.715380000000001, 6.30992, 5.8579300000000005, 6.8426800000000005, 6.14204, 5.99146, 6.75926, 6.77422, 5.70378, 7.46737, 6.694560000000001, 6.907760000000001, 6.17379, 5.81711, 6.802389999999999, 6.30079, 7.32647, 6.7901, 5.96101, 5.7525699999999995, 6.07993, 7.212289999999999, 6.38856, 6.47697, 6.47697, 6.58617, 5.74939, 6.893660000000001, 6.68461, 6.64118, 6.33328, 6.72743, 7.20786, 5.99645, 6.40523, 6.77422, 6.386880000000001, 7.24423, 5.93225, 5.9269300000000005, 5.8141300000000005, 6.47697, 6.2634, 7.313219999999999, 5.86647, 6.98008, 6.566669999999999, 7.09008, 6.697030000000001, 5.78383, 6.61874, 5.90263, 6.96035, 6.6515699999999995, 6.35957, 6.10925, 7.1309, 6.4552, 6.66568, 6.88755, 6.10925, 6.43775, 6.802389999999999, 6.6592899999999995, 6.408530000000001, 6.2634, 6.785589999999999, 7.1107, 6.57647, 6.90575, 6.30992, 5.76832, 6.9613, 6.43775, 5.940169999999999, 6.35957, 6.2146099999999995, 6.90575, 6.1025599999999995, 7.37776, 7.46737, 5.99146, 6.18826, 6.15698, 7.346010000000001, 6.68461, 7.14913, 7.27031, 5.8861, 5.99146, 6.62007, 6.802389999999999, 6.56526, 6.561030000000001, 6.907760000000001, 5.96615, 6.41673, 7.00307, 6.90375, 5.958419999999999, 6.1944099999999995, 6.47697, 5.8579300000000005, 6.13773, 6.2804, 7.26543, 6.10925, 6.77194, 6.715380000000001, 6.6567300000000005, 6.90575, 6.90975, 6.354369999999999, 6.95655, 6.551080000000001, 6.16331, 6.9196800000000005, 6.65286, 6.51471, 6.39693, 6.35611, 7.17012, 6.802389999999999, 6.90575, 6.26149, 6.90575, 7.20786, 6.31355, 5.84354, 6.29157, 6.912739999999999, 6.80017, 7.0884100000000005, 5.50126, 7.136480000000001, 6.2634, 5.96615, 6.9622399999999995, 6.4708, 6.8254600000000005, 7.24423, 6.62007, 6.15698, 6.30262, 5.8999, 7.20786, 6.95655, 6.02102, 6.2634, 7.183110000000001, 6.33328, 6.6174, 6.3952599999999995, 6.6567300000000005, 7.22766, 6.68461, 7.1309, 6.2672, 6.16331, 7.09008, 6.72743, 7.03615, 6.6280399999999995, 6.30992, 6.57228, 5.59842, 6.49072, 6.59715, 6.9828600000000005, 6.29157, 6.85646, 6.86901, 7.04752, 6.23441, 6.14633, 7.062189999999999, 6.966019999999999, 7.1309, 6.70073, 7.0775, 6.6592899999999995, 6.745239999999999, 7.0255399999999995, 6.27099, 6.90575, 6.551080000000001, 7.49332, 6.39192, 6.551080000000001, 6.9187, 7.02376, 5.8141300000000005, 5.4161, 5.5797300000000005, 6.90575, 5.9269300000000005, 5.87212, 6.95655, 6.60665, 5.52146, 7.00307, 6.907760000000001, 6.23441, 6.463030000000001, 6.907760000000001, 7.323169999999999, 6.65286, 7.31122, 6.31355, 5.8141300000000005, 6.47697, 6.77422, 7.09008, 7.183110000000001, 7.25488, 6.96035, 6.06379, 6.19848, 6.62007, 5.8861, 5.8861, 5.82895, 6.04025, 6.2146099999999995, 6.813439999999999, 6.53669, 6.8426800000000005, 6.907760000000001, 7.106610000000001, 5.52146, 6.86693, 6.88346, 7.64779, 5.95584, 6.715380000000001, 6.61338, 6.23245, 5.52146, 6.06379, 6.2205900000000005, 6.7334, 6.79122, 6.0822199999999995, 5.95324, 7.06048, 6.9177100000000005, 7.1309, 7.451239999999999, 7.198180000000001, 6.51471, 6.85646, 6.3952599999999995, 6.73102, 6.633319999999999, 6.551080000000001, 7.0884100000000005, 6.39693, 6.829789999999999, 6.90575, 5.99146, 6.57786, 6.90575, 6.3952599999999995, 6.48311, 6.70441, 5.99146, 6.40523, 7.24423, 6.83518, 6.907760000000001, 6.53814, 6.29895, 5.8579300000000005, 6.745239999999999, 6.36303, 6.17379, 5.93225, 6.34564, 6.49072, 7.20786, 5.78383, 6.551080000000001, 6.87626, 5.16479, 6.58893, 6.60665, 7.64969, 5.99146, 5.82008, 6.43775, 6.4599, 6.551080000000001, 6.551080000000001, 6.802389999999999, 6.57925, 6.29157, 6.39693, 6.59715, 5.01064, 6.2146099999999995, 6.97167, 6.75926, 6.73102, 6.66823, 7.37776, 7.09589, 6.90575, 6.46614, 6.10925, 6.59987, 6.58617, 6.29157, 6.8426800000000005, 6.95177, 6.85646, 6.15698, 6.30992, 6.15273, 7.01392, 6.3716099999999996, 6.62007, 6.703189999999999, 6.53233, 6.58617, 6.602589999999999, 6.9622399999999995, 6.424869999999999, 6.38012, 6.802389999999999, 6.802389999999999, 6.937310000000001, 6.16331, 6.2146099999999995, 6.2441699999999996, 6.2634, 5.72031, 5.82895, 5.8999, 6.2146099999999995, 6.62007, 7.06305, 6.07993, 6.551080000000001, 6.17587, 7.1309, 6.07993, 6.224559999999999, 6.62007, 6.43775, 6.813439999999999, 7.196689999999999, 6.551080000000001, 7.0255399999999995, 6.551080000000001, 7.37588, 6.86485, 6.22654, 5.70378, 6.06146, 7.05359, 6.58617, 6.58617, 6.2146099999999995, 6.10925, 6.2146099999999995, 6.354369999999999, 6.83303, 6.551080000000001, 6.77422, 6.1136800000000004, 7.00307, 7.1309, 6.32794, 5.6801699999999995, 6.65286, 6.907760000000001, 6.682110000000001, 6.19236, 6.53233, 6.882439999999999, 7.0255399999999995, 6.23048, 7.872839999999999, 6.4892, 6.63726, 6.05209, 6.697030000000001, 5.70378, 6.2146099999999995, 6.77992, 6.07993, 6.47697, 8.047189999999999, 6.2146099999999995, 6.507280000000001, 5.82895, 7.034389999999999, 6.68461, 6.10925, 6.43775, 7.00307, 6.38856, 6.889589999999999, 6.57786, 6.53669, 6.802389999999999, 6.13123, 5.99894, 6.424869999999999, 6.646389999999999, 5.39363, 5.96615, 6.2146099999999995, 5.70378, 6.65286, 6.44572, 6.551080000000001, 6.53669, 5.76832, 7.2100800000000005, 6.507280000000001, 6.45362, 6.765039999999999, 6.802389999999999, 7.38647, 6.10925, 6.14419, 6.818919999999999, 6.72623, 6.7569300000000005, 6.692080000000001, 5.9839400000000005, 6.31355, 7.495539999999999, 6.7334, 6.224559999999999, 6.90575, 6.69084, 6.3716099999999996, 6.07304, 6.2146099999999995, 5.627619999999999, 6.68461, 6.22654, 5.95324, 6.907760000000001, 6.43775, 6.813439999999999, 6.47697, 5.8579300000000005, 7.1309, 6.745239999999999, 6.768489999999999, 5.97889, 7.029089999999999, 6.62007, 7.24423, 6.34388, 6.49072, 6.1070199999999994, 6.30992, 6.05209, 6.697030000000001, 6.23637, 6.62007, 6.551080000000001, 5.8999, 5.52146, 6.57228, 6.47697, 6.47697, 6.68461, 6.556780000000001, 6.36303, 6.90575, 6.79794, 6.633319999999999, 6.90575, 6.87213, 7.183110000000001, 6.802389999999999, 6.10925, 6.30992, 7.16858, 6.58617, 6.551080000000001, 6.551080000000001, 6.0330900000000005, 7.1507, 6.70564, 6.90575, 6.95655, 6.8977, 6.79122, 5.8861, 5.8579300000000005, 7.37588, 6.61607, 5.82305, 6.5395900000000005, 6.6120399999999995, 6.63726, 6.739339999999999, 6.47697, 6.907760000000001, 6.66823, 5.52146, 7.00307, 5.39363, 6.253830000000001, 5.99146, 6.907760000000001, 6.39693, 5.43808, 6.09582, 5.95324, 6.07535, 6.993930000000001, 6.7511, 7.259119999999999, 6.2146099999999995, 6.2804, 7.06048, 6.30992, 6.84375, 7.0282, 6.39693, 6.28227, 5.68698, 6.06611, 6.73102, 6.2146099999999995, 6.802389999999999, 6.745239999999999, 6.11147, 6.551080000000001, 7.2998, 6.51619, 6.937310000000001, 6.3952599999999995, 6.62407, 6.551080000000001, 6.84588, 6.42162, 6.715380000000001, 5.8579300000000005, 6.07993, 6.30992, 5.7462, 6.16752, 6.24222, 7.03527, 7.04752, 6.93049, 6.33328, 6.68461, 6.62007, 6.30992, 6.1181, 6.41836, 6.90575, 5.7462, 6.39693, 6.96885, 6.77422, 6.90575, 7.226210000000001, 5.76832, 5.70378, 6.05912, 6.68461, 6.2146099999999995, 6.907760000000001, 6.68461, 6.745239999999999, 6.39859, 5.76832, 6.2146099999999995, 7.520230000000001, 5.5797300000000005, 6.51323, 7.393260000000001, 6.5582, 6.9613, 6.86171, 6.83087, 6.02345, 5.9269300000000005, 7.04752, 6.72743, 6.354369999999999, 6.42811, 6.752269999999999, 6.829789999999999, 6.1944099999999995, 6.2146099999999995, 6.68461, 6.2634, 6.139880000000001, 7.1293, 5.5797300000000005, 7.183110000000001, 6.07993, 6.39024, 6.68461, 6.4488900000000005, 6.802389999999999, 6.6592899999999995, 6.30992, 6.7226300000000005, 5.4161, 6.36303, 5.82895, 6.59715, 6.62007, 6.47697, 5.50126, 6.62007, 6.39693, 5.99146, 6.86485, 5.82895, 6.85118, 5.70378, 6.2146099999999995, 6.62936, 6.50279, 6.78897, 6.74759, 6.39693, 6.41999, 5.52146, 7.43838, 7.09008, 6.39693, 6.77422, 6.1944099999999995, 6.65286, 7.1507, 7.07834, 7.61874, 5.99146, 6.907760000000001, 5.01064, 6.551080000000001, 6.68461, 6.45362, 7.313219999999999, 6.98008, 6.68461, 6.85646, 6.25767, 6.966019999999999, 6.33328, 6.2146099999999995, 5.65249, 6.920669999999999, 7.0396600000000005, 5.8260000000000005, 6.07535, 6.96885, 6.47697, 7.24423, 6.60394, 6.18415, 6.68461, 6.2146099999999995, 6.907760000000001, 6.4552, 6.66568, 6.51471, 5.61677, 7.06048, 6.10925, 6.95655, 6.76273, 6.317159999999999, 6.29157, 6.68461, 7.0255399999999995, 6.86171, 7.495539999999999, 6.90575, 6.35611, 5.8579300000000005, 6.30992, 6.05209, 5.6733199999999995, 6.44572, 6.583410000000001, 6.46925, 6.84055, 7.136480000000001, 6.787839999999999, 6.74288, 7.0934, 7.0255399999999995, 6.30992, 6.43775, 6.83518, 6.95273, 6.43133, 6.68461, 6.64898, 6.967910000000001, 6.68461, 6.85646, 6.53379, 6.23637, 6.719010000000001, 6.90575, 6.65286, 5.78383, 5.66988, 7.0255399999999995, 7.04752, 6.802389999999999, 6.2146099999999995, 6.59578, 6.715380000000001, 5.84644, 6.2146099999999995, 5.76205, 5.68698, 6.43455, 6.51915, 5.7462, 6.10925, 6.49224, 5.7365699999999995, 7.313219999999999, 6.11589, 6.2146099999999995, 7.09008, 5.96615, 8.26873, 6.3935900000000006, 7.251339999999999, 5.7365699999999995, 6.2441699999999996, 5.59842, 6.9594, 6.58617, 7.18007, 6.47697, 6.95655, 6.58617, 5.61313, 6.44572, 5.99146, 6.18826, 5.59842, 6.23441, 6.56526, 5.7462, 6.056780000000001, 6.38351, 6.90575, 6.53233, 6.1203, 6.06843, 6.7569300000000005, 6.41346, 6.51471, 7.2998, 6.5439099999999994, 5.7365699999999995, 5.76832, 6.86693, 7.1309, 6.65286, 5.5797300000000005, 7.2998, 6.9256, 6.90575, 6.39693, 6.49072, 6.02345, 6.23832, 6.354369999999999, 6.49527, 5.52146, 6.65286, 6.752269999999999, 6.2146099999999995, 6.90575, 6.9256, 5.96615, 6.52942, 6.19644, 6.813439999999999, 5.8141300000000005, 6.49979, 6.08677, 6.14633, 7.195189999999999, 6.07993, 6.01616, 6.70073, 6.3716099999999996, 7.1309, 6.354369999999999, 7.00307, 6.39693, 6.768489999999999, 6.126869999999999, 7.21744, 6.49072, 6.47697, 6.05209, 6.721430000000001, 6.813439999999999, 6.28227, 7.3696, 6.461469999999999, 7.20786, 6.5903, 7.00307, 6.16331, 6.59578, 6.2146099999999995, 6.43615, 6.64509, 6.58617, 6.19032, 6.62007, 6.39693, 6.83303, 6.98101, 6.6871100000000006, 7.09008, 6.14204, 6.907760000000001, 6.13773, 6.30992, 6.47697, 6.33328, 6.9707300000000005, 6.2146099999999995, 6.58617, 6.14633, 6.11147, 5.66988, 6.60394, 6.975410000000001, 6.39693, 7.400010000000001, 5.90808, 6.07993, 7.1082399999999994, 6.83518, 6.58617, 6.07993, 7.09008, 6.30992, 6.643789999999999, 5.66988, 6.703189999999999, 6.06611, 6.57786, 6.28972, 6.41182, 7.25347, 6.984719999999999, 6.907760000000001, 6.3315, 6.01127, 6.58617, 6.90575, 6.80572, 6.68461, 6.907760000000001, 5.742999999999999, 6.745239999999999, 6.9828600000000005, 6.253830000000001, 7.02465, 5.8861, 6.32794, 6.28786, 5.9839400000000005, 5.84354, 6.05209, 5.93225, 6.17379, 6.39693, 7.04316, 5.273, 6.85646, 6.46925, 5.99146, 5.99146, 6.22654, 6.95655, 6.5439099999999994, 6.62007, 7.0884100000000005, 6.23441, 6.47697, 6.05209, 6.2146099999999995, 6.2146099999999995, 6.10925, 6.90073, 6.8773, 7.037030000000001, 6.36303, 6.40523, 6.30992, 6.551080000000001, 7.45298, 5.72359, 6.39693, 6.551080000000001, 5.78996, 6.73102, 6.2146099999999995, 6.41017, 7.08171, 6.30992, 6.39693, 7.338889999999999, 6.26149, 6.3081 ], "y0": "9-13" }, { "fillcolor": "hsla(110, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(110, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "9-13&yes", "line": { "color": "hsla(110, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(110, 70%, 70%,1)", "line": { "color": "hsla(110, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "hexagon" }, "meanline": { "color": "hsla(110, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage 9-13&yes", "orientation": "h", "pointpos": 0.6, "points": false, "scalegroup": "9-13&yes", "scalemode": "count", "showlegend": true, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.99942, 6.646389999999999, 7.02643, 6.4552, 6.907760000000001, 6.7417, 6.77878, 6.93342, 6.57368, 7.0255399999999995, 6.39693, 6.48004, 6.60665, 5.78383, 6.49979, 6.5439099999999994, 6.39192, 6.614730000000001, 6.30992, 7.116389999999999, 7.408530000000001, 7.0076, 6.88857, 6.30992, 7.313219999999999, 7.074960000000001, 5.99146, 6.813439999999999, 6.694560000000001, 6.88755, 6.95655, 6.05912, 6.2146099999999995, 6.95655, 7.09008, 6.663130000000001, 6.6995, 6.23832, 6.69084, 6.54965, 6.802389999999999, 6.12249, 6.28227, 6.682110000000001, 6.49677, 7.01392, 6.9363399999999995, 6.44572, 6.66696, 6.62407, 7.0076, 6.55393, 6.563860000000001, 6.507280000000001, 6.62407, 6.51471, 6.551080000000001, 6.5820300000000005, 7.04752, 6.5467900000000006, 6.551080000000001, 6.39693, 6.15273, 6.907760000000001, 6.745239999999999, 6.37673, 6.907760000000001, 7.03527, 7.1309, 6.907760000000001, 6.80017, 6.90575, 7.06987, 7.179310000000001, 6.7226300000000005, 6.82437, 6.715380000000001, 6.62007, 6.818919999999999, 6.57647, 6.43455, 5.68358, 6.556780000000001, 6.551080000000001, 6.69084, 6.10925, 6.87005, 6.42162, 6.317159999999999, 6.42972, 6.19236, 6.57368, 6.2634, 7.333019999999999, 6.37502, 6.317159999999999, 6.86693, 6.62007, 6.45362, 6.49072, 6.9431199999999995, 6.90575, 6.10925, 6.91075, 6.6592899999999995, 6.47851, 7.07834, 6.36475, 6.4892, 7.00307, 7.15383, 6.88755, 6.30445, 6.92461, 7.37776, 6.272880000000001, 6.61338, 6.40688, 6.38856, 6.768489999999999, 7.00307, 6.66058, 6.64249, 6.715380000000001, 6.95655, 6.24611, 6.16542, 6.86901, 6.90575, 6.54822, 6.7369699999999995, 5.89715, 6.30628, 5.9454199999999995, 6.818919999999999, 6.882439999999999, 7.03615, 6.752269999999999, 6.802389999999999, 6.49224, 6.33328, 7.07242, 6.48311, 6.403569999999999, 6.07993, 6.802389999999999, 6.68835, 6.802389999999999, 6.89163, 7.0121199999999995, 6.54965, 6.90575, 6.62007, 7.24423, 6.36819, 6.745239999999999, 5.7525699999999995, 6.025869999999999, 6.7334, 6.48004, 7.02643, 6.93537, 7.09008, 6.47697, 7.408530000000001, 6.907760000000001, 6.2441699999999996, 6.9196800000000005, 6.90575, 6.408530000000001, 6.646389999999999, 6.5467900000000006, 6.7334, 7.04752, 6.54247, 6.753439999999999, 6.51471, 7.034389999999999, 7.262630000000001, 6.30445, 6.34564, 6.06146, 7.144410000000001, 6.5903, 6.72383, 6.10925, 6.715380000000001, 7.084230000000001, 6.685860000000001, 7.00307, 6.59167, 6.461469999999999, 6.646389999999999, 7.0255399999999995, 6.10925, 7.1546199999999995, 6.745239999999999, 6.48158, 6.94022, 6.10925, 6.633319999999999, 6.29157, 6.91672, 6.51323, 6.715380000000001, 7.0184, 6.84055, 7.00307, 6.37502, 6.48158, 6.82437, 6.18415, 6.769639999999999, 6.818919999999999, 6.7093, 7.135689999999999, 6.58064, 6.807930000000001, 6.77422, 6.60394, 6.68461, 6.10925, 6.39693, 6.85751, 6.33683, 6.802389999999999, 6.36303, 6.77422, 6.55251, 6.29157, 6.62407, 5.9814099999999994, 6.80128, 6.57786, 5.7525699999999995, 6.6783399999999995, 7.09589, 6.85646, 6.58064, 7.21891, 6.950810000000001, 6.23048, 6.96035, 6.7334, 6.378430000000001, 6.47697, 7.4787300000000005, 6.802389999999999, 7.1025, 6.035480000000001, 6.27099, 6.2634, 6.92166, 6.893660000000001, 6.43615, 6.1334, 6.43775, 6.72743, 7.0255399999999995, 6.52942, 6.54965, 5.8693, 6.0282800000000005, 6.23245, 6.31536, 6.88755, 6.34564, 6.44413, 6.62007, 6.93245, 6.3315, 6.5439099999999994, 6.45362, 6.43775, 6.44254, 5.99146, 6.84055, 7.00307, 6.62007, 6.62407, 6.795710000000001, 6.703189999999999, 6.658010000000001, 6.50429, 6.51471, 6.06611, 6.65544, 6.47697, 7.475910000000001, 6.81124, 7.0201899999999995, 7.10906, 6.54822, 7.0255399999999995, 7.46737, 6.69084, 6.88755, 7.24423, 6.95655, 6.75577, 6.01616, 6.79794, 6.2634, 6.64118, 6.90575, 6.17794, 6.66568, 7.09008, 6.58617, 6.278519999999999, 6.21261, 6.57925, 6.802389999999999, 7.08171, 7.04752, 7.17778, 6.95177, 7.033510000000001, 6.530880000000001, 6.36819, 6.79122, 6.62007, 6.81014, 6.551080000000001, 6.56526, 6.551080000000001, 6.7901, 6.59987, 6.6871100000000006, 5.93754, 6.802389999999999, 6.52356, 6.55251, 6.72383, 6.68461, 6.29157, 5.98645, 6.60665, 6.745239999999999, 6.858569999999999, 6.77422, 6.893660000000001, 6.86693, 7.408530000000001, 6.633319999999999, 7.05099, 6.60123, 6.3243599999999995, 6.55393, 6.9613, 6.7334, 6.47697, 6.3421199999999995, 6.86693, 6.34914, 6.90575, 6.48464, 6.2634, 7.02997, 6.97635, 6.59715, 7.16627, 6.19644, 6.39693, 5.9814099999999994, 6.6958, 7.279319999999999, 6.68461, 6.2146099999999995, 6.90575, 7.08339, 7.11233, 6.912739999999999, 6.33328, 6.15698, 6.893660000000001, 6.56808, 6.36303, 6.752269999999999, 6.9707300000000005, 6.9707300000000005, 6.68461, 6.975410000000001, 6.59987, 6.7334, 6.2146099999999995, 6.6783399999999995, 6.849069999999999, 6.614730000000001, 6.05209, 6.83518, 6.63857, 6.712960000000001, 7.07834, 6.715380000000001, 6.3935900000000006, 6.829789999999999, 6.721430000000001, 5.97635, 6.00389, 6.62007, 6.551080000000001, 6.6796, 6.34564, 6.561030000000001, 6.87626, 6.745239999999999, 6.39859, 6.68461, 6.40192, 6.56808, 6.7334, 6.30992, 6.6796, 6.61874, 6.30079, 6.34564, 6.551080000000001, 6.23441, 6.52209, 6.16331, 6.33683, 7.0579, 6.35611, 6.45834, 6.463030000000001, 6.86797, 6.5439099999999994, 6.8844899999999996, 6.52209, 6.90575, 6.817830000000001, 6.41017, 6.787839999999999, 6.55393, 7.31122, 6.44572, 6.59578, 6.69332, 6.7511, 5.8579300000000005, 6.54965, 6.9256, 6.907760000000001, 5.65249, 7.041410000000001, 6.4599, 7.200419999999999, 7.1309, 7.03527, 6.907760000000001, 6.05209, 7.1452, 6.02102, 6.64249, 6.8977, 6.6567300000000005, 6.90575, 6.47697, 6.05209, 7.21524, 6.90575, 6.424869999999999, 6.745239999999999, 6.53669, 6.95655, 6.8966899999999995, 6.95655, 6.813439999999999, 6.752269999999999, 6.86066, 6.318969999999999, 6.54103, 6.24222, 6.68461, 6.05209, 6.966019999999999, 6.32615, 6.508769999999999, 7.31986, 6.21661, 7.17012, 6.58755, 6.311730000000001, 6.39693, 6.95655, 6.39693, 6.60665, 6.51471, 6.68461, 6.18826, 6.68461, 6.2146099999999995, 6.36647, 6.47697, 6.68461, 6.90575, 7.20786, 6.551080000000001, 6.83195, 6.73815, 6.65028, 6.58617, 6.68461, 6.602589999999999, 7.54961, 6.551080000000001, 6.907760000000001, 6.9177100000000005, 6.35957, 6.18415, 6.66441, 6.551080000000001, 6.41182, 6.04025, 6.6515699999999995, 7.04752, 6.3243599999999995, 6.41346, 6.5439099999999994, 6.4151, 6.52209, 6.77422, 7.1309, 6.04025, 7.0396600000000005, 7.10003, 6.73102, 6.87523, 6.47389, 6.99026, 6.206580000000001, 6.44572, 6.551080000000001, 6.53379, 6.61338, 6.85646, 6.47389, 6.2441699999999996, 6.716589999999999, 6.58617, 6.50129, 6.2952699999999995, 7.00307, 6.68461, 6.54535, 6.43935, 7.044910000000001, 6.42162, 6.44413, 7.127689999999999, 6.45677, 6.55393, 6.715380000000001, 7.00307, 6.2106, 6.0845, 6.74406, 6.73221, 6.37673, 6.62007, 6.768489999999999, 6.04025, 6.2146099999999995, 6.6592899999999995, 6.61338, 7.00307, 6.35611, 6.8977, 7.393260000000001, 6.834110000000001, 6.802389999999999, 6.16542, 6.73459, 6.43615, 6.90575, 5.78383, 6.753439999999999, 6.967910000000001, 6.16331, 7.1309, 6.551080000000001, 6.99485, 6.45047, 6.66185, 6.94119, 6.90575, 7.21891, 7.09008, 6.63068, 7.279319999999999, 6.354369999999999, 7.183110000000001, 6.62007, 6.795710000000001, 6.16121, 6.715380000000001, 6.95655, 6.78333, 6.67582, 6.47697, 6.715380000000001, 6.49072, 6.12249, 6.3613, 6.53233, 6.8742, 6.6280399999999995, 6.715380000000001, 6.7226300000000005, 6.51026, 6.50429, 5.88053, 6.8977, 5.9135, 6.17379, 6.93537, 6.7569300000000005, 7.2998, 6.62007, 6.45205, 6.802389999999999, 6.32794, 6.6745600000000005, 6.714169999999999, 6.7569300000000005, 6.48004, 6.59167, 6.551080000000001, 6.95655, 7.06561, 6.566669999999999, 6.9966800000000005, 6.43775, 6.802389999999999, 6.78672, 7.09008, 6.602589999999999, 6.42162, 7.034389999999999, 6.57925, 6.38012, 6.16331, 6.2634, 6.6896, 6.50129, 7.196689999999999, 6.62936, 6.013719999999999, 6.62007, 6.2653, 6.95655, 6.47697, 6.52209, 6.40523, 6.69084, 6.802389999999999, 5.76832, 6.95177, 6.87626, 6.318969999999999, 6.570880000000001, 7.09008, 6.7511, 6.05209, 6.90575, 6.907760000000001, 6.785589999999999, 6.814539999999999, 6.639880000000001, 6.77194, 6.802389999999999, 6.907760000000001, 6.45834, 6.5582, 6.45362, 7.1309, 6.955589999999999, 7.18992, 6.748760000000001, 6.6107, 6.807930000000001, 6.16331, 6.6592899999999995, 7.0483899999999995, 6.598510000000001, 7.106610000000001, 7.22548, 6.48768, 6.23245, 6.4677, 7.05272, 6.33328, 6.551080000000001, 6.77422, 5.7525699999999995, 6.852239999999999, 6.34564, 7.03878, 7.400010000000001, 6.83195, 7.00307, 6.84162, 6.93342, 6.608, 6.056780000000001, 6.55393, 6.7511, 6.54535, 7.00307, 6.51471, 6.3315, 6.8426800000000005, 7.0518600000000005, 6.79122, 6.78897, 6.745239999999999, 6.563860000000001, 6.66696, 6.47235, 6.56244, 6.80351, 6.92658, 7.06902, 5.958419999999999, 6.753439999999999, 6.52209, 6.8773, 6.507280000000001, 6.81014, 6.82437, 6.29157, 6.56948, 5.83188, 6.39693, 7.09008, 6.82437, 6.802389999999999, 7.239210000000001, 6.41673, 6.69084, 6.70564, 6.27099, 6.59715, 6.45047, 6.6592899999999995, 7.04752, 6.6346300000000005, 6.56526, 6.54103, 6.51471, 6.94698, 6.907760000000001, 6.88857, 6.507280000000001, 6.035480000000001, 6.47697, 6.551080000000001, 6.57368, 6.53669, 6.8426800000000005, 7.1082399999999994, 7.17012, 6.39693, 7.09008, 6.715380000000001, 6.3935900000000006, 6.6783399999999995, 6.54535, 6.593039999999999, 6.3716099999999996, 6.8426800000000005, 7.00307, 6.126869999999999, 6.8773, 6.56526, 6.575080000000001, 6.78672, 7.00307, 6.551080000000001, 6.907760000000001, 6.621410000000001, 6.49979, 6.7901, 6.614730000000001, 6.93245, 6.30992, 7.46737, 7.36455, 6.639880000000001, 6.78333, 6.563860000000001, 7.0076, 6.82437, 6.4677, 7.127689999999999, 6.68461, 7.10988, 6.563860000000001, 6.7546, 7.24423, 6.9256, 6.58617, 6.84588, 6.86171, 6.2146099999999995, 6.93245, 7.00307, 6.3935900000000006, 6.802389999999999, 6.78672, 6.9707300000000005, 6.259580000000001, 6.64509, 6.745239999999999, 6.80461, 6.08904, 6.802389999999999, 6.87626, 7.21082, 6.24611, 6.975410000000001, 6.83303, 6.44095, 6.8384100000000005, 6.79122, 6.6695, 6.813439999999999, 6.55962, 6.566669999999999, 6.829789999999999, 6.79347, 6.643789999999999, 6.77422, 6.77422, 6.8384100000000005, 6.62007, 6.745239999999999, 6.3315, 6.69332, 6.745239999999999, 7.12367, 6.72623, 6.10925, 6.2146099999999995, 6.56526, 6.49375, 6.95655, 6.311730000000001, 7.00307, 6.95655, 7.17012, 6.49224, 6.8865300000000005, 6.602589999999999, 6.5467900000000006, 6.530880000000001, 6.55962, 6.46459, 6.834110000000001, 6.7334, 6.18415, 6.66441, 5.87774, 6.35957, 5.84354, 6.91672, 7.027310000000001, 6.551080000000001, 6.71174, 6.83087, 6.67203, 7.165489999999999, 6.47389, 6.35957, 6.77878, 6.3716099999999996, 7.016610000000001, 7.09008, 6.84801, 7.07242, 5.8861, 7.346010000000001, 6.975410000000001, 6.79122, 6.947939999999999, 6.955589999999999, 6.3935900000000006, 6.354369999999999, 6.18208, 6.47697, 6.84588, 6.04025, 6.2804, 6.1203, 6.36475, 6.56948, 6.43775, 6.6796, 6.758089999999999, 6.84588, 6.21261, 6.10032, 6.802389999999999, 6.907760000000001, 6.90575, 6.97354, 6.74052, 6.66568, 7.1309, 6.821110000000001, 6.813439999999999, 6.30262, 6.551080000000001, 6.43775, 5.84932, 6.61874, 6.938280000000001, 7.08255, 6.882439999999999, 6.90575, 6.49375, 7.35372, 6.829789999999999, 6.7334, 6.65415, 6.39693, 6.799060000000001, 6.272880000000001, 6.57925, 6.703189999999999, 7.04752, 6.42162, 6.62007, 6.745239999999999, 6.58617, 6.51471, 7.09008, 6.19236, 6.6253899999999994, 6.7369699999999995, 7.064760000000001, 7.11883, 6.48158, 6.51175, 5.7525699999999995, 6.57228, 6.907760000000001, 6.58617, 6.43294, 6.95655, 6.993930000000001, 6.984719999999999, 6.907760000000001, 7.185389999999999, 6.72743, 6.33683, 6.7334, 6.24028, 6.5395900000000005, 6.05209, 6.28413, 6.44572, 6.62007, 6.966019999999999, 6.62936, 6.9575, 6.57647, 6.608, 7.00307, 6.95655, 6.12249, 7.09008, 6.85435, 6.9256, 7.5574699999999995, 6.8956800000000005, 6.56948, 7.1309, 7.092569999999999, 6.05209, 6.44254, 5.72031, 6.4599, 5.73334, 6.67708, 6.99942, 6.68461, 6.57925, 6.2186, 6.84162, 7.313219999999999, 6.55962, 6.66823, 6.0822199999999995, 6.77878, 6.68461, 7.09008, 6.937310000000001, 7.0775, 6.907760000000001, 6.745239999999999, 6.2634, 6.31355, 6.86485, 6.49677, 6.633319999999999, 6.04025, 6.47697, 6.47697, 6.30262, 7.07412, 6.354369999999999, 6.10925, 7.42357, 6.768489999999999, 6.56244, 6.49224, 6.27099, 6.829789999999999, 7.12287, 6.2146099999999995, 7.00307, 6.35611, 6.88755, 6.84162, 6.45362, 6.2186, 6.1717, 6.77308, 6.594410000000001, 7.04752, 6.937310000000001, 6.25767, 6.551080000000001, 6.386880000000001, 6.44413, 6.745239999999999, 7.2233, 6.685860000000001, 6.38856, 6.73102, 5.95584, 6.90675, 6.563860000000001, 6.769639999999999, 7.06133, 6.912739999999999, 6.4708, 6.2634, 6.556780000000001, 6.52062, 5.8141300000000005, 6.85646, 6.22654, 6.49224, 6.2205900000000005, 6.632000000000001, 6.65544, 6.944089999999999, 6.83518, 6.84588, 6.2860000000000005, 6.80128 ], "y0": "9-13" }, { "box": { "visible": false }, "fillcolor": "rgba(0, 0, 0, 0)", "hoverinfo": "x", "hoveron": "points", "jitter": 0.3, "legendgroup": "9-13&yes", "line": { "color": "rgba(0, 0, 0, 0)", "width": 0 }, "marker": { "color": "hsla(110, 70%, 70%,1)", "line": { "color": "hsla(110, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "hexagon" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0.6, "points": "all", "scalegroup": "9-13&yes", "showlegend": false, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 6.99942, 6.646389999999999, 7.02643, 6.4552, 6.907760000000001, 6.7417, 6.77878, 6.93342, 6.57368, 7.0255399999999995, 6.39693, 6.48004, 6.60665, 5.78383, 6.49979, 6.5439099999999994, 6.39192, 6.614730000000001, 6.30992, 7.116389999999999, 7.408530000000001, 7.0076, 6.88857, 6.30992, 7.313219999999999, 7.074960000000001, 5.99146, 6.813439999999999, 6.694560000000001, 6.88755, 6.95655, 6.05912, 6.2146099999999995, 6.95655, 7.09008, 6.663130000000001, 6.6995, 6.23832, 6.69084, 6.54965, 6.802389999999999, 6.12249, 6.28227, 6.682110000000001, 6.49677, 7.01392, 6.9363399999999995, 6.44572, 6.66696, 6.62407, 7.0076, 6.55393, 6.563860000000001, 6.507280000000001, 6.62407, 6.51471, 6.551080000000001, 6.5820300000000005, 7.04752, 6.5467900000000006, 6.551080000000001, 6.39693, 6.15273, 6.907760000000001, 6.745239999999999, 6.37673, 6.907760000000001, 7.03527, 7.1309, 6.907760000000001, 6.80017, 6.90575, 7.06987, 7.179310000000001, 6.7226300000000005, 6.82437, 6.715380000000001, 6.62007, 6.818919999999999, 6.57647, 6.43455, 5.68358, 6.556780000000001, 6.551080000000001, 6.69084, 6.10925, 6.87005, 6.42162, 6.317159999999999, 6.42972, 6.19236, 6.57368, 6.2634, 7.333019999999999, 6.37502, 6.317159999999999, 6.86693, 6.62007, 6.45362, 6.49072 ], "y0": "9-13" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(110, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(110, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "9-13&yes", "line": { "width": 0 }, "marker": { "color": "hsla(110, 50%, 50%,0.9)", "line": { "color": "hsla(110, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "hexagon" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": false, "scalegroup": "9-13&yes", "showlegend": false, "side": "positive", "span": [ 6.631445703413882, 6.67045022530907 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 6.99942, 6.646389999999999, 7.02643, 6.4552, 6.907760000000001, 6.7417, 6.77878, 6.93342, 6.57368, 7.0255399999999995, 6.39693, 6.48004, 6.60665, 5.78383, 6.49979, 6.5439099999999994, 6.39192, 6.614730000000001, 6.30992, 7.116389999999999, 7.408530000000001, 7.0076, 6.88857, 6.30992, 7.313219999999999, 7.074960000000001, 5.99146, 6.813439999999999, 6.694560000000001, 6.88755, 6.95655, 6.05912, 6.2146099999999995, 6.95655, 7.09008, 6.663130000000001, 6.6995, 6.23832, 6.69084, 6.54965, 6.802389999999999, 6.12249, 6.28227, 6.682110000000001, 6.49677, 7.01392, 6.9363399999999995, 6.44572, 6.66696, 6.62407, 7.0076, 6.55393, 6.563860000000001, 6.507280000000001, 6.62407, 6.51471, 6.551080000000001, 6.5820300000000005, 7.04752, 6.5467900000000006, 6.551080000000001, 6.39693, 6.15273, 6.907760000000001, 6.745239999999999, 6.37673, 6.907760000000001, 7.03527, 7.1309, 6.907760000000001, 6.80017, 6.90575, 7.06987, 7.179310000000001, 6.7226300000000005, 6.82437, 6.715380000000001, 6.62007, 6.818919999999999, 6.57647, 6.43455, 5.68358, 6.556780000000001, 6.551080000000001, 6.69084, 6.10925, 6.87005, 6.42162, 6.317159999999999, 6.42972, 6.19236, 6.57368, 6.2634, 7.333019999999999, 6.37502, 6.317159999999999, 6.86693, 6.62007, 6.45362, 6.49072, 6.9431199999999995, 6.90575, 6.10925, 6.91075, 6.6592899999999995, 6.47851, 7.07834, 6.36475, 6.4892, 7.00307, 7.15383, 6.88755, 6.30445, 6.92461, 7.37776, 6.272880000000001, 6.61338, 6.40688, 6.38856, 6.768489999999999, 7.00307, 6.66058, 6.64249, 6.715380000000001, 6.95655, 6.24611, 6.16542, 6.86901, 6.90575, 6.54822, 6.7369699999999995, 5.89715, 6.30628, 5.9454199999999995, 6.818919999999999, 6.882439999999999, 7.03615, 6.752269999999999, 6.802389999999999, 6.49224, 6.33328, 7.07242, 6.48311, 6.403569999999999, 6.07993, 6.802389999999999, 6.68835, 6.802389999999999, 6.89163, 7.0121199999999995, 6.54965, 6.90575, 6.62007, 7.24423, 6.36819, 6.745239999999999, 5.7525699999999995, 6.025869999999999, 6.7334, 6.48004, 7.02643, 6.93537, 7.09008, 6.47697, 7.408530000000001, 6.907760000000001, 6.2441699999999996, 6.9196800000000005, 6.90575, 6.408530000000001, 6.646389999999999, 6.5467900000000006, 6.7334, 7.04752, 6.54247, 6.753439999999999, 6.51471, 7.034389999999999, 7.262630000000001, 6.30445, 6.34564, 6.06146, 7.144410000000001, 6.5903, 6.72383, 6.10925, 6.715380000000001, 7.084230000000001, 6.685860000000001, 7.00307, 6.59167, 6.461469999999999, 6.646389999999999, 7.0255399999999995, 6.10925, 7.1546199999999995, 6.745239999999999, 6.48158, 6.94022, 6.10925, 6.633319999999999, 6.29157, 6.91672, 6.51323, 6.715380000000001, 7.0184, 6.84055, 7.00307, 6.37502, 6.48158, 6.82437, 6.18415, 6.769639999999999, 6.818919999999999, 6.7093, 7.135689999999999, 6.58064, 6.807930000000001, 6.77422, 6.60394, 6.68461, 6.10925, 6.39693, 6.85751, 6.33683, 6.802389999999999, 6.36303, 6.77422, 6.55251, 6.29157, 6.62407, 5.9814099999999994, 6.80128, 6.57786, 5.7525699999999995, 6.6783399999999995, 7.09589, 6.85646, 6.58064, 7.21891, 6.950810000000001, 6.23048, 6.96035, 6.7334, 6.378430000000001, 6.47697, 7.4787300000000005, 6.802389999999999, 7.1025, 6.035480000000001, 6.27099, 6.2634, 6.92166, 6.893660000000001, 6.43615, 6.1334, 6.43775, 6.72743, 7.0255399999999995, 6.52942, 6.54965, 5.8693, 6.0282800000000005, 6.23245, 6.31536, 6.88755, 6.34564, 6.44413, 6.62007, 6.93245, 6.3315, 6.5439099999999994, 6.45362, 6.43775, 6.44254, 5.99146, 6.84055, 7.00307, 6.62007, 6.62407, 6.795710000000001, 6.703189999999999, 6.658010000000001, 6.50429, 6.51471, 6.06611, 6.65544, 6.47697, 7.475910000000001, 6.81124, 7.0201899999999995, 7.10906, 6.54822, 7.0255399999999995, 7.46737, 6.69084, 6.88755, 7.24423, 6.95655, 6.75577, 6.01616, 6.79794, 6.2634, 6.64118, 6.90575, 6.17794, 6.66568, 7.09008, 6.58617, 6.278519999999999, 6.21261, 6.57925, 6.802389999999999, 7.08171, 7.04752, 7.17778, 6.95177, 7.033510000000001, 6.530880000000001, 6.36819, 6.79122, 6.62007, 6.81014, 6.551080000000001, 6.56526, 6.551080000000001, 6.7901, 6.59987, 6.6871100000000006, 5.93754, 6.802389999999999, 6.52356, 6.55251, 6.72383, 6.68461, 6.29157, 5.98645, 6.60665, 6.745239999999999, 6.858569999999999, 6.77422, 6.893660000000001, 6.86693, 7.408530000000001, 6.633319999999999, 7.05099, 6.60123, 6.3243599999999995, 6.55393, 6.9613, 6.7334, 6.47697, 6.3421199999999995, 6.86693, 6.34914, 6.90575, 6.48464, 6.2634, 7.02997, 6.97635, 6.59715, 7.16627, 6.19644, 6.39693, 5.9814099999999994, 6.6958, 7.279319999999999, 6.68461, 6.2146099999999995, 6.90575, 7.08339, 7.11233, 6.912739999999999, 6.33328, 6.15698, 6.893660000000001, 6.56808, 6.36303, 6.752269999999999, 6.9707300000000005, 6.9707300000000005, 6.68461, 6.975410000000001, 6.59987, 6.7334, 6.2146099999999995, 6.6783399999999995, 6.849069999999999, 6.614730000000001, 6.05209, 6.83518, 6.63857, 6.712960000000001, 7.07834, 6.715380000000001, 6.3935900000000006, 6.829789999999999, 6.721430000000001, 5.97635, 6.00389, 6.62007, 6.551080000000001, 6.6796, 6.34564, 6.561030000000001, 6.87626, 6.745239999999999, 6.39859, 6.68461, 6.40192, 6.56808, 6.7334, 6.30992, 6.6796, 6.61874, 6.30079, 6.34564, 6.551080000000001, 6.23441, 6.52209, 6.16331, 6.33683, 7.0579, 6.35611, 6.45834, 6.463030000000001, 6.86797, 6.5439099999999994, 6.8844899999999996, 6.52209, 6.90575, 6.817830000000001, 6.41017, 6.787839999999999, 6.55393, 7.31122, 6.44572, 6.59578, 6.69332, 6.7511, 5.8579300000000005, 6.54965, 6.9256, 6.907760000000001, 5.65249, 7.041410000000001, 6.4599, 7.200419999999999, 7.1309, 7.03527, 6.907760000000001, 6.05209, 7.1452, 6.02102, 6.64249, 6.8977, 6.6567300000000005, 6.90575, 6.47697, 6.05209, 7.21524, 6.90575, 6.424869999999999, 6.745239999999999, 6.53669, 6.95655, 6.8966899999999995, 6.95655, 6.813439999999999, 6.752269999999999, 6.86066, 6.318969999999999, 6.54103, 6.24222, 6.68461, 6.05209, 6.966019999999999, 6.32615, 6.508769999999999, 7.31986, 6.21661, 7.17012, 6.58755, 6.311730000000001, 6.39693, 6.95655, 6.39693, 6.60665, 6.51471, 6.68461, 6.18826, 6.68461, 6.2146099999999995, 6.36647, 6.47697, 6.68461, 6.90575, 7.20786, 6.551080000000001, 6.83195, 6.73815, 6.65028, 6.58617, 6.68461, 6.602589999999999, 7.54961, 6.551080000000001, 6.907760000000001, 6.9177100000000005, 6.35957, 6.18415, 6.66441, 6.551080000000001, 6.41182, 6.04025, 6.6515699999999995, 7.04752, 6.3243599999999995, 6.41346, 6.5439099999999994, 6.4151, 6.52209, 6.77422, 7.1309, 6.04025, 7.0396600000000005, 7.10003, 6.73102, 6.87523, 6.47389, 6.99026, 6.206580000000001, 6.44572, 6.551080000000001, 6.53379, 6.61338, 6.85646, 6.47389, 6.2441699999999996, 6.716589999999999, 6.58617, 6.50129, 6.2952699999999995, 7.00307, 6.68461, 6.54535, 6.43935, 7.044910000000001, 6.42162, 6.44413, 7.127689999999999, 6.45677, 6.55393, 6.715380000000001, 7.00307, 6.2106, 6.0845, 6.74406, 6.73221, 6.37673, 6.62007, 6.768489999999999, 6.04025, 6.2146099999999995, 6.6592899999999995, 6.61338, 7.00307, 6.35611, 6.8977, 7.393260000000001, 6.834110000000001, 6.802389999999999, 6.16542, 6.73459, 6.43615, 6.90575, 5.78383, 6.753439999999999, 6.967910000000001, 6.16331, 7.1309, 6.551080000000001, 6.99485, 6.45047, 6.66185, 6.94119, 6.90575, 7.21891, 7.09008, 6.63068, 7.279319999999999, 6.354369999999999, 7.183110000000001, 6.62007, 6.795710000000001, 6.16121, 6.715380000000001, 6.95655, 6.78333, 6.67582, 6.47697, 6.715380000000001, 6.49072, 6.12249, 6.3613, 6.53233, 6.8742, 6.6280399999999995, 6.715380000000001, 6.7226300000000005, 6.51026, 6.50429, 5.88053, 6.8977, 5.9135, 6.17379, 6.93537, 6.7569300000000005, 7.2998, 6.62007, 6.45205, 6.802389999999999, 6.32794, 6.6745600000000005, 6.714169999999999, 6.7569300000000005, 6.48004, 6.59167, 6.551080000000001, 6.95655, 7.06561, 6.566669999999999, 6.9966800000000005, 6.43775, 6.802389999999999, 6.78672, 7.09008, 6.602589999999999, 6.42162, 7.034389999999999, 6.57925, 6.38012, 6.16331, 6.2634, 6.6896, 6.50129, 7.196689999999999, 6.62936, 6.013719999999999, 6.62007, 6.2653, 6.95655, 6.47697, 6.52209, 6.40523, 6.69084, 6.802389999999999, 5.76832, 6.95177, 6.87626, 6.318969999999999, 6.570880000000001, 7.09008, 6.7511, 6.05209, 6.90575, 6.907760000000001, 6.785589999999999, 6.814539999999999, 6.639880000000001, 6.77194, 6.802389999999999, 6.907760000000001, 6.45834, 6.5582, 6.45362, 7.1309, 6.955589999999999, 7.18992, 6.748760000000001, 6.6107, 6.807930000000001, 6.16331, 6.6592899999999995, 7.0483899999999995, 6.598510000000001, 7.106610000000001, 7.22548, 6.48768, 6.23245, 6.4677, 7.05272, 6.33328, 6.551080000000001, 6.77422, 5.7525699999999995, 6.852239999999999, 6.34564, 7.03878, 7.400010000000001, 6.83195, 7.00307, 6.84162, 6.93342, 6.608, 6.056780000000001, 6.55393, 6.7511, 6.54535, 7.00307, 6.51471, 6.3315, 6.8426800000000005, 7.0518600000000005, 6.79122, 6.78897, 6.745239999999999, 6.563860000000001, 6.66696, 6.47235, 6.56244, 6.80351, 6.92658, 7.06902, 5.958419999999999, 6.753439999999999, 6.52209, 6.8773, 6.507280000000001, 6.81014, 6.82437, 6.29157, 6.56948, 5.83188, 6.39693, 7.09008, 6.82437, 6.802389999999999, 7.239210000000001, 6.41673, 6.69084, 6.70564, 6.27099, 6.59715, 6.45047, 6.6592899999999995, 7.04752, 6.6346300000000005, 6.56526, 6.54103, 6.51471, 6.94698, 6.907760000000001, 6.88857, 6.507280000000001, 6.035480000000001, 6.47697, 6.551080000000001, 6.57368, 6.53669, 6.8426800000000005, 7.1082399999999994, 7.17012, 6.39693, 7.09008, 6.715380000000001, 6.3935900000000006, 6.6783399999999995, 6.54535, 6.593039999999999, 6.3716099999999996, 6.8426800000000005, 7.00307, 6.126869999999999, 6.8773, 6.56526, 6.575080000000001, 6.78672, 7.00307, 6.551080000000001, 6.907760000000001, 6.621410000000001, 6.49979, 6.7901, 6.614730000000001, 6.93245, 6.30992, 7.46737, 7.36455, 6.639880000000001, 6.78333, 6.563860000000001, 7.0076, 6.82437, 6.4677, 7.127689999999999, 6.68461, 7.10988, 6.563860000000001, 6.7546, 7.24423, 6.9256, 6.58617, 6.84588, 6.86171, 6.2146099999999995, 6.93245, 7.00307, 6.3935900000000006, 6.802389999999999, 6.78672, 6.9707300000000005, 6.259580000000001, 6.64509, 6.745239999999999, 6.80461, 6.08904, 6.802389999999999, 6.87626, 7.21082, 6.24611, 6.975410000000001, 6.83303, 6.44095, 6.8384100000000005, 6.79122, 6.6695, 6.813439999999999, 6.55962, 6.566669999999999, 6.829789999999999, 6.79347, 6.643789999999999, 6.77422, 6.77422, 6.8384100000000005, 6.62007, 6.745239999999999, 6.3315, 6.69332, 6.745239999999999, 7.12367, 6.72623, 6.10925, 6.2146099999999995, 6.56526, 6.49375, 6.95655, 6.311730000000001, 7.00307, 6.95655, 7.17012, 6.49224, 6.8865300000000005, 6.602589999999999, 6.5467900000000006, 6.530880000000001, 6.55962, 6.46459, 6.834110000000001, 6.7334, 6.18415, 6.66441, 5.87774, 6.35957, 5.84354, 6.91672, 7.027310000000001, 6.551080000000001, 6.71174, 6.83087, 6.67203, 7.165489999999999, 6.47389, 6.35957, 6.77878, 6.3716099999999996, 7.016610000000001, 7.09008, 6.84801, 7.07242, 5.8861, 7.346010000000001, 6.975410000000001, 6.79122, 6.947939999999999, 6.955589999999999, 6.3935900000000006, 6.354369999999999, 6.18208, 6.47697, 6.84588, 6.04025, 6.2804, 6.1203, 6.36475, 6.56948, 6.43775, 6.6796, 6.758089999999999, 6.84588, 6.21261, 6.10032, 6.802389999999999, 6.907760000000001, 6.90575, 6.97354, 6.74052, 6.66568, 7.1309, 6.821110000000001, 6.813439999999999, 6.30262, 6.551080000000001, 6.43775, 5.84932, 6.61874, 6.938280000000001, 7.08255, 6.882439999999999, 6.90575, 6.49375, 7.35372, 6.829789999999999, 6.7334, 6.65415, 6.39693, 6.799060000000001, 6.272880000000001, 6.57925, 6.703189999999999, 7.04752, 6.42162, 6.62007, 6.745239999999999, 6.58617, 6.51471, 7.09008, 6.19236, 6.6253899999999994, 6.7369699999999995, 7.064760000000001, 7.11883, 6.48158, 6.51175, 5.7525699999999995, 6.57228, 6.907760000000001, 6.58617, 6.43294, 6.95655, 6.993930000000001, 6.984719999999999, 6.907760000000001, 7.185389999999999, 6.72743, 6.33683, 6.7334, 6.24028, 6.5395900000000005, 6.05209, 6.28413, 6.44572, 6.62007, 6.966019999999999, 6.62936, 6.9575, 6.57647, 6.608, 7.00307, 6.95655, 6.12249, 7.09008, 6.85435, 6.9256, 7.5574699999999995, 6.8956800000000005, 6.56948, 7.1309, 7.092569999999999, 6.05209, 6.44254, 5.72031, 6.4599, 5.73334, 6.67708, 6.99942, 6.68461, 6.57925, 6.2186, 6.84162, 7.313219999999999, 6.55962, 6.66823, 6.0822199999999995, 6.77878, 6.68461, 7.09008, 6.937310000000001, 7.0775, 6.907760000000001, 6.745239999999999, 6.2634, 6.31355, 6.86485, 6.49677, 6.633319999999999, 6.04025, 6.47697, 6.47697, 6.30262, 7.07412, 6.354369999999999, 6.10925, 7.42357, 6.768489999999999, 6.56244, 6.49224, 6.27099, 6.829789999999999, 7.12287, 6.2146099999999995, 7.00307, 6.35611, 6.88755, 6.84162, 6.45362, 6.2186, 6.1717, 6.77308, 6.594410000000001, 7.04752, 6.937310000000001, 6.25767, 6.551080000000001, 6.386880000000001, 6.44413, 6.745239999999999, 7.2233, 6.685860000000001, 6.38856, 6.73102, 5.95584, 6.90675, 6.563860000000001, 6.769639999999999, 7.06133, 6.912739999999999, 6.4708, 6.2634, 6.556780000000001, 6.52062, 5.8141300000000005, 6.85646, 6.22654, 6.49224, 6.2205900000000005, 6.632000000000001, 6.65544, 6.944089999999999, 6.83518, 6.84588, 6.2860000000000005, 6.80128 ], "y0": "9-13" }, { "fillcolor": "hsla(165, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(165, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "<9&no", "line": { "color": "hsla(165, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(165, 70%, 70%,1)", "line": { "color": "hsla(165, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "hexagon" }, "meanline": { "color": "hsla(165, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage <9&no", "orientation": "h", "pointpos": -0.6, "points": false, "scalegroup": "<9&no", "scalemode": "count", "showlegend": true, "side": "negative", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 5.61677, 6.892639999999999, 5.94803, 6.28227, 6.05209, 6.206580000000001, 6.10925, 6.25575, 6.16331, 6.59578, 5.52146, 6.10925, 6.17379, 6.16331, 6.16331, 5.76832, 5.99146, 5.7525699999999995, 5.70378, 5.9269300000000005, 5.7365699999999995, 6.47697, 6.85646, 6.39693, 5.98896, 6.6871100000000006, 6.42162, 5.95324, 5.99146, 6.05209, 6.18826, 5.51745, 6.43775, 6.3952599999999995, 5.70378, 5.8141300000000005, 6.47697, 5.34711, 5.99146, 5.8999, 5.4161, 5.64545, 6.10925, 6.2634, 6.27099, 5.45959, 6.05209, 5.8579300000000005, 6.12905, 5.72031, 6.1717, 6.8773, 6.14204, 5.4161, 6.23637, 5.99146, 5.99146, 5.4161, 6.551080000000001, 5.65948, 6.2653, 6.30992, 5.82008, 6.49979, 6.17379, 6.17794, 6.2634, 6.17379, 6.505780000000001, 5.42935, 6.739339999999999, 5.70378, 6.77992, 5.9269300000000005, 6.17379, 5.42053, 6.3207699999999996, 5.940169999999999, 6.3081, 5.70378, 5.2983199999999995, 6.43775, 6.10925, 5.99146, 6.5439099999999994, 6.44572, 6.62007, 6.10925, 5.5606800000000005, 5.78383, 5.97635, 6.13123, 6.7093, 6.39693, 6.08677, 5.68698, 6.17794, 5.4161, 6.33328, 6.33328, 6.20456, 5.70378, 6.39693, 5.4161, 5.5797300000000005, 6.09131, 6.04025, 6.39693, 6.354369999999999, 6.44572, 6.4892, 6.08677, 6.33683, 5.86079, 6.10925, 5.70378, 6.5582, 6.95177, 6.2146099999999995, 6.6107, 5.67675, 5.7589, 5.8861, 5.95584, 5.9839400000000005, 6.07535, 5.66988, 5.99146, 5.8999, 6.507280000000001, 5.7365699999999995, 6.03787, 5.47227, 6.68461, 6.17794, 5.95324, 5.70378, 5.82305, 5.64191, 6.21261, 6.1944099999999995, 6.49224, 5.45959, 6.06843, 5.7651900000000005, 5.53339, 5.78383, 6.770789999999999, 6.13123, 6.769639999999999, 6.10925, 6.39693, 6.51767, 5.5797300000000005, 6.42162, 6.13123, 6.720219999999999, 5.43808, 5.8141300000000005, 6.802389999999999, 6.2480400000000005, 6.715380000000001, 6.995769999999999, 6.66568, 5.8579300000000005, 5.19296, 5.940169999999999 ], "y0": "<9" }, { "box": { "visible": false }, "fillcolor": "rgba(0, 0, 0, 0)", "hoverinfo": "x", "hoveron": "points", "jitter": 0.3, "legendgroup": "<9&no", "line": { "color": "rgba(0, 0, 0, 0)", "width": 0 }, "marker": { "color": "hsla(165, 70%, 70%,1)", "line": { "color": "hsla(165, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "hexagon" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": -0.6, "points": "all", "scalegroup": "<9&no", "showlegend": false, "side": "negative", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 5.61677, 6.892639999999999, 5.94803, 6.28227, 6.05209, 6.206580000000001, 6.10925, 6.25575, 6.16331, 6.59578, 5.52146, 6.10925, 6.17379, 6.16331, 6.16331, 5.76832, 5.99146, 5.7525699999999995, 5.70378, 5.9269300000000005, 5.7365699999999995, 6.47697, 6.85646, 6.39693, 5.98896, 6.6871100000000006, 6.42162, 5.95324, 5.99146, 6.05209, 6.18826, 5.51745, 6.43775, 6.3952599999999995, 5.70378, 5.8141300000000005, 6.47697, 5.34711, 5.99146, 5.8999, 5.4161, 5.64545, 6.10925, 6.2634, 6.27099, 5.45959, 6.05209, 5.8579300000000005, 6.12905, 5.72031, 6.1717, 6.8773, 6.14204, 5.4161, 6.23637, 5.99146, 5.99146, 5.4161, 6.551080000000001, 5.65948, 6.2653, 6.30992, 5.82008, 6.49979, 6.17379, 6.17794, 6.2634, 6.17379, 6.505780000000001, 5.42935, 6.739339999999999, 5.70378, 6.77992, 5.9269300000000005, 6.17379, 5.42053, 6.3207699999999996, 5.940169999999999, 6.3081, 5.70378, 5.2983199999999995, 6.43775, 6.10925, 5.99146, 6.5439099999999994, 6.44572, 6.62007, 6.10925, 5.5606800000000005, 5.78383, 5.97635, 6.13123, 6.7093, 6.39693, 6.08677, 5.68698, 6.17794, 5.4161, 6.33328, 6.33328 ], "y0": "<9" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(165, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(165, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "<9&no", "line": { "width": 0 }, "marker": { "color": "hsla(165, 50%, 50%,0.9)", "line": { "color": "hsla(165, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "hexagon" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": false, "scalegroup": "<9&no", "showlegend": false, "side": "negative", "span": [ 6.0261583556402085, 6.145748963690019 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 5.61677, 6.892639999999999, 5.94803, 6.28227, 6.05209, 6.206580000000001, 6.10925, 6.25575, 6.16331, 6.59578, 5.52146, 6.10925, 6.17379, 6.16331, 6.16331, 5.76832, 5.99146, 5.7525699999999995, 5.70378, 5.9269300000000005, 5.7365699999999995, 6.47697, 6.85646, 6.39693, 5.98896, 6.6871100000000006, 6.42162, 5.95324, 5.99146, 6.05209, 6.18826, 5.51745, 6.43775, 6.3952599999999995, 5.70378, 5.8141300000000005, 6.47697, 5.34711, 5.99146, 5.8999, 5.4161, 5.64545, 6.10925, 6.2634, 6.27099, 5.45959, 6.05209, 5.8579300000000005, 6.12905, 5.72031, 6.1717, 6.8773, 6.14204, 5.4161, 6.23637, 5.99146, 5.99146, 5.4161, 6.551080000000001, 5.65948, 6.2653, 6.30992, 5.82008, 6.49979, 6.17379, 6.17794, 6.2634, 6.17379, 6.505780000000001, 5.42935, 6.739339999999999, 5.70378, 6.77992, 5.9269300000000005, 6.17379, 5.42053, 6.3207699999999996, 5.940169999999999, 6.3081, 5.70378, 5.2983199999999995, 6.43775, 6.10925, 5.99146, 6.5439099999999994, 6.44572, 6.62007, 6.10925, 5.5606800000000005, 5.78383, 5.97635, 6.13123, 6.7093, 6.39693, 6.08677, 5.68698, 6.17794, 5.4161, 6.33328, 6.33328, 6.20456, 5.70378, 6.39693, 5.4161, 5.5797300000000005, 6.09131, 6.04025, 6.39693, 6.354369999999999, 6.44572, 6.4892, 6.08677, 6.33683, 5.86079, 6.10925, 5.70378, 6.5582, 6.95177, 6.2146099999999995, 6.6107, 5.67675, 5.7589, 5.8861, 5.95584, 5.9839400000000005, 6.07535, 5.66988, 5.99146, 5.8999, 6.507280000000001, 5.7365699999999995, 6.03787, 5.47227, 6.68461, 6.17794, 5.95324, 5.70378, 5.82305, 5.64191, 6.21261, 6.1944099999999995, 6.49224, 5.45959, 6.06843, 5.7651900000000005, 5.53339, 5.78383, 6.770789999999999, 6.13123, 6.769639999999999, 6.10925, 6.39693, 6.51767, 5.5797300000000005, 6.42162, 6.13123, 6.720219999999999, 5.43808, 5.8141300000000005, 6.802389999999999, 6.2480400000000005, 6.715380000000001, 6.995769999999999, 6.66568, 5.8579300000000005, 5.19296, 5.940169999999999 ], "y0": "<9" }, { "fillcolor": "hsla(220, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(220, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": "<9&yes", "line": { "color": "hsla(220, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(220, 70%, 70%,1)", "line": { "color": "hsla(220, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "hexagon" }, "meanline": { "color": "hsla(220, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage <9&yes", "orientation": "h", "pointpos": 0.6, "points": false, "scalegroup": "<9&yes", "scalemode": "count", "showlegend": true, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 5.99146, 6.907760000000001, 6.94505, 7.17012, 7.041410000000001, 6.787839999999999, 7.5606, 6.29157, 6.16331, 6.7226300000000005, 6.551080000000001, 6.60665, 6.461469999999999, 6.84055, 6.622739999999999, 7.04752, 6.770789999999999, 7.045780000000001, 6.765039999999999, 6.694560000000001, 6.77878, 6.93925, 6.47697, 7.20786, 6.85646, 6.22654, 6.39693, 6.41836, 6.90575, 6.58755, 6.3716099999999996, 6.272880000000001, 6.765039999999999, 6.126869999999999, 7.486610000000001, 5.99146, 6.7093, 6.90575, 6.05209, 6.907760000000001, 6.48311, 6.62007, 6.95655, 6.4552, 6.907760000000001, 6.55536, 6.89467, 7.17012, 6.85646, 6.608, 6.45047, 6.95655, 6.938280000000001, 6.563860000000001, 7.06987, 6.47697, 6.715380000000001, 6.86171, 7.00307, 6.62007, 7.1333, 6.85646, 6.57925, 6.65415, 6.44254, 6.44254, 6.77992, 6.29157, 7.03878, 6.10032, 6.38012, 6.56526, 6.46459, 6.50429, 6.59987, 6.715380000000001, 6.90575, 6.66568, 6.77194, 6.66823, 6.745239999999999, 6.51471, 6.41346, 6.07074, 6.54822, 6.802389999999999, 7.3908, 6.48311, 7.034389999999999, 6.55393, 6.72743, 6.49979, 6.11147, 6.85646, 6.05912, 6.90575, 6.62007, 6.8200199999999995, 6.49072, 6.85646, 6.59167, 7.00307, 6.44572, 6.50129, 6.96979, 6.5467900000000006, 6.34388, 6.60665, 6.35784, 7.288930000000001, 6.67203, 6.92363, 6.593039999999999, 6.3207699999999996, 6.30992, 6.48158, 6.47389, 6.05912, 6.32794, 6.44413, 6.5903, 6.85646, 6.5820300000000005, 6.2146099999999995, 6.66058, 7.18463, 6.28413, 7.12287, 7.30653, 6.32794, 6.697030000000001, 6.3243599999999995, 6.551080000000001, 6.85013, 7.12287, 6.272880000000001, 6.81014, 6.6733, 6.57368, 6.2146099999999995, 7.35819, 6.95655, 6.83518, 6.967910000000001, 7.062189999999999, 6.60935, 6.311730000000001, 6.52503 ], "y0": "<9" }, { "box": { "visible": false }, "fillcolor": "rgba(0, 0, 0, 0)", "hoverinfo": "x", "hoveron": "points", "jitter": 0.3, "legendgroup": "<9&yes", "line": { "color": "rgba(0, 0, 0, 0)", "width": 0 }, "marker": { "color": "hsla(220, 70%, 70%,1)", "line": { "color": "hsla(220, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "hexagon" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0.6, "points": "all", "scalegroup": "<9&yes", "showlegend": false, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 5.99146, 6.907760000000001, 6.94505, 7.17012, 7.041410000000001, 6.787839999999999, 7.5606, 6.29157, 6.16331, 6.7226300000000005, 6.551080000000001, 6.60665, 6.461469999999999, 6.84055, 6.622739999999999, 7.04752, 6.770789999999999, 7.045780000000001, 6.765039999999999, 6.694560000000001, 6.77878, 6.93925, 6.47697, 7.20786, 6.85646, 6.22654, 6.39693, 6.41836, 6.90575, 6.58755, 6.3716099999999996, 6.272880000000001, 6.765039999999999, 6.126869999999999, 7.486610000000001, 5.99146, 6.7093, 6.90575, 6.05209, 6.907760000000001, 6.48311, 6.62007, 6.95655, 6.4552, 6.907760000000001, 6.55536, 6.89467, 7.17012, 6.85646, 6.608, 6.45047, 6.95655, 6.938280000000001, 6.563860000000001, 7.06987, 6.47697, 6.715380000000001, 6.86171, 7.00307, 6.62007, 7.1333, 6.85646, 6.57925, 6.65415, 6.44254, 6.44254, 6.77992, 6.29157, 7.03878, 6.10032, 6.38012, 6.56526, 6.46459, 6.50429, 6.59987, 6.715380000000001, 6.90575, 6.66568, 6.77194, 6.66823, 6.745239999999999, 6.51471, 6.41346, 6.07074, 6.54822, 6.802389999999999, 7.3908, 6.48311, 7.034389999999999, 6.55393, 6.72743, 6.49979, 6.11147, 6.85646, 6.05912, 6.90575, 6.62007, 6.8200199999999995, 6.49072, 6.85646 ], "y0": "<9" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(220, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(220, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": "<9&yes", "line": { "width": 0 }, "marker": { "color": "hsla(220, 50%, 50%,0.9)", "line": { "color": "hsla(220, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "hexagon" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": false, "scalegroup": "<9&yes", "showlegend": false, "side": "positive", "span": [ 6.615983393129042, 6.7183966833679625 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 5.99146, 6.907760000000001, 6.94505, 7.17012, 7.041410000000001, 6.787839999999999, 7.5606, 6.29157, 6.16331, 6.7226300000000005, 6.551080000000001, 6.60665, 6.461469999999999, 6.84055, 6.622739999999999, 7.04752, 6.770789999999999, 7.045780000000001, 6.765039999999999, 6.694560000000001, 6.77878, 6.93925, 6.47697, 7.20786, 6.85646, 6.22654, 6.39693, 6.41836, 6.90575, 6.58755, 6.3716099999999996, 6.272880000000001, 6.765039999999999, 6.126869999999999, 7.486610000000001, 5.99146, 6.7093, 6.90575, 6.05209, 6.907760000000001, 6.48311, 6.62007, 6.95655, 6.4552, 6.907760000000001, 6.55536, 6.89467, 7.17012, 6.85646, 6.608, 6.45047, 6.95655, 6.938280000000001, 6.563860000000001, 7.06987, 6.47697, 6.715380000000001, 6.86171, 7.00307, 6.62007, 7.1333, 6.85646, 6.57925, 6.65415, 6.44254, 6.44254, 6.77992, 6.29157, 7.03878, 6.10032, 6.38012, 6.56526, 6.46459, 6.50429, 6.59987, 6.715380000000001, 6.90575, 6.66568, 6.77194, 6.66823, 6.745239999999999, 6.51471, 6.41346, 6.07074, 6.54822, 6.802389999999999, 7.3908, 6.48311, 7.034389999999999, 6.55393, 6.72743, 6.49979, 6.11147, 6.85646, 6.05912, 6.90575, 6.62007, 6.8200199999999995, 6.49072, 6.85646, 6.59167, 7.00307, 6.44572, 6.50129, 6.96979, 6.5467900000000006, 6.34388, 6.60665, 6.35784, 7.288930000000001, 6.67203, 6.92363, 6.593039999999999, 6.3207699999999996, 6.30992, 6.48158, 6.47389, 6.05912, 6.32794, 6.44413, 6.5903, 6.85646, 6.5820300000000005, 6.2146099999999995, 6.66058, 7.18463, 6.28413, 7.12287, 7.30653, 6.32794, 6.697030000000001, 6.3243599999999995, 6.551080000000001, 6.85013, 7.12287, 6.272880000000001, 6.81014, 6.6733, 6.57368, 6.2146099999999995, 7.35819, 6.95655, 6.83518, 6.967910000000001, 7.062189999999999, 6.60935, 6.311730000000001, 6.52503 ], "y0": "<9" }, { "fillcolor": "hsla(275, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(275, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": ">13&no", "line": { "color": "hsla(275, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(275, 70%, 70%,1)", "line": { "color": "hsla(275, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "hexagon" }, "meanline": { "color": "hsla(275, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage >13&no", "orientation": "h", "pointpos": -0.6, "points": false, "scalegroup": ">13&no", "scalemode": "count", "showlegend": true, "side": "negative", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 7.67322, 6.95845, 7.91936, 7.71869, 6.882439999999999, 6.907760000000001, 7.557989999999999, 6.57925, 7.313219999999999, 6.47697, 7.1309, 7.11477, 6.993930000000001, 6.593039999999999, 6.30992, 6.30992, 7.554860000000001, 6.85646, 6.90575, 6.90575, 7.35947, 6.39693, 6.90575, 6.802389999999999, 5.94803, 7.282760000000001, 6.65286, 6.23048, 6.67203, 7.56008, 6.30992, 7.47307, 6.90575, 7.46737, 6.829789999999999, 7.6009, 6.62007, 6.907760000000001, 7.60589, 6.53669, 6.19236, 7.37776, 6.27476, 6.745239999999999, 7.20786, 6.62007, 6.42162, 6.745239999999999, 6.317159999999999, 6.551080000000001, 6.68461, 7.1107, 6.90575, 6.84588, 8.10168, 7.31255, 6.90575, 6.802389999999999, 6.907760000000001, 6.6592899999999995, 8.047189999999999, 6.17379, 6.3952599999999995, 7.78322, 7.12448, 6.8977, 7.82405, 7.75148, 7.1309, 7.041410000000001, 7.346010000000001, 6.966019999999999, 6.90575, 7.17012, 7.82405, 6.88755, 6.39693, 6.90575, 5.7525699999999995, 7.00125, 7.064760000000001, 6.907760000000001, 6.62007, 6.10925, 6.39693, 8.16052, 6.77422, 6.77422, 6.6567300000000005, 6.70073, 8.05516, 6.90575, 6.97261, 7.29709, 6.7226300000000005, 6.47697, 6.85118, 6.49224, 7.158510000000001, 6.34564, 6.90575, 7.313219999999999, 6.05209, 6.90575, 5.9269300000000005, 6.6783399999999995, 7.1309, 6.96508, 6.61607, 6.715380000000001, 5.96615, 7.04752, 6.98008, 6.912739999999999, 7.3670800000000005, 6.68461, 7.09008, 6.90575, 6.90575, 6.47697, 6.67203, 6.658010000000001, 6.90575, 6.6592899999999995, 6.745239999999999, 7.20786, 6.65286, 7.43838, 7.26193, 6.23245, 6.85646, 7.26193, 5.99146, 6.907760000000001, 6.85646, 7.481560000000001, 7.57558, 6.83518, 6.90575, 6.86693, 5.4161, 6.39693, 6.58617, 7.282760000000001, 6.90575, 6.10925, 7.1309, 7.1333, 7.24423, 6.04025, 6.802389999999999, 6.70073, 7.313219999999999, 6.95655, 7.07918, 7.745, 6.87213, 6.8773, 6.703189999999999, 7.37776, 6.907760000000001, 6.882439999999999, 6.48158, 7.04752, 6.984719999999999, 7.663880000000001, 6.43775, 8.05516, 7.24423, 6.33683, 7.00307, 6.354369999999999, 6.62007, 6.68461, 6.62007, 6.85646, 6.44572, 6.95655, 6.8977, 6.90575, 7.676010000000001, 7.20786, 6.65286, 6.8844899999999996, 6.62007, 6.43615, 7.79028, 6.90575, 6.79122, 7.522939999999999, 6.907760000000001, 6.47697, 6.65286, 7.20786, 6.90575, 6.984719999999999, 6.85646, 6.85646, 6.05209, 6.90575, 6.91374, 6.57786, 6.41182, 6.907760000000001, 7.236339999999999, 6.802389999999999, 6.72743, 6.551080000000001, 6.8977, 6.984719999999999, 7.459910000000001, 7.1309, 6.745239999999999, 6.64249, 7.49332, 6.2634, 7.495539999999999, 6.10925, 6.58617, 7.313219999999999, 6.90575, 7.48717, 7.49109, 6.90575, 7.37212, 7.24423, 7.09008, 7.4553, 7.1309, 7.24423, 6.57925, 6.34388, 6.90575, 7.24423, 7.75577, 6.90575, 6.42162, 6.551080000000001, 7.279319999999999, 6.96508, 7.251339999999999, 7.14756, 7.33368, 7.201169999999999, 6.95655, 7.24423, 6.30992, 6.72743, 5.9269300000000005, 6.354369999999999, 6.6592899999999995, 6.62007, 6.987489999999999, 7.09008, 7.04752, 6.90575, 7.43838, 7.1309, 6.739339999999999, 7.46737, 7.279319999999999, 7.1309, 6.65028, 6.29157, 6.551080000000001, 6.63857, 6.907760000000001, 7.67322, 7.2957399999999994, 6.802389999999999, 6.90575, 7.503839999999999, 6.15273, 7.57558, 6.90575, 7.39388, 7.24065, 6.13773, 6.3952599999999995, 7.04752, 7.09008, 6.77992, 7.22766, 7.475339999999999, 6.62007, 7.91936, 6.907760000000001, 6.51471, 6.253830000000001, 5.9269300000000005, 6.30992, 7.3651800000000005, 6.53669, 6.30992, 6.58617, 6.85646, 6.892639999999999, 6.90575, 7.334980000000001, 6.93245, 6.10925, 6.77992, 6.68461, 7.696210000000001, 7.31122, 6.62007, 7.37776, 6.907760000000001, 7.18917, 7.9459100000000005, 7.424760000000001, 7.6009, 6.90575, 8.16052, 6.98008, 6.984719999999999, 6.802389999999999, 6.745239999999999, 7.1309, 6.62007, 6.58617, 6.51471, 7.1309, 6.17379, 7.78322, 7.9724699999999995, 7.64969, 7.331060000000001, 7.279319999999999, 8.02027, 7.01571, 6.57786, 6.47697, 6.85646, 6.67077, 6.85646, 7.1309, 6.85646, 6.90575, 6.95655, 6.126869999999999, 7.23778, 6.30992, 7.696210000000001, 6.68461, 6.47697, 6.84055, 6.4892, 6.39693, 6.43775, 6.30992, 6.85646, 6.04025, 6.86693, 6.65286, 5.9814099999999994, 6.28227, 7.46737, 7.18007, 7.46737, 6.253830000000001, 6.52209, 6.90575, 6.1025599999999995, 7.6009, 6.96885, 6.317159999999999, 6.72503, 7.17012, 6.995769999999999, 7.09008, 6.885510000000001, 6.52209, 7.313219999999999, 7.71869, 7.143619999999999, 6.802389999999999, 7.09008, 6.90575, 6.424869999999999, 7.37776, 6.882439999999999, 7.495539999999999, 7.1546199999999995, 6.68461, 6.6592899999999995, 6.42972, 7.0579, 7.185389999999999, 7.233460000000001, 6.90575, 5.8861, 6.10925, 6.90575, 7.64969, 7.1309, 6.745239999999999, 6.02102, 6.47697, 7.6009, 6.90575, 6.10925, 7.17242, 7.24423, 6.85646, 6.90575, 7.696210000000001, 5.940169999999999, 6.82763, 7.014810000000001, 6.551080000000001, 7.04752, 7.803839999999999, 6.829789999999999, 7.54961, 6.69084, 7.1929300000000005, 6.33328, 7.1309, 7.17012, 6.77992, 6.90575, 6.90575, 5.01728, 7.9831, 6.9828600000000005, 7.09506, 6.44572, 6.90575, 6.85646, 7.346010000000001, 6.68085, 6.1070199999999994, 6.43775, 6.253830000000001, 7.30317, 6.829789999999999, 5.99146, 6.633319999999999, 6.907760000000001, 7.43838, 7.09008, 6.94986, 7.06902, 6.745239999999999, 6.93049, 6.50279, 6.551080000000001, 6.694560000000001, 6.44572, 7.408530000000001, 6.551080000000001, 6.39693, 6.715380000000001, 6.745239999999999, 6.63726, 6.73102, 6.3243599999999995, 6.721430000000001, 6.10925, 7.313219999999999, 6.4488900000000005, 6.8384100000000005, 7.03615, 6.85751, 7.313219999999999, 6.86693, 7.08171, 6.907760000000001, 6.28972, 7.46737, 7.2724, 6.47697, 6.9828600000000005, 7.450080000000001, 6.77422, 7.1309, 7.4832399999999994, 6.90575, 6.90575, 7.1309, 6.802389999999999, 6.82655, 6.90575, 7.52833, 6.88755, 6.90575, 6.4677, 7.3651800000000005, 7.43838, 7.82405, 6.04025, 7.279319999999999, 7.54961, 6.90575, 6.90575, 6.62007, 7.0967199999999995, 7.0255399999999995, 6.39693, 7.226210000000001, 7.728860000000001, 6.3952599999999995, 6.99942, 7.18007, 7.17012, 7.313219999999999, 6.52209, 6.90575, 7.8935699999999995, 6.34564, 6.3699, 6.551080000000001, 6.66568, 6.2146099999999995, 7.696210000000001, 7.313219999999999, 6.8426800000000005, 6.768489999999999, 7.3981699999999995, 7.12287, 6.551080000000001, 6.745239999999999, 7.1309, 7.04752, 6.78672, 7.09008, 6.47697, 7.1025, 5.9814099999999994, 7.24423, 7.27101, 7.245660000000001, 7.279319999999999, 7.67322, 7.07918, 7.279319999999999, 7.1309, 6.70073, 6.07993, 6.46925, 7.6009, 6.22654, 7.11802, 6.77422, 7.26193, 7.00307, 7.46737, 6.8254600000000005, 7.04752, 6.50429, 6.90575, 6.90575, 6.318969999999999, 6.802389999999999, 6.62007, 7.09008, 7.84502, 6.62007, 6.14633, 7.17012, 6.882439999999999, 7.54697, 6.60665, 7.408530000000001, 7.2724, 6.46614, 6.95655, 5.7462, 7.04316, 6.58064, 6.8533, 6.90575, 7.014810000000001, 7.266830000000001, 6.84055, 6.49224, 6.68461, 7.00307, 6.852239999999999, 6.51175, 7.522939999999999, 6.16331, 6.907760000000001, 6.90575, 7.408530000000001, 6.30992, 6.39693, 6.90575, 7.20786, 7.173960000000001, 6.90575, 7.0884100000000005, 6.802389999999999, 6.90575, 7.1592899999999995, 6.697030000000001, 6.90575, 7.01571, 6.42162, 7.46737, 6.90575, 7.6009, 6.17379, 7.346010000000001, 6.90575, 7.24423, 7.0942300000000005, 7.86327, 7.09008, 6.354369999999999, 7.46737, 6.39693, 6.90575, 6.40192, 6.593039999999999, 7.06902, 6.802389999999999, 6.39693, 6.57786, 6.68461, 6.42972, 6.85435, 6.907760000000001, 6.43775, 6.85646, 7.54961, 6.90575, 6.90575, 6.77194, 6.77422, 6.99485, 6.6567300000000005, 6.9489, 7.354360000000001, 7.279319999999999, 5.8861, 6.49224, 6.35611, 7.20786, 6.90575, 6.95655, 7.10988, 6.927560000000001, 6.90575, 7.09008, 7.1309, 6.907760000000001, 7.6009, 6.963189999999999, 6.90575, 6.90575, 6.796819999999999, 6.9147300000000005, 6.90575, 6.47697, 7.522939999999999, 6.354369999999999, 6.90575, 6.77422, 7.313219999999999, 6.816739999999999, 7.6009, 6.551080000000001, 7.24423, 6.49224, 7.93737, 7.67322, 6.77422, 6.2634, 7.57558, 7.495539999999999, 6.29157, 6.59715, 6.03787, 6.556780000000001, 7.6009, 7.925160000000001, 7.86327, 6.70073, 6.802389999999999, 6.90575, 6.90575, 6.90575, 6.907760000000001, 6.907760000000001, 6.05209, 6.90575, 7.313219999999999, 6.3699, 6.12249, 6.14847, 6.62007, 6.59987, 6.62007, 6.8966899999999995, 6.77422, 7.46737, 6.95655, 7.495539999999999, 6.88755, 8.03916, 6.829789999999999, 6.43455, 6.90575, 6.9256, 7.6009, 7.10988, 7.24423, 7.313219999999999, 6.9256, 6.39693, 7.313219999999999, 7.408530000000001, 6.90575, 5.86079, 6.9256, 6.551080000000001, 6.57925, 6.90575, 6.73102, 7.09008, 6.62007, 6.68461, 6.90575, 7.24423, 7.0422899999999995, 6.52209, 6.59987, 5.96615, 7.43838, 6.818919999999999, 6.2691, 5.9135, 6.2146099999999995, 6.2634, 6.96885, 6.3403599999999996, 6.90575, 7.04752, 6.62007, 7.49332, 6.62007, 6.753439999999999, 6.77422, 6.56526, 6.88755, 7.47307, 6.90575, 7.909860000000001, 7.106610000000001, 6.6567300000000005, 6.697030000000001, 7.740660000000001, 6.43775, 6.9256, 6.43615, 6.10925, 5.89715, 6.33683, 6.85646, 6.77422, 6.2146099999999995, 7.54961, 6.354369999999999, 6.62007, 7.61332, 6.8977, 7.40914, 6.30992, 6.551080000000001, 6.90575, 7.24423, 7.062189999999999, 6.2441699999999996, 6.829789999999999, 6.95655, 6.38012, 6.91175, 6.91175, 6.8773, 7.80588, 6.9613, 6.907760000000001, 7.507689999999999, 6.90575, 6.385190000000001, 7.31122, 6.1717, 7.6009, 7.66153, 7.17012, 6.56948, 8.00637, 6.90575, 7.522939999999999, 7.05704, 6.802389999999999, 7.20564, 6.47697, 7.6009, 5.7525699999999995, 6.802389999999999, 6.84375, 6.95655, 7.34923, 6.90575, 6.697030000000001, 7.1309, 7.86327, 6.551080000000001, 7.0422899999999995, 6.57925, 7.71869, 7.1309, 7.401839999999999, 7.2724, 6.90575, 6.3699, 7.82405, 6.95655, 5.8999, 6.90575, 6.907760000000001, 6.2146099999999995, 6.67203, 7.6811, 7.27031, 6.721430000000001, 6.99485, 7.37776, 7.6009, 8.0229, 6.90575, 6.6592899999999995, 7.1309, 6.984719999999999, 5.89715, 7.362010000000001, 6.39693, 7.313219999999999, 6.0845, 7.46737, 5.48064, 6.2634, 7.05618, 6.9256, 6.90575, 6.753439999999999, 6.966019999999999, 6.5582, 6.907760000000001, 6.62007, 6.95655, 6.57786, 7.313219999999999, 7.37776, 7.1309, 7.279319999999999, 6.73102, 6.53669, 6.507280000000001, 7.09008, 6.90575, 6.58617, 7.43838, 7.2724, 7.91936, 6.90575, 7.57558, 6.2146099999999995, 6.20456, 6.899719999999999, 7.484369999999999, 7.293019999999999, 7.173189999999999, 6.815639999999999, 6.43294, 6.813439999999999, 6.90575, 7.09008, 7.279319999999999, 6.73102, 6.6592899999999995, 7.91936, 7.00307, 6.206580000000001, 6.90575, 6.715380000000001, 6.96885, 6.39693, 6.6958, 6.2146099999999995, 7.09008, 6.4892, 7.676010000000001, 5.70378, 6.907760000000001, 7.54961, 5.79606, 6.77422, 7.37776, 7.17012, 6.96885, 6.62007, 6.90575, 7.1309, 8.12089, 7.740660000000001, 7.14283, 6.89467, 5.43808, 6.646389999999999, 7.0255399999999995, 7.37776, 6.17379, 6.51323, 6.09807, 6.8977, 7.7021, 7.6009, 6.551080000000001, 7.09008, 6.880380000000001, 6.745239999999999, 7.1309, 7.82084, 6.72743, 6.583410000000001, 7.196689999999999, 6.44731, 7.24423, 7.1309, 7.6009, 6.86693, 6.85646, 6.7417, 7.18917, 7.84385, 6.73815, 6.57647, 8.3082, 7.1309, 7.17012, 6.90575, 6.62007, 6.86693, 6.90575, 6.907760000000001, 7.0255399999999995, 6.802389999999999, 7.903969999999999, 7.037030000000001, 7.04752, 6.47697, 6.76388, 6.90575, 6.70073, 6.90575, 6.0282800000000005, 6.69827, 6.57786, 6.593039999999999, 6.99485, 6.85646, 7.279319999999999, 6.30992, 6.785589999999999, 6.745239999999999, 7.29097, 6.802389999999999, 7.20786, 6.802389999999999, 6.75926, 6.8977, 6.90575, 7.4570300000000005, 7.1309, 6.85646, 7.90101, 7.81883, 6.62007, 6.813439999999999, 6.551080000000001, 6.90575, 6.90575, 6.30992, 6.39693, 7.17012, 6.4677, 6.47697, 7.1546199999999995, 7.37776, 7.136480000000001, 7.03878, 6.715380000000001, 7.1309, 6.90575, 7.1507, 6.86693, 6.90575, 7.57353, 6.23048, 6.802389999999999, 7.6009, 7.313219999999999, 6.802389999999999, 7.251339999999999, 6.802389999999999, 7.43838, 7.17012, 6.68461, 6.90575, 7.281389999999999, 7.17702, 6.90575, 6.90575, 8.229510000000001, 7.37776, 6.79122, 6.39693, 7.46737, 6.802389999999999, 6.62007, 6.90575, 7.70661, 6.907760000000001, 5.99894, 7.1107, 7.20786, 6.556780000000001, 6.745239999999999, 6.907760000000001, 6.28972, 7.00307, 6.77765, 6.90575, 6.90575, 7.21891, 6.30992, 6.90575, 6.745239999999999, 7.6009, 6.817830000000001, 6.6592899999999995, 7.46737, 6.720219999999999, 6.90575, 6.86485, 7.216710000000001, 6.90575, 6.551080000000001, 7.398789999999999, 7.37776, 7.35883, 6.745239999999999, 7.05876, 6.694560000000001, 6.68461, 7.64969, 7.027310000000001, 6.88857, 6.23441, 7.6256, 6.633319999999999, 6.6346300000000005, 7.195189999999999, 6.49527, 7.54961, 7.09008, 7.00307, 6.77422, 7.1293, 7.17012, 6.2146099999999995, 6.90575, 6.80461, 6.72743, 7.04752, 6.30992, 6.90575, 7.495539999999999, 6.745239999999999, 8.048789999999999, 7.313219999999999, 7.17012, 6.90575, 6.551080000000001, 7.17012, 8.08641, 6.55962, 6.74406, 7.56008, 7.408530000000001, 6.61338, 6.01616, 6.85646, 7.313219999999999, 6.62672, 7.43838, 5.8944, 7.88231, 6.90575, 7.37776, 6.44413, 6.551080000000001, 6.90575, 7.46737, 6.63595, 6.802389999999999, 7.346010000000001, 6.90575, 6.52209, 6.3699, 7.04752, 5.79606, 6.85646, 6.90575, 6.16331, 6.56526, 6.01616, 7.46737, 7.67322, 6.35957, 5.8579300000000005, 7.1309, 6.57925, 6.39693, 7.46737, 6.95655, 6.3716099999999996, 7.293019999999999, 6.08677, 7.64969, 8.13153, 6.3613, 6.551080000000001, 6.907760000000001, 6.907760000000001, 6.43775, 6.6567300000000005, 6.712960000000001, 7.062189999999999, 6.77992, 6.16331, 7.495539999999999, 6.90575, 6.551080000000001, 7.0255399999999995, 7.495539999999999, 6.23441, 6.461469999999999, 6.62007, 6.745239999999999, 6.30992, 6.47697, 7.24423, 7.09008, 7.00307, 6.551080000000001, 7.64969, 6.78333, 6.74993, 6.57925, 7.18917, 6.802389999999999, 7.014810000000001, 6.68461, 6.62007, 7.313219999999999, 7.37776, 7.64969, 7.91936, 8.00637, 6.65286, 6.57368, 5.70711, 6.57786, 7.37776, 7.408530000000001, 7.91936, 7.09008, 7.37776, 6.6592899999999995, 6.90575, 7.57558, 7.200419999999999, 6.35957, 6.51471, 8.537, 7.36645, 5.9269300000000005, 6.61338, 7.64969, 7.09008, 5.8861, 6.90575, 6.43615, 6.68461, 6.3952599999999995, 7.313219999999999, 6.79122, 6.802389999999999, 6.39693, 5.98896, 7.620710000000001, 7.09008, 7.6009, 6.48768, 7.525639999999999, 6.72623, 7.585789999999999, 6.45362, 6.354369999999999, 7.346010000000001, 7.027310000000001, 6.9489, 7.495539999999999, 6.633319999999999, 7.30317, 7.313219999999999, 6.90575, 7.196689999999999, 6.68461, 6.7901, 6.57228, 7.393260000000001, 6.68461, 6.62007, 6.2146099999999995, 6.983789999999999, 6.90575, 6.62007, 7.00307, 7.313219999999999, 6.90575, 6.90575, 6.68461, 6.58617, 6.86693, 6.2146099999999995, 6.17379, 7.6009, 5.99146, 7.46737, 6.9226399999999995, 6.30992, 7.1309, 6.9147300000000005, 6.381819999999999, 6.90575, 7.6009, 6.907760000000001, 6.30992, 6.9828600000000005, 7.44659, 7.388330000000001, 6.85118, 7.24423, 6.90575, 7.10906, 6.222580000000001, 7.17012, 6.07993 ], "y0": ">13" }, { "box": { "visible": false }, "fillcolor": "rgba(0, 0, 0, 0)", "hoverinfo": "x", "hoveron": "points", "jitter": 0.3, "legendgroup": ">13&no", "line": { "color": "rgba(0, 0, 0, 0)", "width": 0 }, "marker": { "color": "hsla(275, 70%, 70%,1)", "line": { "color": "hsla(275, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "hexagon" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": -0.6, "points": "all", "scalegroup": ">13&no", "showlegend": false, "side": "negative", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 7.67322, 6.95845, 7.91936, 7.71869, 6.882439999999999, 6.907760000000001, 7.557989999999999, 6.57925, 7.313219999999999, 6.47697, 7.1309, 7.11477, 6.993930000000001, 6.593039999999999, 6.30992, 6.30992, 7.554860000000001, 6.85646, 6.90575, 6.90575, 7.35947, 6.39693, 6.90575, 6.802389999999999, 5.94803, 7.282760000000001, 6.65286, 6.23048, 6.67203, 7.56008, 6.30992, 7.47307, 6.90575, 7.46737, 6.829789999999999, 7.6009, 6.62007, 6.907760000000001, 7.60589, 6.53669, 6.19236, 7.37776, 6.27476, 6.745239999999999, 7.20786, 6.62007, 6.42162, 6.745239999999999, 6.317159999999999, 6.551080000000001, 6.68461, 7.1107, 6.90575, 6.84588, 8.10168, 7.31255, 6.90575, 6.802389999999999, 6.907760000000001, 6.6592899999999995, 8.047189999999999, 6.17379, 6.3952599999999995, 7.78322, 7.12448, 6.8977, 7.82405, 7.75148, 7.1309, 7.041410000000001, 7.346010000000001, 6.966019999999999, 6.90575, 7.17012, 7.82405, 6.88755, 6.39693, 6.90575, 5.7525699999999995, 7.00125, 7.064760000000001, 6.907760000000001, 6.62007, 6.10925, 6.39693, 8.16052, 6.77422, 6.77422, 6.6567300000000005, 6.70073, 8.05516, 6.90575, 6.97261, 7.29709, 6.7226300000000005, 6.47697, 6.85118, 6.49224, 7.158510000000001, 6.34564 ], "y0": ">13" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(275, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(275, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": ">13&no", "line": { "width": 0 }, "marker": { "color": "hsla(275, 50%, 50%,0.9)", "line": { "color": "hsla(275, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "hexagon" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": false, "scalegroup": ">13&no", "showlegend": false, "side": "negative", "span": [ 6.8839045052823575, 6.934437080259182 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 7.67322, 6.95845, 7.91936, 7.71869, 6.882439999999999, 6.907760000000001, 7.557989999999999, 6.57925, 7.313219999999999, 6.47697, 7.1309, 7.11477, 6.993930000000001, 6.593039999999999, 6.30992, 6.30992, 7.554860000000001, 6.85646, 6.90575, 6.90575, 7.35947, 6.39693, 6.90575, 6.802389999999999, 5.94803, 7.282760000000001, 6.65286, 6.23048, 6.67203, 7.56008, 6.30992, 7.47307, 6.90575, 7.46737, 6.829789999999999, 7.6009, 6.62007, 6.907760000000001, 7.60589, 6.53669, 6.19236, 7.37776, 6.27476, 6.745239999999999, 7.20786, 6.62007, 6.42162, 6.745239999999999, 6.317159999999999, 6.551080000000001, 6.68461, 7.1107, 6.90575, 6.84588, 8.10168, 7.31255, 6.90575, 6.802389999999999, 6.907760000000001, 6.6592899999999995, 8.047189999999999, 6.17379, 6.3952599999999995, 7.78322, 7.12448, 6.8977, 7.82405, 7.75148, 7.1309, 7.041410000000001, 7.346010000000001, 6.966019999999999, 6.90575, 7.17012, 7.82405, 6.88755, 6.39693, 6.90575, 5.7525699999999995, 7.00125, 7.064760000000001, 6.907760000000001, 6.62007, 6.10925, 6.39693, 8.16052, 6.77422, 6.77422, 6.6567300000000005, 6.70073, 8.05516, 6.90575, 6.97261, 7.29709, 6.7226300000000005, 6.47697, 6.85118, 6.49224, 7.158510000000001, 6.34564, 6.90575, 7.313219999999999, 6.05209, 6.90575, 5.9269300000000005, 6.6783399999999995, 7.1309, 6.96508, 6.61607, 6.715380000000001, 5.96615, 7.04752, 6.98008, 6.912739999999999, 7.3670800000000005, 6.68461, 7.09008, 6.90575, 6.90575, 6.47697, 6.67203, 6.658010000000001, 6.90575, 6.6592899999999995, 6.745239999999999, 7.20786, 6.65286, 7.43838, 7.26193, 6.23245, 6.85646, 7.26193, 5.99146, 6.907760000000001, 6.85646, 7.481560000000001, 7.57558, 6.83518, 6.90575, 6.86693, 5.4161, 6.39693, 6.58617, 7.282760000000001, 6.90575, 6.10925, 7.1309, 7.1333, 7.24423, 6.04025, 6.802389999999999, 6.70073, 7.313219999999999, 6.95655, 7.07918, 7.745, 6.87213, 6.8773, 6.703189999999999, 7.37776, 6.907760000000001, 6.882439999999999, 6.48158, 7.04752, 6.984719999999999, 7.663880000000001, 6.43775, 8.05516, 7.24423, 6.33683, 7.00307, 6.354369999999999, 6.62007, 6.68461, 6.62007, 6.85646, 6.44572, 6.95655, 6.8977, 6.90575, 7.676010000000001, 7.20786, 6.65286, 6.8844899999999996, 6.62007, 6.43615, 7.79028, 6.90575, 6.79122, 7.522939999999999, 6.907760000000001, 6.47697, 6.65286, 7.20786, 6.90575, 6.984719999999999, 6.85646, 6.85646, 6.05209, 6.90575, 6.91374, 6.57786, 6.41182, 6.907760000000001, 7.236339999999999, 6.802389999999999, 6.72743, 6.551080000000001, 6.8977, 6.984719999999999, 7.459910000000001, 7.1309, 6.745239999999999, 6.64249, 7.49332, 6.2634, 7.495539999999999, 6.10925, 6.58617, 7.313219999999999, 6.90575, 7.48717, 7.49109, 6.90575, 7.37212, 7.24423, 7.09008, 7.4553, 7.1309, 7.24423, 6.57925, 6.34388, 6.90575, 7.24423, 7.75577, 6.90575, 6.42162, 6.551080000000001, 7.279319999999999, 6.96508, 7.251339999999999, 7.14756, 7.33368, 7.201169999999999, 6.95655, 7.24423, 6.30992, 6.72743, 5.9269300000000005, 6.354369999999999, 6.6592899999999995, 6.62007, 6.987489999999999, 7.09008, 7.04752, 6.90575, 7.43838, 7.1309, 6.739339999999999, 7.46737, 7.279319999999999, 7.1309, 6.65028, 6.29157, 6.551080000000001, 6.63857, 6.907760000000001, 7.67322, 7.2957399999999994, 6.802389999999999, 6.90575, 7.503839999999999, 6.15273, 7.57558, 6.90575, 7.39388, 7.24065, 6.13773, 6.3952599999999995, 7.04752, 7.09008, 6.77992, 7.22766, 7.475339999999999, 6.62007, 7.91936, 6.907760000000001, 6.51471, 6.253830000000001, 5.9269300000000005, 6.30992, 7.3651800000000005, 6.53669, 6.30992, 6.58617, 6.85646, 6.892639999999999, 6.90575, 7.334980000000001, 6.93245, 6.10925, 6.77992, 6.68461, 7.696210000000001, 7.31122, 6.62007, 7.37776, 6.907760000000001, 7.18917, 7.9459100000000005, 7.424760000000001, 7.6009, 6.90575, 8.16052, 6.98008, 6.984719999999999, 6.802389999999999, 6.745239999999999, 7.1309, 6.62007, 6.58617, 6.51471, 7.1309, 6.17379, 7.78322, 7.9724699999999995, 7.64969, 7.331060000000001, 7.279319999999999, 8.02027, 7.01571, 6.57786, 6.47697, 6.85646, 6.67077, 6.85646, 7.1309, 6.85646, 6.90575, 6.95655, 6.126869999999999, 7.23778, 6.30992, 7.696210000000001, 6.68461, 6.47697, 6.84055, 6.4892, 6.39693, 6.43775, 6.30992, 6.85646, 6.04025, 6.86693, 6.65286, 5.9814099999999994, 6.28227, 7.46737, 7.18007, 7.46737, 6.253830000000001, 6.52209, 6.90575, 6.1025599999999995, 7.6009, 6.96885, 6.317159999999999, 6.72503, 7.17012, 6.995769999999999, 7.09008, 6.885510000000001, 6.52209, 7.313219999999999, 7.71869, 7.143619999999999, 6.802389999999999, 7.09008, 6.90575, 6.424869999999999, 7.37776, 6.882439999999999, 7.495539999999999, 7.1546199999999995, 6.68461, 6.6592899999999995, 6.42972, 7.0579, 7.185389999999999, 7.233460000000001, 6.90575, 5.8861, 6.10925, 6.90575, 7.64969, 7.1309, 6.745239999999999, 6.02102, 6.47697, 7.6009, 6.90575, 6.10925, 7.17242, 7.24423, 6.85646, 6.90575, 7.696210000000001, 5.940169999999999, 6.82763, 7.014810000000001, 6.551080000000001, 7.04752, 7.803839999999999, 6.829789999999999, 7.54961, 6.69084, 7.1929300000000005, 6.33328, 7.1309, 7.17012, 6.77992, 6.90575, 6.90575, 5.01728, 7.9831, 6.9828600000000005, 7.09506, 6.44572, 6.90575, 6.85646, 7.346010000000001, 6.68085, 6.1070199999999994, 6.43775, 6.253830000000001, 7.30317, 6.829789999999999, 5.99146, 6.633319999999999, 6.907760000000001, 7.43838, 7.09008, 6.94986, 7.06902, 6.745239999999999, 6.93049, 6.50279, 6.551080000000001, 6.694560000000001, 6.44572, 7.408530000000001, 6.551080000000001, 6.39693, 6.715380000000001, 6.745239999999999, 6.63726, 6.73102, 6.3243599999999995, 6.721430000000001, 6.10925, 7.313219999999999, 6.4488900000000005, 6.8384100000000005, 7.03615, 6.85751, 7.313219999999999, 6.86693, 7.08171, 6.907760000000001, 6.28972, 7.46737, 7.2724, 6.47697, 6.9828600000000005, 7.450080000000001, 6.77422, 7.1309, 7.4832399999999994, 6.90575, 6.90575, 7.1309, 6.802389999999999, 6.82655, 6.90575, 7.52833, 6.88755, 6.90575, 6.4677, 7.3651800000000005, 7.43838, 7.82405, 6.04025, 7.279319999999999, 7.54961, 6.90575, 6.90575, 6.62007, 7.0967199999999995, 7.0255399999999995, 6.39693, 7.226210000000001, 7.728860000000001, 6.3952599999999995, 6.99942, 7.18007, 7.17012, 7.313219999999999, 6.52209, 6.90575, 7.8935699999999995, 6.34564, 6.3699, 6.551080000000001, 6.66568, 6.2146099999999995, 7.696210000000001, 7.313219999999999, 6.8426800000000005, 6.768489999999999, 7.3981699999999995, 7.12287, 6.551080000000001, 6.745239999999999, 7.1309, 7.04752, 6.78672, 7.09008, 6.47697, 7.1025, 5.9814099999999994, 7.24423, 7.27101, 7.245660000000001, 7.279319999999999, 7.67322, 7.07918, 7.279319999999999, 7.1309, 6.70073, 6.07993, 6.46925, 7.6009, 6.22654, 7.11802, 6.77422, 7.26193, 7.00307, 7.46737, 6.8254600000000005, 7.04752, 6.50429, 6.90575, 6.90575, 6.318969999999999, 6.802389999999999, 6.62007, 7.09008, 7.84502, 6.62007, 6.14633, 7.17012, 6.882439999999999, 7.54697, 6.60665, 7.408530000000001, 7.2724, 6.46614, 6.95655, 5.7462, 7.04316, 6.58064, 6.8533, 6.90575, 7.014810000000001, 7.266830000000001, 6.84055, 6.49224, 6.68461, 7.00307, 6.852239999999999, 6.51175, 7.522939999999999, 6.16331, 6.907760000000001, 6.90575, 7.408530000000001, 6.30992, 6.39693, 6.90575, 7.20786, 7.173960000000001, 6.90575, 7.0884100000000005, 6.802389999999999, 6.90575, 7.1592899999999995, 6.697030000000001, 6.90575, 7.01571, 6.42162, 7.46737, 6.90575, 7.6009, 6.17379, 7.346010000000001, 6.90575, 7.24423, 7.0942300000000005, 7.86327, 7.09008, 6.354369999999999, 7.46737, 6.39693, 6.90575, 6.40192, 6.593039999999999, 7.06902, 6.802389999999999, 6.39693, 6.57786, 6.68461, 6.42972, 6.85435, 6.907760000000001, 6.43775, 6.85646, 7.54961, 6.90575, 6.90575, 6.77194, 6.77422, 6.99485, 6.6567300000000005, 6.9489, 7.354360000000001, 7.279319999999999, 5.8861, 6.49224, 6.35611, 7.20786, 6.90575, 6.95655, 7.10988, 6.927560000000001, 6.90575, 7.09008, 7.1309, 6.907760000000001, 7.6009, 6.963189999999999, 6.90575, 6.90575, 6.796819999999999, 6.9147300000000005, 6.90575, 6.47697, 7.522939999999999, 6.354369999999999, 6.90575, 6.77422, 7.313219999999999, 6.816739999999999, 7.6009, 6.551080000000001, 7.24423, 6.49224, 7.93737, 7.67322, 6.77422, 6.2634, 7.57558, 7.495539999999999, 6.29157, 6.59715, 6.03787, 6.556780000000001, 7.6009, 7.925160000000001, 7.86327, 6.70073, 6.802389999999999, 6.90575, 6.90575, 6.90575, 6.907760000000001, 6.907760000000001, 6.05209, 6.90575, 7.313219999999999, 6.3699, 6.12249, 6.14847, 6.62007, 6.59987, 6.62007, 6.8966899999999995, 6.77422, 7.46737, 6.95655, 7.495539999999999, 6.88755, 8.03916, 6.829789999999999, 6.43455, 6.90575, 6.9256, 7.6009, 7.10988, 7.24423, 7.313219999999999, 6.9256, 6.39693, 7.313219999999999, 7.408530000000001, 6.90575, 5.86079, 6.9256, 6.551080000000001, 6.57925, 6.90575, 6.73102, 7.09008, 6.62007, 6.68461, 6.90575, 7.24423, 7.0422899999999995, 6.52209, 6.59987, 5.96615, 7.43838, 6.818919999999999, 6.2691, 5.9135, 6.2146099999999995, 6.2634, 6.96885, 6.3403599999999996, 6.90575, 7.04752, 6.62007, 7.49332, 6.62007, 6.753439999999999, 6.77422, 6.56526, 6.88755, 7.47307, 6.90575, 7.909860000000001, 7.106610000000001, 6.6567300000000005, 6.697030000000001, 7.740660000000001, 6.43775, 6.9256, 6.43615, 6.10925, 5.89715, 6.33683, 6.85646, 6.77422, 6.2146099999999995, 7.54961, 6.354369999999999, 6.62007, 7.61332, 6.8977, 7.40914, 6.30992, 6.551080000000001, 6.90575, 7.24423, 7.062189999999999, 6.2441699999999996, 6.829789999999999, 6.95655, 6.38012, 6.91175, 6.91175, 6.8773, 7.80588, 6.9613, 6.907760000000001, 7.507689999999999, 6.90575, 6.385190000000001, 7.31122, 6.1717, 7.6009, 7.66153, 7.17012, 6.56948, 8.00637, 6.90575, 7.522939999999999, 7.05704, 6.802389999999999, 7.20564, 6.47697, 7.6009, 5.7525699999999995, 6.802389999999999, 6.84375, 6.95655, 7.34923, 6.90575, 6.697030000000001, 7.1309, 7.86327, 6.551080000000001, 7.0422899999999995, 6.57925, 7.71869, 7.1309, 7.401839999999999, 7.2724, 6.90575, 6.3699, 7.82405, 6.95655, 5.8999, 6.90575, 6.907760000000001, 6.2146099999999995, 6.67203, 7.6811, 7.27031, 6.721430000000001, 6.99485, 7.37776, 7.6009, 8.0229, 6.90575, 6.6592899999999995, 7.1309, 6.984719999999999, 5.89715, 7.362010000000001, 6.39693, 7.313219999999999, 6.0845, 7.46737, 5.48064, 6.2634, 7.05618, 6.9256, 6.90575, 6.753439999999999, 6.966019999999999, 6.5582, 6.907760000000001, 6.62007, 6.95655, 6.57786, 7.313219999999999, 7.37776, 7.1309, 7.279319999999999, 6.73102, 6.53669, 6.507280000000001, 7.09008, 6.90575, 6.58617, 7.43838, 7.2724, 7.91936, 6.90575, 7.57558, 6.2146099999999995, 6.20456, 6.899719999999999, 7.484369999999999, 7.293019999999999, 7.173189999999999, 6.815639999999999, 6.43294, 6.813439999999999, 6.90575, 7.09008, 7.279319999999999, 6.73102, 6.6592899999999995, 7.91936, 7.00307, 6.206580000000001, 6.90575, 6.715380000000001, 6.96885, 6.39693, 6.6958, 6.2146099999999995, 7.09008, 6.4892, 7.676010000000001, 5.70378, 6.907760000000001, 7.54961, 5.79606, 6.77422, 7.37776, 7.17012, 6.96885, 6.62007, 6.90575, 7.1309, 8.12089, 7.740660000000001, 7.14283, 6.89467, 5.43808, 6.646389999999999, 7.0255399999999995, 7.37776, 6.17379, 6.51323, 6.09807, 6.8977, 7.7021, 7.6009, 6.551080000000001, 7.09008, 6.880380000000001, 6.745239999999999, 7.1309, 7.82084, 6.72743, 6.583410000000001, 7.196689999999999, 6.44731, 7.24423, 7.1309, 7.6009, 6.86693, 6.85646, 6.7417, 7.18917, 7.84385, 6.73815, 6.57647, 8.3082, 7.1309, 7.17012, 6.90575, 6.62007, 6.86693, 6.90575, 6.907760000000001, 7.0255399999999995, 6.802389999999999, 7.903969999999999, 7.037030000000001, 7.04752, 6.47697, 6.76388, 6.90575, 6.70073, 6.90575, 6.0282800000000005, 6.69827, 6.57786, 6.593039999999999, 6.99485, 6.85646, 7.279319999999999, 6.30992, 6.785589999999999, 6.745239999999999, 7.29097, 6.802389999999999, 7.20786, 6.802389999999999, 6.75926, 6.8977, 6.90575, 7.4570300000000005, 7.1309, 6.85646, 7.90101, 7.81883, 6.62007, 6.813439999999999, 6.551080000000001, 6.90575, 6.90575, 6.30992, 6.39693, 7.17012, 6.4677, 6.47697, 7.1546199999999995, 7.37776, 7.136480000000001, 7.03878, 6.715380000000001, 7.1309, 6.90575, 7.1507, 6.86693, 6.90575, 7.57353, 6.23048, 6.802389999999999, 7.6009, 7.313219999999999, 6.802389999999999, 7.251339999999999, 6.802389999999999, 7.43838, 7.17012, 6.68461, 6.90575, 7.281389999999999, 7.17702, 6.90575, 6.90575, 8.229510000000001, 7.37776, 6.79122, 6.39693, 7.46737, 6.802389999999999, 6.62007, 6.90575, 7.70661, 6.907760000000001, 5.99894, 7.1107, 7.20786, 6.556780000000001, 6.745239999999999, 6.907760000000001, 6.28972, 7.00307, 6.77765, 6.90575, 6.90575, 7.21891, 6.30992, 6.90575, 6.745239999999999, 7.6009, 6.817830000000001, 6.6592899999999995, 7.46737, 6.720219999999999, 6.90575, 6.86485, 7.216710000000001, 6.90575, 6.551080000000001, 7.398789999999999, 7.37776, 7.35883, 6.745239999999999, 7.05876, 6.694560000000001, 6.68461, 7.64969, 7.027310000000001, 6.88857, 6.23441, 7.6256, 6.633319999999999, 6.6346300000000005, 7.195189999999999, 6.49527, 7.54961, 7.09008, 7.00307, 6.77422, 7.1293, 7.17012, 6.2146099999999995, 6.90575, 6.80461, 6.72743, 7.04752, 6.30992, 6.90575, 7.495539999999999, 6.745239999999999, 8.048789999999999, 7.313219999999999, 7.17012, 6.90575, 6.551080000000001, 7.17012, 8.08641, 6.55962, 6.74406, 7.56008, 7.408530000000001, 6.61338, 6.01616, 6.85646, 7.313219999999999, 6.62672, 7.43838, 5.8944, 7.88231, 6.90575, 7.37776, 6.44413, 6.551080000000001, 6.90575, 7.46737, 6.63595, 6.802389999999999, 7.346010000000001, 6.90575, 6.52209, 6.3699, 7.04752, 5.79606, 6.85646, 6.90575, 6.16331, 6.56526, 6.01616, 7.46737, 7.67322, 6.35957, 5.8579300000000005, 7.1309, 6.57925, 6.39693, 7.46737, 6.95655, 6.3716099999999996, 7.293019999999999, 6.08677, 7.64969, 8.13153, 6.3613, 6.551080000000001, 6.907760000000001, 6.907760000000001, 6.43775, 6.6567300000000005, 6.712960000000001, 7.062189999999999, 6.77992, 6.16331, 7.495539999999999, 6.90575, 6.551080000000001, 7.0255399999999995, 7.495539999999999, 6.23441, 6.461469999999999, 6.62007, 6.745239999999999, 6.30992, 6.47697, 7.24423, 7.09008, 7.00307, 6.551080000000001, 7.64969, 6.78333, 6.74993, 6.57925, 7.18917, 6.802389999999999, 7.014810000000001, 6.68461, 6.62007, 7.313219999999999, 7.37776, 7.64969, 7.91936, 8.00637, 6.65286, 6.57368, 5.70711, 6.57786, 7.37776, 7.408530000000001, 7.91936, 7.09008, 7.37776, 6.6592899999999995, 6.90575, 7.57558, 7.200419999999999, 6.35957, 6.51471, 8.537, 7.36645, 5.9269300000000005, 6.61338, 7.64969, 7.09008, 5.8861, 6.90575, 6.43615, 6.68461, 6.3952599999999995, 7.313219999999999, 6.79122, 6.802389999999999, 6.39693, 5.98896, 7.620710000000001, 7.09008, 7.6009, 6.48768, 7.525639999999999, 6.72623, 7.585789999999999, 6.45362, 6.354369999999999, 7.346010000000001, 7.027310000000001, 6.9489, 7.495539999999999, 6.633319999999999, 7.30317, 7.313219999999999, 6.90575, 7.196689999999999, 6.68461, 6.7901, 6.57228, 7.393260000000001, 6.68461, 6.62007, 6.2146099999999995, 6.983789999999999, 6.90575, 6.62007, 7.00307, 7.313219999999999, 6.90575, 6.90575, 6.68461, 6.58617, 6.86693, 6.2146099999999995, 6.17379, 7.6009, 5.99146, 7.46737, 6.9226399999999995, 6.30992, 7.1309, 6.9147300000000005, 6.381819999999999, 6.90575, 7.6009, 6.907760000000001, 6.30992, 6.9828600000000005, 7.44659, 7.388330000000001, 6.85118, 7.24423, 6.90575, 7.10906, 6.222580000000001, 7.17012, 6.07993 ], "y0": ">13" }, { "fillcolor": "hsla(330, 50%, 50%,0.3)", "hoverinfo": "x+name+text", "hoverlabel": { "bgcolor": "hsla(330, 45%, 45%,0.4)" }, "hoveron": "points+kde+violins", "jitter": 0.3, "legendgroup": ">13&yes", "line": { "color": "hsla(330, 20%, 20%,0.8)", "width": 1 }, "marker": { "color": "hsla(330, 70%, 70%,1)", "line": { "color": "hsla(330, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "hexagon" }, "meanline": { "color": "hsla(330, 20%, 20%,0.8)", "visible": true, "width": 1 }, "name": "lwage >13&yes", "orientation": "h", "pointpos": 0.6, "points": false, "scalegroup": ">13&yes", "scalemode": "count", "showlegend": true, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 7.068169999999999, 6.907760000000001, 6.90675, 7.00307, 6.74052, 6.79122, 7.111510000000001, 6.90575, 6.65286, 7.00307, 6.43775, 6.68461, 7.00307, 6.53669, 6.65544, 6.62007, 7.313219999999999, 6.90575, 7.1507, 6.58064, 7.04752, 6.768489999999999, 6.907760000000001, 6.907760000000001, 7.338889999999999, 7.00307, 6.84055, 6.85646, 6.68461, 7.15305, 6.31536, 6.802389999999999, 6.9147300000000005, 6.746410000000001, 6.715380000000001, 6.32972, 6.6783399999999995, 6.7334, 6.97635, 6.95655, 7.08171, 6.983789999999999, 6.93537, 6.90575, 6.49072, 7.1309, 6.68461, 7.1309, 6.79122, 6.55536, 6.77422, 7.17012, 6.354369999999999, 6.602589999999999, 5.82305, 6.86066, 6.48004, 7.00307, 6.8200199999999995, 6.81124, 6.8865300000000005, 6.90575, 6.52942, 6.93925, 6.354369999999999, 6.11589, 6.80461, 6.98101, 6.77422, 6.829789999999999, 6.6567300000000005, 6.785589999999999, 6.62007, 6.04025, 6.85646, 7.09008, 6.94698, 6.1717, 6.907760000000001, 6.354369999999999, 7.26193, 6.907760000000001, 6.745239999999999, 6.72743, 6.68461, 6.53669, 6.253830000000001, 6.49224, 7.28207, 6.07535, 6.77422, 6.68461, 6.8426800000000005, 7.09008, 6.1070199999999994, 7.346010000000001, 6.7511, 6.58617, 7.26193, 6.0282800000000005, 6.575080000000001, 6.85646, 6.47697, 6.224559999999999, 6.551080000000001, 6.68461, 6.68461, 6.715380000000001, 7.42833, 6.748760000000001, 6.975410000000001, 6.42162, 7.16085, 7.04752, 6.38012, 6.461469999999999, 7.20786, 6.33683, 6.05209, 6.68461, 7.279319999999999, 6.76273, 6.82437, 6.47697, 6.885510000000001, 7.00307, 6.907760000000001, 6.62007, 7.1624, 6.813439999999999, 7.04752, 7.20786, 6.62007, 6.95655, 7.09008, 6.95655, 7.43838, 6.99118, 6.85646, 6.95655, 6.907760000000001, 6.62007, 6.62007, 6.259580000000001, 6.58893, 6.708080000000001, 6.63595, 6.75577, 6.58617, 6.84588, 7.59287, 6.57925, 5.8693, 6.95655, 6.907760000000001, 6.8533, 6.62007, 7.1546199999999995, 6.86171, 6.77422, 6.77992, 6.79122, 7.02997, 6.907760000000001, 6.58617, 6.68461, 7.346660000000001, 6.9613, 6.95655, 7.18917, 7.09008, 6.95655, 7.64969, 6.907760000000001, 6.43775, 7.06133, 6.551080000000001, 7.18917, 7.0967199999999995, 6.36819, 7.293019999999999, 7.35244, 6.30992, 6.802389999999999, 6.93245, 6.551080000000001, 6.90575, 6.354369999999999, 6.52209, 7.181589999999999, 6.98008, 7.313219999999999, 6.68461, 6.2146099999999995, 6.802389999999999, 6.90575, 7.084230000000001, 6.90575, 6.551080000000001, 6.768489999999999, 6.43775, 6.424869999999999, 7.09008, 7.37776, 6.37502, 6.57925, 6.59715, 6.354369999999999, 6.74052, 7.11314, 6.813439999999999, 6.2146099999999995, 7.09008, 6.52942, 6.701960000000001, 6.8426800000000005, 6.18826, 7.16085, 6.57925, 6.802389999999999, 6.551080000000001, 6.983789999999999, 7.195189999999999, 6.39693, 7.18917, 6.461469999999999, 6.697030000000001, 6.43775, 6.768489999999999, 6.95845, 7.200419999999999, 6.55393, 6.593039999999999, 6.966019999999999, 7.09008, 6.68336, 6.892639999999999, 6.807930000000001, 6.74288, 6.4599, 7.098380000000001, 6.52649, 6.73459, 6.6515699999999995, 6.68461, 6.745239999999999, 7.08171, 6.95655, 6.47697, 7.2717, 7.135689999999999, 7.32251, 6.29711, 7.014810000000001, 6.551080000000001, 6.54247, 6.97261, 6.83518, 7.20786, 7.0103100000000005, 6.907760000000001, 6.802389999999999, 6.18002, 6.90575, 6.907760000000001, 6.745239999999999, 5.96358, 6.67203, 6.802389999999999, 6.92363, 7.1155800000000005, 6.86485, 6.95655, 7.09008, 6.633319999999999, 7.2861899999999995, 7.37776, 6.74993, 6.90575, 6.907760000000001, 6.95655, 6.39693, 7.09008, 6.49979, 6.84162, 6.95655, 6.633319999999999, 7.1107, 6.90575, 6.60665, 7.04752, 7.09008, 6.813439999999999, 6.47697, 6.87213, 6.882439999999999, 6.7093, 6.85646, 6.68461, 6.62007, 6.51471, 6.84055, 7.01392, 5.94803 ], "y0": ">13" }, { "box": { "visible": false }, "fillcolor": "rgba(0, 0, 0, 0)", "hoverinfo": "x", "hoveron": "points", "jitter": 0.3, "legendgroup": ">13&yes", "line": { "color": "rgba(0, 0, 0, 0)", "width": 0 }, "marker": { "color": "hsla(330, 70%, 70%,1)", "line": { "color": "hsla(330, 20%, 20%,0.4)", "width": 0.5 }, "opacity": 0.4, "size": 9, "symbol": "hexagon" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0.6, "points": "all", "scalegroup": ">13&yes", "showlegend": false, "side": "positive", "spanmode": "soft", "type": "violin", "width": 0, "x": [ 7.068169999999999, 6.907760000000001, 6.90675, 7.00307, 6.74052, 6.79122, 7.111510000000001, 6.90575, 6.65286, 7.00307, 6.43775, 6.68461, 7.00307, 6.53669, 6.65544, 6.62007, 7.313219999999999, 6.90575, 7.1507, 6.58064, 7.04752, 6.768489999999999, 6.907760000000001, 6.907760000000001, 7.338889999999999, 7.00307, 6.84055, 6.85646, 6.68461, 7.15305, 6.31536, 6.802389999999999, 6.9147300000000005, 6.746410000000001, 6.715380000000001, 6.32972, 6.6783399999999995, 6.7334, 6.97635, 6.95655, 7.08171, 6.983789999999999, 6.93537, 6.90575, 6.49072, 7.1309, 6.68461, 7.1309, 6.79122, 6.55536, 6.77422, 7.17012, 6.354369999999999, 6.602589999999999, 5.82305, 6.86066, 6.48004, 7.00307, 6.8200199999999995, 6.81124, 6.8865300000000005, 6.90575, 6.52942, 6.93925, 6.354369999999999, 6.11589, 6.80461, 6.98101, 6.77422, 6.829789999999999, 6.6567300000000005, 6.785589999999999, 6.62007, 6.04025, 6.85646, 7.09008, 6.94698, 6.1717, 6.907760000000001, 6.354369999999999, 7.26193, 6.907760000000001, 6.745239999999999, 6.72743, 6.68461, 6.53669, 6.253830000000001, 6.49224, 7.28207, 6.07535, 6.77422, 6.68461, 6.8426800000000005, 7.09008, 6.1070199999999994, 7.346010000000001, 6.7511, 6.58617, 7.26193, 6.0282800000000005 ], "y0": ">13" }, { "box": { "fillcolor": "rgba(0,0,0,0)", "line": { "color": "hsla(330, 30%, 30%,1)", "width": 0.5 }, "visible": true, "width": 0.25 }, "fillcolor": "hsla(330, 45%, 45%,0.4)", "hoverinfo": "none", "jitter": 0, "legendgroup": ">13&yes", "line": { "width": 0 }, "marker": { "color": "hsla(330, 50%, 50%,0.9)", "line": { "color": "hsla(330, 20%, 20%,0.4)", "width": 0.5 }, "size": 11, "symbol": "hexagon" }, "meanline": { "visible": false }, "name": "", "orientation": "h", "pointpos": 0, "points": false, "scalegroup": ">13&yes", "showlegend": false, "side": "positive", "span": [ 6.757719005834382, 6.827437569546815 ], "spanmode": "manual", "type": "violin", "width": 0, "x": [ 7.068169999999999, 6.907760000000001, 6.90675, 7.00307, 6.74052, 6.79122, 7.111510000000001, 6.90575, 6.65286, 7.00307, 6.43775, 6.68461, 7.00307, 6.53669, 6.65544, 6.62007, 7.313219999999999, 6.90575, 7.1507, 6.58064, 7.04752, 6.768489999999999, 6.907760000000001, 6.907760000000001, 7.338889999999999, 7.00307, 6.84055, 6.85646, 6.68461, 7.15305, 6.31536, 6.802389999999999, 6.9147300000000005, 6.746410000000001, 6.715380000000001, 6.32972, 6.6783399999999995, 6.7334, 6.97635, 6.95655, 7.08171, 6.983789999999999, 6.93537, 6.90575, 6.49072, 7.1309, 6.68461, 7.1309, 6.79122, 6.55536, 6.77422, 7.17012, 6.354369999999999, 6.602589999999999, 5.82305, 6.86066, 6.48004, 7.00307, 6.8200199999999995, 6.81124, 6.8865300000000005, 6.90575, 6.52942, 6.93925, 6.354369999999999, 6.11589, 6.80461, 6.98101, 6.77422, 6.829789999999999, 6.6567300000000005, 6.785589999999999, 6.62007, 6.04025, 6.85646, 7.09008, 6.94698, 6.1717, 6.907760000000001, 6.354369999999999, 7.26193, 6.907760000000001, 6.745239999999999, 6.72743, 6.68461, 6.53669, 6.253830000000001, 6.49224, 7.28207, 6.07535, 6.77422, 6.68461, 6.8426800000000005, 7.09008, 6.1070199999999994, 7.346010000000001, 6.7511, 6.58617, 7.26193, 6.0282800000000005, 6.575080000000001, 6.85646, 6.47697, 6.224559999999999, 6.551080000000001, 6.68461, 6.68461, 6.715380000000001, 7.42833, 6.748760000000001, 6.975410000000001, 6.42162, 7.16085, 7.04752, 6.38012, 6.461469999999999, 7.20786, 6.33683, 6.05209, 6.68461, 7.279319999999999, 6.76273, 6.82437, 6.47697, 6.885510000000001, 7.00307, 6.907760000000001, 6.62007, 7.1624, 6.813439999999999, 7.04752, 7.20786, 6.62007, 6.95655, 7.09008, 6.95655, 7.43838, 6.99118, 6.85646, 6.95655, 6.907760000000001, 6.62007, 6.62007, 6.259580000000001, 6.58893, 6.708080000000001, 6.63595, 6.75577, 6.58617, 6.84588, 7.59287, 6.57925, 5.8693, 6.95655, 6.907760000000001, 6.8533, 6.62007, 7.1546199999999995, 6.86171, 6.77422, 6.77992, 6.79122, 7.02997, 6.907760000000001, 6.58617, 6.68461, 7.346660000000001, 6.9613, 6.95655, 7.18917, 7.09008, 6.95655, 7.64969, 6.907760000000001, 6.43775, 7.06133, 6.551080000000001, 7.18917, 7.0967199999999995, 6.36819, 7.293019999999999, 7.35244, 6.30992, 6.802389999999999, 6.93245, 6.551080000000001, 6.90575, 6.354369999999999, 6.52209, 7.181589999999999, 6.98008, 7.313219999999999, 6.68461, 6.2146099999999995, 6.802389999999999, 6.90575, 7.084230000000001, 6.90575, 6.551080000000001, 6.768489999999999, 6.43775, 6.424869999999999, 7.09008, 7.37776, 6.37502, 6.57925, 6.59715, 6.354369999999999, 6.74052, 7.11314, 6.813439999999999, 6.2146099999999995, 7.09008, 6.52942, 6.701960000000001, 6.8426800000000005, 6.18826, 7.16085, 6.57925, 6.802389999999999, 6.551080000000001, 6.983789999999999, 7.195189999999999, 6.39693, 7.18917, 6.461469999999999, 6.697030000000001, 6.43775, 6.768489999999999, 6.95845, 7.200419999999999, 6.55393, 6.593039999999999, 6.966019999999999, 7.09008, 6.68336, 6.892639999999999, 6.807930000000001, 6.74288, 6.4599, 7.098380000000001, 6.52649, 6.73459, 6.6515699999999995, 6.68461, 6.745239999999999, 7.08171, 6.95655, 6.47697, 7.2717, 7.135689999999999, 7.32251, 6.29711, 7.014810000000001, 6.551080000000001, 6.54247, 6.97261, 6.83518, 7.20786, 7.0103100000000005, 6.907760000000001, 6.802389999999999, 6.18002, 6.90575, 6.907760000000001, 6.745239999999999, 5.96358, 6.67203, 6.802389999999999, 6.92363, 7.1155800000000005, 6.86485, 6.95655, 7.09008, 6.633319999999999, 7.2861899999999995, 7.37776, 6.74993, 6.90575, 6.907760000000001, 6.95655, 6.39693, 7.09008, 6.49979, 6.84162, 6.95655, 6.633319999999999, 7.1107, 6.90575, 6.60665, 7.04752, 7.09008, 6.813439999999999, 6.47697, 6.87213, 6.882439999999999, 6.7093, 6.85646, 6.68461, 6.62007, 6.51471, 6.84055, 7.01392, 5.94803 ], "y0": ">13" } ], "layout": { "legend": { "tracegroupgap": 0, "x": 1.1, "xanchor": "right", "y": 1.1 }, "margin": { "b": 40, "l": 80, "r": 10, "t": 10 }, "paper_bgcolor": "#eeeeff", "plot_bgcolor": "#ffffff", "showlegend": true, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "barpolar" } ], "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" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "colorscale": { "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" ] ], "sequential": [ [ 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, "#f0f921" ] ], "sequentialminus": [ [ 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, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "text": "EducationYears & UnionContract ~ Wage", "x": 0.5 }, "violingap": 0, "violingroupgap": 0, "violinmode": "overlay", "xaxis": { "showgrid": false, "showline": true, "showticklabels": true, "title": { "text": "Wage (log)" }, "visible": true, "zeroline": true }, "yaxis": { "showgrid": true, "showline": true, "showticklabels": true, "side": "left", "title": { "text": "EducationYears & UnionContract" }, "visible": true, "zeroline": true } } }, "text/html": [ "
\n", " \n", " \n", "
\n", " \n", "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "#superimposed plot for combination of two X variables, one of which with 3 bins\n", "traces,layout=cmplot(train,xcol=[\"eduYears\",\"union\"],xsuperimposed=True,ycol=\"lwage\",\n", " ycolorgroups=False, altsidesflip=True, pointsoverdens=True,markoutliers=False,\n", " pointshapes=[\"hexagon\"],pointsmaxdisplayed=100)\n", "layout[\"legend_tracegroupgap\"]=0\n", "layout[\"title_text\"]=\"EducationYears & UnionContract ~ Wage\"\n", "layout[\"xaxis_title\"]=\"Wage (log)\"\n", "layout[\"yaxis_title\"]=\"EducationYears & UnionContract\"\n", "go.Figure(traces,layout)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## To save publication ready vector graphic files (e.g. svg or pdf):" ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [], "source": [ "#using orca to export images (see https://plot.ly/python/getting-started/#static-image-export-support)\n", "#(to install: conda install -c plotly plotly-orca psutil requests)\n", "\n", "###\n", "#fig.write_image('figure.svg')\n", "#fig.write_image('figure.pdf')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## To save a plot as standalone html:" ] }, { "cell_type": "code", "execution_count": 17, "metadata": {}, "outputs": [], "source": [ "jsonplot1=fig.to_json()\n", "template = \"\"\"\n", "\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\"\"\".format(jsonplot1)\n", "homedir = str(Path.home())+'/'\n", "outputfilename=\"plot_name.html\"\n", "\n", "###\n", "#with open(homedir+outputfilename, 'w') as f:\n", "# f.write(template)" ] } ], "metadata": { "@webio": { "lastCommId": null, "lastKernelId": null }, "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.3" } }, "nbformat": 4, "nbformat_minor": 2 }