diff --git a/Plot_compare_Core_Simscape.asv b/Plot_compare_Core_Simscape.asv new file mode 100644 index 0000000000000000000000000000000000000000..bc0f6bd7a3b66155b703ecbeb4e89b13bf65d7e5 --- /dev/null +++ b/Plot_compare_Core_Simscape.asv @@ -0,0 +1,148 @@ +clear all; +clc; close all; + +%% Simulation parameters for input data / output plots + +plot_volt = false; %true : plot voltage only +plot_curr = true; %true : plot current only +raw_values = false; %true : calculate the transformed values from the raw ones + +%% Simulation length parameters + +nbr_values_mean = 100; %number of values used to calculate the mean value of a data +end_values = 0; %the final value taken is RECORD-end_values to calculate the mean value of a data +% RECORD = 2046; %number of values recorded +RECORD = 500; %number of values recorded + +start_plot = 1; %first value for the plot + +% Total simulation +min_length = RECORD; + +% Transitory state if start_plot == 1 +% min_length = 50; + +%% Load files to variables + +file_CORE = ["results_CORE_duty10%.csv", "results_CORE_duty20%.csv", "results_CORE_duty30%.csv", ... + "results_CORE_duty40%.csv", "results_CORE_duty50%.csv", "results_CORE_duty60%.csv", ... + "results_CORE_duty70%.csv", "results_CORE_duty80%.csv", "results_CORE_duty90%.csv"]; + +file_SIMSC = ["results_SIMSC_duty10%.mat", "results_SIMSC_duty20%.mat", "results_SIMSC_duty30%.mat", ... + "results_SIMSC_duty40%.mat", "results_SIMSC_duty50%.mat", "results_SIMSC_duty60%.mat", ... + "results_SIMSC_duty70%.mat", "results_SIMSC_duty80%.mat", "results_SIMSC_duty90%.mat"]; + +Names = ["Duty cycle", "VHigh", "V1Low", "V2Low", "IHigh", "I1Low", "I2Low"]; %tags of the data collected + +legend_Core = ["Core 10%", "Core 20%", "Core 30%", ... + "Core 40%", "Core 50%", "Core 60%", ... + "Core 70%", "Core 80%", "Core 90%"]; %legend Core with several duty cycles + +legend_Simsc = ["Simscape 10%", "Simscape 20%", "Simscape 30%", ... + "Simscape 40%", "Simscape 50%", "Simscape 60%", ... + "Simscape 70%", "Simscape 80%", "Simscape 90%"]; %legend Simscape with several duty cycles + +VHigh_mean_Core = zeros(length(file_CORE),1); +V1Low_mean_Core = zeros(length(file_CORE),1); +V2Low_mean_Core = zeros(length(file_CORE),1); +IHigh_mean_Core = zeros(length(file_CORE),1); +I1Low_mean_Core = zeros(length(file_CORE),1); +I2Low_mean_Core = zeros(length(file_CORE),1); + +VHigh_mean_Simsc = zeros(length(file_SIMSC),1); +V1Low_mean_Simsc = zeros(length(file_SIMSC),1); +V2Low_mean_Simsc = zeros(length(file_SIMSC),1); +IHigh_mean_Simsc = zeros(length(file_SIMSC),1); +I1Low_mean_Simsc = zeros(length(file_SIMSC),1); +I2Low_mean_Simsc = zeros(length(file_SIMSC),1); + +for index_duty = 1:length(file_CORE) + + if(raw_values == true) + TWIST_CORE_raw = dlmread(file_CORE(index_duty), ',', 1,0); %load file + + TWIST_CORE = [TWIST_CORE_raw(:,1).*100, ... + TWIST_CORE_raw(:,2).*VHighParameters(1,1)+VHighParameters(1,2), TWIST_CORE_raw(:,3).*V1LowParameters(1,1)+V1LowParameters(1,2), ... + TWIST_CORE_raw(:,4).*V2LowParameters(1,1)+V2LowParameters(1,2), TWIST_CORE_raw(:,5).*IHighParameters(1,1)+IHighParameters(1,2), ... + TWIST_CORE_raw(:,6).*I1LowParameters(1,1)+I1LowParameters(1,2), TWIST_CORE_raw(:,7).*I2LowParameters(1,1)+I2LowParameters(1,2)]./1000; + else + TWIST_CORE = dlmread(file_CORE(index_duty), ',', 1,0); %load file + end + + TWIST_SIMSC_mat = load(file_SIMSC(index_duty)); %load file + + TWIST_SIMSC = [TWIST_SIMSC_mat.results.dutys.signals.values(1:RECORD,1), TWIST_SIMSC_mat.results.voltages.signals.values(1:RECORD,6), ... + TWIST_SIMSC_mat.results.voltages.signals.values(1:RECORD,2), TWIST_SIMSC_mat.results.voltages.signals.values(1:RECORD,4), ... + TWIST_SIMSC_mat.results.currents.signals.values(1:RECORD,5), TWIST_SIMSC_mat.results.currents.signals.values(1:RECORD,2), ... + TWIST_SIMSC_mat.results.currents.signals.values(1:RECORD,4)]; %duty_cycle_leg1, vHMeas, v1Meas, v2Meas, i1Meas, i2Meas, iHMeas + + %% Declaration of time and reference variables + + t = 100e-6; %control task period + + tt = t*start_plot:t:t*min_length; %total time of the simulation + + %% Plot of the values + + if(plot_volt == true) + % Duty cycle + figure; + subplot(4,1,1); hold on; + ylim([0, 1]); grid; + plot(tt,TWIST_CORE(start_plot:min_length,1)'); + plot(tt,TWIST_SIMSC(start_plot:min_length,1)'); + legend(legend_Core(index_duty), legend_Simsc(index_duty)); + xlabel("Time (s)"); + ylabel("Duty cycle"); + title(Names(1)); + + % Voltage : High / 1 Low / 2 Low + for index_volt=2:1:4 %VHigh / V1Low / V2Low + subplot(4,1,index_volt); hold on; + grid; + plot(tt,TWIST_CORE(start_plot:min_length,index_volt)'); + plot(tt,TWIST_SIMSC(start_plot:min_length,index_volt)'); + legend(legend_Core(index_duty), legend_Simsc(index_duty)); + xlabel("Time (s)"); + ylabel("Voltage (V)"); + title(Names(index_volt)); + end + end + + if(plot_curr == true) + % Current : High / 1 Low / 2 Low + figure; + for index_curr=5:1:7 %IHigh / I1Low / I2Low + subplot(3,1,index_curr-4); hold on; + plot(tt,TWIST_CORE(start_plot:min_length,index_curr)'); + plot(tt,TWIST_SIMSC(start_plot:min_length,index_curr)'); + legend(legend_Core(index_duty),legend_Simsc(index_duty)); + xlabel("Time (s)"); + ylabel("Current (A)"); + title(Names(index_curr)); + end + end + + %% Mean values + + % Static state mean values Core + VHigh_mean_Core(index_duty) = calculateMeanValues(TWIST_CORE, RECORD, nbr_values_mean, end_values, 2); + V1Low_mean_Core(index_duty) = calculateMeanValues(TWIST_CORE, RECORD, nbr_values_mean, end_values, 3); + V2Low_mean_Core(index_duty) = calculateMeanValues(TWIST_CORE, RECORD, nbr_values_mean, end_values, 4); + IHigh_mean_Core(index_duty) = calculateMeanValues(TWIST_CORE, RECORD, nbr_values_mean, end_values, 5); + I1Low_mean_Core(index_duty) = calculateMeanValues(TWIST_CORE, RECORD, nbr_values_mean, end_values, 6); + I2Low_mean_Core(index_duty) = calculateMeanValues(TWIST_CORE, RECORD, nbr_values_mean, end_values, 7); + + % Static state mean values Simscape + VHigh_mean_Simsc(index_duty,1) = calculateMeanValues(TWIST_SIMSC, RECORD, nbr_values_mean, end_values, 2); + V1Low_mean_Simsc(index_duty,1) = calculateMeanValues(TWIST_SIMSC, RECORD, nbr_values_mean, end_values, 3); + V2Low_mean_Simsc(index_duty,1) = calculateMeanValues(TWIST_SIMSC, RECORD, nbr_values_mean, end_values, 4); + IHigh_mean_Simsc(index_duty,1) = calculateMeanValues(TWIST_SIMSC, RECORD, nbr_values_mean, end_values, 5); + I1Low_mean_Simsc(index_duty,1) = calculateMeanValues(TWIST_SIMSC, RECORD, nbr_values_mean, end_values, 6); + I2Low_mean_Simsc(index_duty,1) = calculateMeanValues(TWIST_SIMSC, RECORD, nbr_values_mean, end_values, 7); + +end + +function mean = calculateMeanValues(data, nbr_data, nbr_values, end_values, data_index) + mean = abs(sum(data(nbr_data-nbr_values-end_values:nbr_data-end_values,data_index)))/(nbr_values-end_values); +end \ No newline at end of file diff --git a/Plot_compare_Core_Simscape.m b/Plot_compare_Core_Simscape.m new file mode 100644 index 0000000000000000000000000000000000000000..457e808d2f387d9b8d079ecec20d796714a0392e --- /dev/null +++ b/Plot_compare_Core_Simscape.m @@ -0,0 +1,139 @@ +clear all; +clc; close all; + +%% Simulation parameters for input data / output plots + +plot_volt = false; %true : plot voltage only +plot_curr = true; %true : plot current only +raw_values = false; %true : calculate the transformed values from the raw ones + +%% Simulation length parameters + +nbr_values_mean = 100; %number of values used to calculate the mean value of a data +end_values = 0; %the final value taken is RECORD-end_values to calculate the mean value of a data +% RECORD = 2046; %number of values recorded +RECORD = 500; %number of values recorded + +start_plot = 1; %first value for the plot + +% Total simulation +min_length = RECORD; + +% Transitory state if start_plot == 1 +% min_length = 50; + +%% Load files to variables + +file_CORE = ["results_CORE_duty10%_VHigh24.csv", "results_CORE_duty20%_VHigh24.csv", "results_CORE_duty30%_VHigh24.csv", ... + "results_CORE_duty40%_VHigh24.csv", "results_CORE_duty50%_VHigh24.csv", "results_CORE_duty60%_VHigh24.csv", ... + "results_CORE_duty70%_VHigh24.csv", "results_CORE_duty80%_VHigh24.csv", "results_CORE_duty90%_VHigh24.csv"]; + +file_SIMSC = ["results_SIMSC_duty10%_VHigh24.mat", "results_SIMSC_duty20%_VHigh24.mat", "results_SIMSC_duty30%_VHigh24.mat", ... + "results_SIMSC_duty40%_VHigh24.mat", "results_SIMSC_duty50%_VHigh24.mat", "results_SIMSC_duty60%_VHigh24.mat", ... + "results_SIMSC_duty70%_VHigh24.mat", "results_SIMSC_duty80%_VHigh24.mat", "results_SIMSC_duty90%_VHigh24.mat"]; + +Names = ["Duty cycle", "VHigh", "V1Low", "V2Low", "IHigh", "I1Low", "I2Low"]; %tags of the data collected + +legend_Core = ["Core 10%", "Core 20%", "Core 30%", ... + "Core 40%", "Core 50%", "Core 60%", ... + "Core 70%", "Core 80%", "Core 90%"]; %legend Core with several duty cycles + +legend_Simsc = ["Simscape 10%", "Simscape 20%", "Simscape 30%", ... + "Simscape 40%", "Simscape 50%", "Simscape 60%", ... + "Simscape 70%", "Simscape 80%", "Simscape 90%"]; %legend Simscape with several duty cycles + +VHigh_mean_Core = zeros(length(file_CORE),1); +V1Low_mean_Core = zeros(length(file_CORE),1); +V2Low_mean_Core = zeros(length(file_CORE),1); +IHigh_mean_Core = zeros(length(file_CORE),1); +I1Low_mean_Core = zeros(length(file_CORE),1); +I2Low_mean_Core = zeros(length(file_CORE),1); + +VHigh_mean_Simsc = zeros(length(file_SIMSC),1); +V1Low_mean_Simsc = zeros(length(file_SIMSC),1); +V2Low_mean_Simsc = zeros(length(file_SIMSC),1); +IHigh_mean_Simsc = zeros(length(file_SIMSC),1); +I1Low_mean_Simsc = zeros(length(file_SIMSC),1); +I2Low_mean_Simsc = zeros(length(file_SIMSC),1); + +for index_duty = 1:length(file_CORE) + + TWIST_CORE = dlmread(file_CORE(index_duty), ',', 1,0); %load file + + TWIST_SIMSC_mat = load(file_SIMSC(index_duty)); %load file + + TWIST_SIMSC = [TWIST_SIMSC_mat.results.dutys.signals.values(1:RECORD,1), TWIST_SIMSC_mat.results.voltages.signals.values(1:RECORD,3), ... + TWIST_SIMSC_mat.results.voltages.signals.values(1:RECORD,1), TWIST_SIMSC_mat.results.voltages.signals.values(1:RECORD,2), ... + TWIST_SIMSC_mat.results.currents.signals.values(1:RECORD,3), TWIST_SIMSC_mat.results.currents.signals.values(1:RECORD,1), ... + TWIST_SIMSC_mat.results.currents.signals.values(1:RECORD,2)]; %duty_cycle_leg1, vHMeas, v1Meas, v2Meas, i1Meas, i2Meas, iHMeas + + %% Declaration of time and reference variables + + t = 100e-6; %control task period + + tt = t*start_plot:t:t*min_length; %total time of the simulation + + %% Plot of the values + + if(plot_volt == true) + % Duty cycle + figure; + subplot(4,1,1); hold on; + ylim([0, 1]); grid; + plot(tt,TWIST_CORE(start_plot:min_length,1)'); + plot(tt,TWIST_SIMSC(start_plot:min_length,1)'); + legend(legend_Core(index_duty), legend_Simsc(index_duty)); + xlabel("Time (s)"); + ylabel("Duty cycle"); + title(Names(1)); + + % Voltage : High / 1 Low / 2 Low + for index_volt=2:1:4 %VHigh / V1Low / V2Low + subplot(4,1,index_volt); hold on; + grid; + plot(tt,TWIST_CORE(start_plot:min_length,index_volt)'); + plot(tt,TWIST_SIMSC(start_plot:min_length,index_volt)'); + legend(legend_Core(index_duty), legend_Simsc(index_duty)); + xlabel("Time (s)"); + ylabel("Voltage (V)"); + title(Names(index_volt)); + end + end + + if(plot_curr == true) + % Current : High / 1 Low / 2 Low + figure; + for index_curr=5:1:7 %IHigh / I1Low / I2Low + subplot(3,1,index_curr-4); hold on; + plot(tt,TWIST_CORE(start_plot:min_length,index_curr)'); + plot(tt,TWIST_SIMSC(start_plot:min_length,index_curr)'); + legend(legend_Core(index_duty),legend_Simsc(index_duty)); + xlabel("Time (s)"); + ylabel("Current (A)"); + title(Names(index_curr)); + end + end + + %% Mean values + + % Static state mean values Core + VHigh_mean_Core(index_duty) = calculateMeanValues(TWIST_CORE, RECORD, nbr_values_mean, end_values, 2); + V1Low_mean_Core(index_duty) = calculateMeanValues(TWIST_CORE, RECORD, nbr_values_mean, end_values, 3); + V2Low_mean_Core(index_duty) = calculateMeanValues(TWIST_CORE, RECORD, nbr_values_mean, end_values, 4); + IHigh_mean_Core(index_duty) = calculateMeanValues(TWIST_CORE, RECORD, nbr_values_mean, end_values, 5); + I1Low_mean_Core(index_duty) = calculateMeanValues(TWIST_CORE, RECORD, nbr_values_mean, end_values, 6); + I2Low_mean_Core(index_duty) = calculateMeanValues(TWIST_CORE, RECORD, nbr_values_mean, end_values, 7); + + % Static state mean values Simscape + VHigh_mean_Simsc(index_duty,1) = calculateMeanValues(TWIST_SIMSC, RECORD, nbr_values_mean, end_values, 2); + V1Low_mean_Simsc(index_duty,1) = calculateMeanValues(TWIST_SIMSC, RECORD, nbr_values_mean, end_values, 3); + V2Low_mean_Simsc(index_duty,1) = calculateMeanValues(TWIST_SIMSC, RECORD, nbr_values_mean, end_values, 4); + IHigh_mean_Simsc(index_duty,1) = calculateMeanValues(TWIST_SIMSC, RECORD, nbr_values_mean, end_values, 5); + I1Low_mean_Simsc(index_duty,1) = calculateMeanValues(TWIST_SIMSC, RECORD, nbr_values_mean, end_values, 6); + I2Low_mean_Simsc(index_duty,1) = calculateMeanValues(TWIST_SIMSC, RECORD, nbr_values_mean, end_values, 7); + +end + +function mean = calculateMeanValues(data, nbr_data, nbr_values, end_values, data_index) + mean = abs(sum(data(nbr_data-nbr_values-end_values:nbr_data-end_values,data_index)))/(nbr_values-end_values); +end \ No newline at end of file diff --git a/config_script.m b/config_script.m deleted file mode 100644 index b598d3bfc960996fee23b8318918c564ab5f155a..0000000000000000000000000000000000000000 --- a/config_script.m +++ /dev/null @@ -1,79 +0,0 @@ -% script to launch before everything! -clear all; -%% add the path of this file to the matlabpath. -[dirName, fileName, ext] = fileparts(mfilename('fullpath')); -addpath(dirName); - -%% Initializes the simulation - -sim_time = 0.05; %overall simulation time - -%% Initialize the source parameters - -source_R = 0.1; %source internal resistance [Ohm] -source_V = 40; %source voltage [V] - - -%% Initialize the load parameters - -load_Vout = 24; %load voltage [V] -load_freq = 1; %load frequency [Hz] - near DC -load_Power = 200; %load power [W] - -load_pulse1_on_time = sim_time*0.2; %disturbance starts at 20% of simulation -load_pulse1_off_time = sim_time*0.4; %disturbance ends at 40% of simulation - -load_C = 240e-6; %load capacitance [F] -load_C_init_V = load_Vout ; %load capacitor initial voltage [V] -load_Rline1 = 1; %load line 1 resistance [Ohm] -load_Rline2 = 1; %load line 2 resistance [Ohm] - - -%% Initilalizes twist parameters - -isInterleaved = 1; %defines if the legs are interleaved - -twist_low_side_L = 33e-6; -twist_low_side_rL = 20e-3; -twist_low_side_C = 47e-6 + 0*3*4.7e-6; -twist_low_side_rC = 0.4; - -twist_high_side_rC = 0.1; -twist_high_side_C = 120e-6; -twist_high_side_C_init_V = source_V; - - -twist_FET_Ron = 0.02; -twist_FET_Rd = 0.01; -twist_FET_Vf = 1.5; -twist_FET_Rs = 1e5; -twist_FET_Cs = inf; - - - -twist_freq_switching = 200e3; -twist_period_switching = 1/twist_freq_switching; -twist_freq_control=1000; %control frequency - -twist_freq_sampling=10000; %sampling frequency -twist_period_sampling = 1/twist_freq_sampling; - -twist_duty_cycle_max = 0.9; %Maximum duty cycle -twist_duty_cycle_min = 0.1; %Minimum duty cycle - -twist_pwm_resolution = 100e-9; %resolution of the PWM generator - -twist_meas_delay = 200e-9; %delay of the measurement chain -twist_data_sampling_period = 1/twist_freq_sampling; - -twist_phase_shift_leg_1_deg = 180; -twist_phase_shift_leg_1_sec = (twist_phase_shift_leg_1_deg/360)*(twist_period_switching); - - - - -%% Initialize control parameteres - -control_v_low_ref = 24; %voltage reference for the ++/-- control -control_d_step = 0.01; %step for the ++/-- control -control_droop_R = 1; %resistance of the droop control \ No newline at end of file diff --git a/models/feeder_current.mat b/models/feeder_current.mat new file mode 100644 index 0000000000000000000000000000000000000000..5f1c7b41cac255f2e65f30d29bf515fe9067da73 Binary files /dev/null and b/models/feeder_current.mat differ diff --git a/models/owntech_model_matlab_simulink_simscape.slx b/models/owntech_model_matlab_simulink_simscape.slx new file mode 100644 index 0000000000000000000000000000000000000000..72488e33e78edcdd1206c8a73796f6489a375ab6 Binary files /dev/null and b/models/owntech_model_matlab_simulink_simscape.slx differ diff --git a/models/owntech_model_matlab_simulink_simscape.slxc b/models/owntech_model_matlab_simulink_simscape.slxc new file mode 100644 index 0000000000000000000000000000000000000000..2010034c6886f3583f319bb54e9f3bcbc387f1b2 Binary files /dev/null and b/models/owntech_model_matlab_simulink_simscape.slxc differ diff --git a/models/script_owntech_model_owntech_model.m b/models/script_owntech_model_owntech_model.m new file mode 100644 index 0000000000000000000000000000000000000000..7451d6ae03944152327b5fe6d0d5b6416005c231 --- /dev/null +++ b/models/script_owntech_model_owntech_model.m @@ -0,0 +1,107 @@ +%% Clean everything +clear all; clc; close all; + +%% User configuration + +quick_sim = false; % true : simulation for [user choice] data acquisition / false : simulation for 500 data acquisition +data_save = true ; % true : save in a .mat file the following data : duty / VHigh / V1Low / V2Low / IHigh / I1Low / I2Low +constant_pwm = false; % false : pwm reference will change each simulation [0.1, 0.2 ... 0.9] when quick_sim == false +constant_src_V = true; % false : vhigh reference will change each simulation [24, 48, 72] when quick_sim == false + +load_leg1 = true; % true : load is linked to leg 1 / false : load is linked to leg 2 +pwm_switch = true; % true : change of the pwm during the simulation for a small period / false : constant pwm during simulation + +isInterleaved = true; %true : 180° phase shift between leg 1 and leg 2 / false : 0° phase shift + +%% Setup depending on user configuration + +if(~constant_src_V) + source_V_tab = [24, 48, 72]; %source voltage [V] - simulation for several VHigh + loop_sim_src_V = length(source_V_tab); +else + source_V = 24; %source voltage [V] - user value + loop_sim_src_V = 1; +end + +if(~constant_pwm) + pwm_tab = [0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]; %switching cycle - simulation for several pwm + loop_sim_pwm = length(pwm_tab); +else + pwm = 0.5; %switching cycle - user value + loop_sim_pwm = 1; +end + +if(~quick_sim) + RECORD_SIZE = 500; %number of data acquired - used to plot data with Core-Main +else + RECORD_SIZE = 50; %user value +end + +%% Simulation configuration + +% Initialize times and frequencies +twist_freq_sampling = 10e3; %sampling frequency +twist_period_sampling = 1/twist_freq_sampling; %integrator delay + +twist_freq_data_sampling = 10e3; %data sampling frequency +twist_data_sampling_period = 1/twist_freq_data_sampling; %data sampling delay +twist_data_acquisition_delay = 50e-9; %data acquisition at the peak of the carry + +sim_time = RECORD_SIZE*twist_data_sampling_period; %overall simulation time + +% Initialize the source parameters +source_R = 0.1; %source internal resistance [Ohm] +source_L = 5e-6; %source internal inductance [H] + +% Intialize the load parameters +load_R = 10; %load resistance [Ohm] +load_switch_R = 1e-6; %linked switch resistance [Ohm] + +%% Initialize twist parameters + +run("twist_parameters.m"); + +%% Start simulink simulation + +tic + +open('owntech_model_matlab_simulink_simscape.slx'); + +if(~quick_sim) + for src_V_index=1:loop_sim_src_V + for pwm_index=1:loop_sim_pwm + + if(~constant_src_V) + source_V = source_V_tab(src_V_index); + end + + if(~constant_pwm) + pwm = pwm_tab(pwm_index); + end + + sim('owntech_model_matlab_simulink_simscape.slx'); + + if(data_save == true) + % Data output save + results = ans; + pwm_name = string(pwm*100); + src_V_name = string(source_V); + save('results_SIMSC_duty'+pwm_name+'%_VHigh'+src_V_name,'results'); + end + end + end +else + sim('owntech_model_matlab_simulink_simscape.slx'); + + if(data_save == true) + % Data output save + results = ans; + pwm_name = string(pwm*100); + src_V_name = string(source_V); + save('results_SIMSC_duty'+pwm_name+'%_VHigh'+src_V_name,'results'); + end +end + +toc + + diff --git a/models/slprj/sim/varcache/owntech_model_matlab_simulink/checksumOfCache.mat b/models/slprj/sim/varcache/owntech_model_matlab_simulink/checksumOfCache.mat new file mode 100644 index 0000000000000000000000000000000000000000..c251c6be5f569737a044666aa93ffa157fbde77b Binary files /dev/null and b/models/slprj/sim/varcache/owntech_model_matlab_simulink/checksumOfCache.mat differ diff --git a/models/slprj/sim/varcache/owntech_model_matlab_simulink/tmwinternal/simulink_cache.xml b/models/slprj/sim/varcache/owntech_model_matlab_simulink/tmwinternal/simulink_cache.xml new file mode 100644 index 0000000000000000000000000000000000000000..a1d93f25de72c5ad9e2e250fa4afa89c1174856a --- /dev/null +++ b/models/slprj/sim/varcache/owntech_model_matlab_simulink/tmwinternal/simulink_cache.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<MF0 version="1.1" packageUris="http://schema.mathworks.com/mf0/SlCache/19700101"> + <slcache.FileAttributes type="slcache.FileAttributes" uuid="f07cb65e-8413-47f9-84c3-2a5ea8044b77"> + <checksum>QQzXIy9bg2Gh4Cne/ik4pBCnAY545fG9cOAmxw9rQBNuiu6reYIom+4UouKMHtXe7A6AP50+RSwroPQLbLkoWA==</checksum> + </slcache.FileAttributes> +</MF0> \ No newline at end of file diff --git a/models/slprj/sim/varcache/owntech_model_matlab_simulink/varInfo.mat b/models/slprj/sim/varcache/owntech_model_matlab_simulink/varInfo.mat new file mode 100644 index 0000000000000000000000000000000000000000..09f35d8734fa7d1bb0ec56c11250744dd8111334 Binary files /dev/null and b/models/slprj/sim/varcache/owntech_model_matlab_simulink/varInfo.mat differ diff --git a/models/slprj/sim/varcache/owntech_model_matlab_simulink_simscape/checksumOfCache.mat b/models/slprj/sim/varcache/owntech_model_matlab_simulink_simscape/checksumOfCache.mat new file mode 100644 index 0000000000000000000000000000000000000000..976313628cfe1ffc08fe25b70f874ebc0cc33a97 Binary files /dev/null and b/models/slprj/sim/varcache/owntech_model_matlab_simulink_simscape/checksumOfCache.mat differ diff --git a/models/slprj/sim/varcache/owntech_model_matlab_simulink_simscape/tmwinternal/simulink_cache.xml b/models/slprj/sim/varcache/owntech_model_matlab_simulink_simscape/tmwinternal/simulink_cache.xml new file mode 100644 index 0000000000000000000000000000000000000000..0cd377daafcc95ae6fc81497b7960dad91f7f4e2 --- /dev/null +++ b/models/slprj/sim/varcache/owntech_model_matlab_simulink_simscape/tmwinternal/simulink_cache.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<MF0 version="1.1" packageUris="http://schema.mathworks.com/mf0/SlCache/19700101"> + <slcache.FileAttributes type="slcache.FileAttributes" uuid="8c4f3d14-e8fb-41f7-84e0-5182c76e1d01"> + <checksum>Qv5JvFIXpwtCb9iYrextcf4plojconB8POJpWwTup65SfwmS+BxO+gZVD5uKJdHm7PuMoCZzDaNDm5b4RnImOQ==</checksum> + </slcache.FileAttributes> +</MF0> \ No newline at end of file diff --git a/models/slprj/sim/varcache/owntech_model_matlab_simulink_simscape/varInfo.mat b/models/slprj/sim/varcache/owntech_model_matlab_simulink_simscape/varInfo.mat new file mode 100644 index 0000000000000000000000000000000000000000..444428a28ce452b207703e85a4bf350e5b4d1d38 Binary files /dev/null and b/models/slprj/sim/varcache/owntech_model_matlab_simulink_simscape/varInfo.mat differ diff --git a/models/twist_parameters.m b/models/twist_parameters.m new file mode 100644 index 0000000000000000000000000000000000000000..beb55dfb27c5237c1bc9a69eaf63df51c433c9a4 --- /dev/null +++ b/models/twist_parameters.m @@ -0,0 +1,56 @@ +%% Initialize twist parameters + +%Low side parameters +twist_low_side_L = 33e-6; +twist_low_side_rL = 20e-3; +twist_low_side_C = 47e-6 + 3*4.7e-6; +twist_low_side_rC = 0.7; +twist_low_side_adc_R = 150e3+470; + +%High side parameters +twist_high_side_C = 33e-6*4 + 4.7e-6*12; +twist_high_side_rC = 0.1; +twist_high_side_adc_R = 330e3+5.6e3; + +%High side feeder current +load('feeder_current.mat'); +VHigh_min = 12; +VHigh_spacing = 6; +PWM_min = 0.1; +PWM_spacing = 0.4; +feature('ModeIterationsInAlgLoops',0) + +%MOSFET parameters +twist_FET_Ron_leg1 = 0.025; +twist_FET_Ron_leg2 = 0.025; +twist_FET_Rd = 0.01; +twist_FET_Vf = 1.2; +twist_FET_Rs = 1e5; +twist_FET_Cs = inf; + +%Shottky parameters +twist_shottky_Ron = 0.35; +twist_shottky_Vf = 0.75; +twist_shottky_Rs = 1e5; +twist_shottky_Cs = inf; + +%PWM generation +twist_freq_switching = 200e3; %carry switching frequency +twist_period_switching = 1/twist_freq_switching; %carry switching period +twist_pwm_resolution = 100e-9; %resolution of the PWM generator +twist_duty_cycle_max = 0.9; %Maximum duty cycle +twist_duty_cycle_min = 0.1; %Minimum duty cycle +twist_dead_time = 100e-9; %duty cycle positive dead time +pwm_step = 0.1; %ramp input increase + +%PWM input switch +pwm_switch_on_time = sim_time*0.5; +pwm_switch_off_time = sim_time*0.6; +pwm_switch_step = 0.1; + +if(isInterleaved) + twist_phase_shift_leg_2_deg = 180; %interleaved phase shift +else + twist_phase_shift_leg_2_deg = 0; %interleaved phase shift +end +twist_phase_shift_leg_2_sec = (twist_phase_shift_leg_2_deg/360)*(twist_period_switching); %interleaved phase shift to seconds \ No newline at end of file diff --git a/owntech_model_matlab_simulink_simscape.slx b/owntech_model_matlab_simulink_simscape.slx deleted file mode 100644 index dd55336ba4f4f13d131ea14ac5fa2cbfc8fcc35f..0000000000000000000000000000000000000000 Binary files a/owntech_model_matlab_simulink_simscape.slx and /dev/null differ diff --git a/results/Load 10 branch 1/owntech_model_matlab_simulink_simscape.slxc b/results/Load 10 branch 1/owntech_model_matlab_simulink_simscape.slxc new file mode 100644 index 0000000000000000000000000000000000000000..228cfbca1296ae5d81b3742b90f97ba98eeb6aff Binary files /dev/null and b/results/Load 10 branch 1/owntech_model_matlab_simulink_simscape.slxc differ diff --git a/results/Load 10 branch 1/results_CORE_duty10%_VHigh24.csv b/results/Load 10 branch 1/results_CORE_duty10%_VHigh24.csv new file mode 100644 index 0000000000000000000000000000000000000000..81803e730fe725f9011863db8b5121e54dd6c4ba --- /dev/null +++ b/results/Load 10 branch 1/results_CORE_duty10%_VHigh24.csv @@ -0,0 +1,501 @@ +duty_cycle,Vhigh_value,V1_low_value,V2_low_value,Ihigh_value,I1_low_value,I2_low_value +0.10000000149011612,24.41411590576172,2.0041584968566895,3.1207334995269775,0.23270948231220245,0.0350024476647377,-0.09170015156269073 +0.20000000298023224,24.14166259765625,1.9577994346618652,3.0757362842559814,0.26707151532173157,0.12766945362091064,-0.19809813797473907 +0.20000000298023224,24.482229232788086,4.50754451751709,5.415580749511719,0.2155284881591797,-0.10127255320549011,-0.0870741531252861 +0.20000000298023224,24.209775924682617,4.18303108215332,5.505574703216553,0.13535048067569733,0.220336452126503,-0.1148301437497139 +0.20000000298023224,24.073549270629883,4.09031343460083,5.415580749511719,0.3243415057659149,0.3075524568557739,-0.0870741531252861 +0.20000000298023224,24.209775924682617,4.136672496795654,5.460577487945557,0.30716049671173096,0.2911994755268097,-0.18422015011310577 +0.20000000298023224,24.277889251708984,4.09031343460083,5.325586318969727,0.2785254716873169,0.2257874608039856,-0.17496813833713531 +0.20000000298023224,24.482229232788086,4.09031343460083,5.460577487945557,0.18116648495197296,0.3075524568557739,-0.07782214879989624 +0.20000000298023224,24.209775924682617,4.136672496795654,5.505574703216553,0.3014335036277771,0.31845447421073914,-0.05469214916229248 +0.20000000298023224,24.55034065246582,4.18303108215332,5.505574703216553,0.2785254716873169,0.19308145344257355,-0.12408214807510376 +0.20000000298023224,24.686567306518555,4.09031343460083,5.505574703216553,0.18116648495197296,0.31300345063209534,-0.1148301437497139 +0.20000000298023224,24.209775924682617,4.043954372406006,5.325586318969727,0.3644304871559143,0.23668944835662842,-0.16109015047550201 +0.20000000298023224,24.277889251708984,3.9975955486297607,5.505574703216553,0.26707151532173157,0.2802974581718445,-0.13333414494991302 +0.20000000298023224,24.34600257873535,4.136672496795654,5.550571441650391,0.1525314748287201,0.26394444704055786,-0.11020414531230927 +0.20000000298023224,24.277889251708984,4.043954372406006,5.460577487945557,0.22125549614429474,0.2693954408168793,-0.1009521484375 +0.20000000298023224,24.14166259765625,3.9512364864349365,5.415580749511719,0.3415224850177765,0.2802974581718445,-0.14258615672588348 +0.20000000298023224,24.277889251708984,4.136672496795654,5.415580749511719,0.23270948231220245,0.220336452126503,-0.16571614146232605 +0.20000000298023224,24.00543785095215,4.043954372406006,5.280589580535889,0.15825848281383514,0.27484646439552307,-0.13796015083789825 +0.20000000298023224,23.801097869873047,4.043954372406006,5.415580749511719,0.289979487657547,0.2693954408168793,-0.21197615563869476 +0.20000000298023224,24.277889251708984,4.18303108215332,5.460577487945557,0.2155284881591797,0.2802974581718445,-0.14258615672588348 +0.20000000298023224,23.93732452392578,3.9975955486297607,5.505574703216553,0.30716049671173096,0.2693954408168793,-0.16571614146232605 +0.20000000298023224,24.14166259765625,4.043954372406006,5.280589580535889,0.27279847860336304,0.19853246212005615,-0.19809813797473907 +0.20000000298023224,24.277889251708984,3.9512364864349365,5.190595626831055,0.2155284881591797,0.2802974581718445,-0.17496813833713531 +0.20000000298023224,24.00543785095215,4.136672496795654,5.640565395355225,0.19834749400615692,0.25304245948791504,-0.1148301437497139 +0.20000000298023224,24.34600257873535,4.18303108215332,5.550571441650391,0.2785254716873169,0.2911994755268097,-0.17959414422512054 +0.20000000298023224,24.34600257873535,3.9975955486297607,5.460577487945557,0.2155284881591797,0.23668944835662842,-0.2027241587638855 +0.20000000298023224,24.34600257873535,4.136672496795654,5.505574703216553,0.12389648705720901,0.18217946588993073,-0.15183815360069275 +0.20000000298023224,24.277889251708984,3.9975955486297607,5.5955681800842285,0.2269824892282486,0.3075524568557739,-0.06394414603710175 +0.20000000298023224,24.209775924682617,4.043954372406006,5.415580749511719,0.2785254716873169,0.25849348306655884,-0.14258615672588348 +0.20000000298023224,24.34600257873535,4.136672496795654,5.550571441650391,0.33579549193382263,0.23668944835662842,-0.23510614037513733 +0.20000000298023224,24.14166259765625,3.9975955486297607,5.550571441650391,0.20407448709011078,0.20943444967269897,-0.08244814723730087 +0.20000000298023224,23.93732452392578,4.18303108215332,5.5955681800842285,0.30716049671173096,0.32390546798706055,-0.03618814796209335 +0.20000000298023224,24.277889251708984,3.9975955486297607,5.505574703216553,0.2785254716873169,0.2312384694814682,-0.20735014975070953 +0.20000000298023224,24.073549270629883,4.18303108215332,5.505574703216553,0.18116648495197296,0.14402246475219727,-0.12408214807510376 +0.20000000298023224,24.073549270629883,4.18303108215332,5.460577487945557,0.2785254716873169,0.2911994755268097,-0.07319615036249161 +0.20000000298023224,24.14166259765625,4.09031343460083,5.415580749511719,0.35870349407196045,0.2802974581718445,-0.19809813797473907 +0.20000000298023224,24.209775924682617,4.18303108215332,5.415580749511719,0.26707151532173157,0.17127744853496552,-0.14258615672588348 +0.20000000298023224,24.55034065246582,4.18303108215332,5.325586318969727,0.31861451268196106,0.220336452126503,-0.1009521484375 +0.20000000298023224,24.14166259765625,4.09031343460083,5.325586318969727,0.2785254716873169,0.2966504395008087,-0.02693614922463894 +0.20000000298023224,24.482229232788086,4.275749683380127,5.550571441650391,0.24416348338127136,0.20943444967269897,-0.18422015011310577 +0.20000000298023224,24.277889251708984,4.136672496795654,5.5955681800842285,0.2613444924354553,0.2966504395008087,-0.16109015047550201 +0.20000000298023224,24.34600257873535,4.18303108215332,5.505574703216553,0.2785254716873169,0.21488545835018158,-0.05006615072488785 +0.20000000298023224,24.55034065246582,4.18303108215332,5.505574703216553,0.11244247853755951,0.26394444704055786,-0.15183815360069275 +0.20000000298023224,24.14166259765625,4.043954372406006,5.325586318969727,0.186893492937088,0.18763045966625214,-0.16109015047550201 +0.20000000298023224,24.482229232788086,4.09031343460083,5.325586318969727,0.14680448174476624,0.2802974581718445,-0.12408214807510376 +0.20000000298023224,24.209775924682617,3.9512364864349365,5.370583534240723,0.2155284881591797,0.3620624840259552,-0.14721214771270752 +0.20000000298023224,24.14166259765625,4.09031343460083,5.325586318969727,0.19834749400615692,0.23668944835662842,-0.09170015156269073 +0.20000000298023224,24.34600257873535,4.18303108215332,5.325586318969727,0.23270948231220245,0.2911994755268097,-0.18422015011310577 +0.20000000298023224,24.34600257873535,4.09031343460083,5.235592365264893,0.23270948231220245,0.23668944835662842,-0.2304801493883133 +0.20000000298023224,24.14166259765625,3.9512364864349365,5.370583534240723,0.2155284881591797,0.17127744853496552,-0.16109015047550201 +0.20000000298023224,24.34600257873535,4.043954372406006,5.325586318969727,0.15825848281383514,0.2802974581718445,-0.18422015011310577 +0.20000000298023224,24.209775924682617,4.136672496795654,5.325586318969727,0.15825848281383514,0.26394444704055786,-0.19347214698791504 +0.20000000298023224,24.14166259765625,4.043954372406006,5.235592365264893,0.2155284881591797,0.2257874608039856,-0.15183815360069275 +0.20000000298023224,24.34600257873535,4.09031343460083,5.505574703216553,0.22125549614429474,0.2693954408168793,-0.16571614146232605 +0.20000000298023224,24.41411590576172,4.09031343460083,5.460577487945557,0.27279847860336304,0.2857484817504883,-0.16109015047550201 +0.20000000298023224,24.482229232788086,4.043954372406006,5.325586318969727,0.34724947810173035,0.19308145344257355,-0.22122815251350403 +0.20000000298023224,24.754680633544922,4.09031343460083,5.460577487945557,0.1639854907989502,0.2966504395008087,-0.12408214807510376 +0.20000000298023224,24.482229232788086,4.136672496795654,5.550571441650391,0.19262048602104187,0.19308145344257355,-0.12408214807510376 +0.20000000298023224,24.209775924682617,4.136672496795654,5.325586318969727,0.29570648074150085,0.25304245948791504,-0.17959414422512054 +0.20000000298023224,24.482229232788086,4.136672496795654,5.550571441650391,0.27279847860336304,0.24759146571159363,-0.17496813833713531 +0.20000000298023224,24.34600257873535,4.136672496795654,5.640565395355225,0.2498904913663864,0.24214045703411102,-0.17959414422512054 +0.20000000298023224,24.209775924682617,4.043954372406006,5.325586318969727,0.2785254716873169,0.27484646439552307,-0.17034214735031128 +0.20000000298023224,24.209775924682617,4.043954372406006,5.550571441650391,0.3415224850177765,0.18763045966625214,-0.13796015083789825 +0.20000000298023224,24.277889251708984,4.18303108215332,5.370583534240723,0.25561749935150146,0.24759146571159363,-0.2027241587638855 +0.20000000298023224,24.34600257873535,4.043954372406006,5.550571441650391,0.2384364902973175,0.2802974581718445,-0.09170015156269073 +0.20000000298023224,24.14166259765625,4.18303108215332,5.505574703216553,0.15825848281383514,0.31845447421073914,-0.17959414422512054 +0.20000000298023224,24.209775924682617,4.136672496795654,5.370583534240723,0.24416348338127136,0.20943444967269897,-0.1148301437497139 +0.20000000298023224,24.55034065246582,4.18303108215332,5.5955681800842285,0.20407448709011078,0.3620624840259552,-0.08244814723730087 +0.20000000298023224,24.073549270629883,3.9975955486297607,5.505574703216553,0.33579549193382263,0.39476847648620605,-0.1148301437497139 +0.20000000298023224,24.55034065246582,3.9512364864349365,5.415580749511719,0.2269824892282486,0.3675134479999542,-0.19809813797473907 +0.20000000298023224,24.618453979492188,4.136672496795654,5.415580749511719,0.2613444924354553,0.26394444704055786,-0.19809813797473907 +0.20000000298023224,24.34600257873535,4.043954372406006,5.415580749511719,0.24416348338127136,0.23668944835662842,-0.08244814723730087 +0.20000000298023224,24.55034065246582,3.9512364864349365,5.325586318969727,0.22125549614429474,0.2966504395008087,-0.13333414494991302 +0.20000000298023224,24.277889251708984,4.18303108215332,5.325586318969727,0.29570648074150085,0.220336452126503,-0.13796015083789825 +0.20000000298023224,24.41411590576172,4.043954372406006,5.505574703216553,0.186893492937088,0.31300345063209534,-0.14721214771270752 +0.20000000298023224,24.00543785095215,4.09031343460083,5.325586318969727,0.29570648074150085,0.32935643196105957,-0.19809813797473907 +0.20000000298023224,24.277889251708984,3.9975955486297607,5.370583534240723,0.2269824892282486,0.220336452126503,-0.1888461410999298 +0.20000000298023224,23.869211196899414,4.09031343460083,5.370583534240723,0.12962348759174347,0.32390546798706055,-0.1287081390619278 +0.20000000298023224,24.14166259765625,4.136672496795654,5.460577487945557,0.23270948231220245,0.31300345063209534,-0.1287081390619278 +0.20000000298023224,24.00543785095215,3.9975955486297607,5.370583534240723,0.23270948231220245,0.24759146571159363,-0.18422015011310577 +0.20000000298023224,24.073549270629883,4.18303108215332,5.460577487945557,0.22125549614429474,0.21488545835018158,-0.18422015011310577 +0.20000000298023224,24.209775924682617,4.09031343460083,5.280589580535889,0.23270948231220245,0.23668944835662842,-0.18422015011310577 +0.20000000298023224,24.34600257873535,3.9512364864349365,5.370583534240723,0.18116648495197296,0.18217946588993073,-0.2443581372499466 +0.20000000298023224,24.209775924682617,3.9975955486297607,5.5955681800842285,0.14680448174476624,0.2802974581718445,-0.1287081390619278 +0.20000000298023224,24.41411590576172,4.043954372406006,5.550571441650391,0.16971249878406525,0.27484646439552307,-0.07319615036249161 +0.20000000298023224,24.482229232788086,3.9512364864349365,5.415580749511719,0.2613444924354553,0.19308145344257355,-0.1009521484375 +0.20000000298023224,24.34600257873535,3.9512364864349365,5.415580749511719,0.2384364902973175,0.19308145344257355,-0.2027241587638855 +0.20000000298023224,24.34600257873535,4.18303108215332,5.505574703216553,0.1754394769668579,0.23668944835662842,-0.19809813797473907 +0.20000000298023224,24.209775924682617,4.043954372406006,5.325586318969727,0.2785254716873169,0.27484646439552307,-0.16109015047550201 +0.20000000298023224,24.41411590576172,3.9975955486297607,5.415580749511719,0.24416348338127136,0.2312384694814682,-0.23510614037513733 +0.20000000298023224,24.14166259765625,4.18303108215332,5.325586318969727,0.13535048067569733,0.21488545835018158,-0.1287081390619278 +0.20000000298023224,24.209775924682617,4.18303108215332,5.505574703216553,0.27279847860336304,0.25304245948791504,-0.08244814723730087 +0.20000000298023224,24.14166259765625,4.043954372406006,5.550571441650391,0.28425249457359314,0.220336452126503,-0.2166021466255188 +0.20000000298023224,24.277889251708984,4.322108268737793,5.505574703216553,0.16971249878406525,0.2312384694814682,-0.12408214807510376 +0.20000000298023224,23.869211196899414,4.18303108215332,5.325586318969727,0.20407448709011078,0.220336452126503,-0.1148301437497139 +0.20000000298023224,24.34600257873535,4.136672496795654,5.325586318969727,0.22125549614429474,0.32390546798706055,-0.07319615036249161 +0.20000000298023224,24.277889251708984,4.043954372406006,5.505574703216553,0.2785254716873169,0.17127744853496552,-0.16109015047550201 +0.20000000298023224,24.277889251708984,4.18303108215332,5.460577487945557,0.186893492937088,0.31300345063209534,-0.1148301437497139 +0.20000000298023224,24.073549270629883,4.18303108215332,5.460577487945557,0.3014335036277771,0.3075524568557739,-0.13333414494991302 +0.20000000298023224,24.41411590576172,4.136672496795654,5.460577487945557,0.31861451268196106,0.27484646439552307,-0.17034214735031128 +0.20000000298023224,24.209775924682617,4.18303108215332,5.505574703216553,0.2785254716873169,0.2802974581718445,-0.16571614146232605 +0.20000000298023224,24.482229232788086,4.136672496795654,5.370583534240723,0.23270948231220245,0.32390546798706055,-0.0870741531252861 +0.20000000298023224,24.34600257873535,4.043954372406006,5.415580749511719,0.2155284881591797,0.32390546798706055,-0.19809813797473907 +0.20000000298023224,24.00543785095215,4.136672496795654,5.460577487945557,0.2498904913663864,0.25304245948791504,-0.17959414422512054 +0.20000000298023224,24.482229232788086,4.18303108215332,5.460577487945557,0.33579549193382263,0.35116046667099,-0.17496813833713531 +0.20000000298023224,23.93732452392578,4.136672496795654,5.415580749511719,0.20407448709011078,0.38931748270988464,-0.12408214807510376 +0.20000000298023224,24.34600257873535,4.18303108215332,5.325586318969727,0.23270948231220245,0.21488545835018158,-0.2027241587638855 +0.20000000298023224,24.14166259765625,4.322108268737793,5.550571441650391,0.186893492937088,0.2693954408168793,-0.15183815360069275 +0.20000000298023224,24.073549270629883,4.136672496795654,5.415580749511719,0.3300684690475464,0.2802974581718445,-0.19809813797473907 +0.20000000298023224,24.073549270629883,3.9975955486297607,5.325586318969727,0.2498904913663864,0.3021014630794525,-0.1888461410999298 +0.20000000298023224,24.209775924682617,4.043954372406006,5.550571441650391,0.26707151532173157,0.2802974581718445,-0.17496813833713531 +0.20000000298023224,24.34600257873535,4.043954372406006,5.505574703216553,0.186893492937088,0.2312384694814682,-0.18422015011310577 +0.20000000298023224,24.482229232788086,3.812159538269043,5.325586318969727,0.25561749935150146,0.2257874608039856,-0.18422015011310577 +0.20000000298023224,24.34600257873535,4.09031343460083,5.550571441650391,0.26707151532173157,0.24759146571159363,-0.11020414531230927 +0.20000000298023224,24.618453979492188,4.09031343460083,5.325586318969727,0.1525314748287201,0.23668944835662842,-0.06394414603710175 +0.20000000298023224,24.482229232788086,4.136672496795654,5.325586318969727,0.18116648495197296,0.21488545835018158,-0.2443581372499466 +0.20000000298023224,24.618453979492188,3.9975955486297607,5.5955681800842285,0.19262048602104187,0.19308145344257355,-0.17496813833713531 +0.20000000298023224,24.34600257873535,4.09031343460083,5.460577487945557,0.186893492937088,0.20398345589637756,-0.16109015047550201 +0.20000000298023224,24.073549270629883,3.9048774242401123,5.550571441650391,0.2155284881591797,0.25304245948791504,-0.09170015156269073 +0.20000000298023224,24.482229232788086,4.09031343460083,5.460577487945557,0.289979487657547,0.19308145344257355,-0.17034214735031128 +0.20000000298023224,24.14166259765625,4.18303108215332,5.550571441650391,0.23270948231220245,0.1603754609823227,-0.07319615036249161 +0.20000000298023224,24.209775924682617,4.043954372406006,5.5955681800842285,0.2613444924354553,0.26394444704055786,-0.0870741531252861 +0.20000000298023224,23.869211196899414,4.136672496795654,5.460577487945557,0.24416348338127136,0.220336452126503,-0.14258615672588348 +0.20000000298023224,24.14166259765625,4.043954372406006,5.5955681800842285,0.23270948231220245,0.220336452126503,-0.14258615672588348 +0.20000000298023224,24.754680633544922,4.18303108215332,5.550571441650391,0.186893492937088,0.35116046667099,-0.12408214807510376 +0.20000000298023224,24.209775924682617,4.043954372406006,5.550571441650391,0.2613444924354553,0.3021014630794525,-0.07319615036249161 +0.20000000298023224,24.686567306518555,4.18303108215332,5.325586318969727,0.2785254716873169,0.21488545835018158,-0.13796015083789825 +0.20000000298023224,24.618453979492188,4.136672496795654,5.5955681800842285,0.186893492937088,0.33480745553970337,-0.08244814723730087 +0.20000000298023224,24.277889251708984,4.136672496795654,5.325586318969727,0.289979487657547,0.2802974581718445,-0.11020414531230927 +0.20000000298023224,24.41411590576172,4.043954372406006,5.505574703216553,0.2498904913663864,0.2857484817504883,-0.14721214771270752 +0.20000000298023224,24.482229232788086,4.09031343460083,5.640565395355225,0.11244247853755951,0.25849348306655884,-0.16571614146232605 +0.20000000298023224,24.55034065246582,4.136672496795654,5.325586318969727,0.23270948231220245,0.2693954408168793,-0.08244814723730087 +0.20000000298023224,24.209775924682617,4.136672496795654,5.460577487945557,0.3014335036277771,0.2966504395008087,-0.13333414494991302 +0.20000000298023224,24.209775924682617,4.043954372406006,5.280589580535889,0.20407448709011078,0.25304245948791504,-0.17034214735031128 +0.20000000298023224,24.073549270629883,4.229390621185303,5.415580749511719,0.20407448709011078,0.17672845721244812,-0.17959414422512054 +0.20000000298023224,24.00543785095215,3.812159538269043,5.325586318969727,0.2269824892282486,0.31845447421073914,-0.17959414422512054 +0.20000000298023224,24.209775924682617,4.043954372406006,5.505574703216553,0.2613444924354553,0.31300345063209534,-0.20735014975070953 +0.20000000298023224,24.00543785095215,4.136672496795654,5.460577487945557,0.19262048602104187,0.31845447421073914,-0.13796015083789825 +0.20000000298023224,24.00543785095215,4.043954372406006,5.460577487945557,0.186893492937088,0.32390546798706055,-0.16109015047550201 +0.20000000298023224,24.00543785095215,3.9975955486297607,5.370583534240723,0.1754394769668579,0.21488545835018158,-0.2166021466255188 +0.20000000298023224,24.209775924682617,4.18303108215332,5.550571441650391,0.3243415057659149,0.2257874608039856,-0.16109015047550201 +0.20000000298023224,24.34600257873535,4.136672496795654,5.325586318969727,0.2498904913663864,0.3021014630794525,-0.16109015047550201 +0.20000000298023224,24.073549270629883,4.043954372406006,5.325586318969727,0.3243415057659149,0.20943444967269897,-0.14258615672588348 +0.20000000298023224,24.41411590576172,3.9048774242401123,5.550571441650391,0.2155284881591797,0.2911994755268097,-0.16109015047550201 +0.20000000298023224,24.34600257873535,4.136672496795654,5.325586318969727,0.1525314748287201,0.23668944835662842,-0.13333414494991302 +0.20000000298023224,24.277889251708984,4.136672496795654,5.325586318969727,0.31861451268196106,0.2312384694814682,-0.16109015047550201 +0.20000000298023224,24.34600257873535,3.9048774242401123,5.550571441650391,0.2384364902973175,0.2257874608039856,-0.13333414494991302 +0.20000000298023224,24.277889251708984,4.18303108215332,5.5955681800842285,0.27279847860336304,0.20398345589637756,-0.09170015156269073 +0.20000000298023224,24.073549270629883,4.043954372406006,5.505574703216553,0.3243415057659149,0.3021014630794525,-0.13333414494991302 +0.20000000298023224,24.34600257873535,4.09031343460083,5.415580749511719,0.12389648705720901,0.1658264398574829,-0.17959414422512054 +0.20000000298023224,23.801097869873047,4.18303108215332,5.370583534240723,0.2155284881591797,0.11131644994020462,-0.12408214807510376 +0.20000000298023224,24.073549270629883,4.18303108215332,5.415580749511719,0.2498904913663864,0.2802974581718445,-0.09632615000009537 +0.20000000298023224,24.14166259765625,4.136672496795654,5.415580749511719,0.25561749935150146,0.27484646439552307,-0.12408214807510376 +0.20000000298023224,24.34600257873535,4.18303108215332,5.415580749511719,0.2785254716873169,0.21488545835018158,-0.15183815360069275 +0.20000000298023224,24.209775924682617,4.136672496795654,5.505574703216553,0.20407448709011078,0.26394444704055786,-0.1148301437497139 +0.20000000298023224,24.14166259765625,4.09031343460083,5.460577487945557,0.28425249457359314,0.20943444967269897,-0.14258615672588348 +0.20000000298023224,24.209775924682617,3.812159538269043,5.190595626831055,0.2155284881591797,0.25304245948791504,-0.12408214807510376 +0.20000000298023224,24.34600257873535,4.043954372406006,5.415580749511719,0.1525314748287201,0.23668944835662842,-0.12408214807510376 +0.20000000298023224,24.209775924682617,4.043954372406006,5.325586318969727,0.33579549193382263,0.24759146571159363,-0.09632615000009537 +0.20000000298023224,24.41411590576172,3.9512364864349365,5.280589580535889,0.2785254716873169,0.31300345063209534,-0.18422015011310577 +0.20000000298023224,24.41411590576172,4.043954372406006,5.370583534240723,0.27279847860336304,0.2312384694814682,-0.1287081390619278 +0.20000000298023224,24.34600257873535,4.09031343460083,5.370583534240723,0.25561749935150146,0.2802974581718445,-0.13796015083789825 +0.20000000298023224,24.41411590576172,4.043954372406006,5.235592365264893,0.23270948231220245,0.27484646439552307,-0.2166021466255188 +0.20000000298023224,24.00543785095215,4.043954372406006,5.325586318969727,0.18116648495197296,0.20398345589637756,-0.18422015011310577 +0.20000000298023224,24.482229232788086,4.136672496795654,5.460577487945557,0.29570648074150085,0.2802974581718445,-0.17034214735031128 +0.20000000298023224,24.209775924682617,4.043954372406006,5.550571441650391,0.2155284881591797,0.3402584493160248,-0.19809813797473907 +0.20000000298023224,24.209775924682617,3.9512364864349365,5.505574703216553,0.186893492937088,0.23668944835662842,-0.1148301437497139 +0.20000000298023224,24.277889251708984,4.043954372406006,5.550571441650391,0.2269824892282486,0.20943444967269897,-0.14258615672588348 +0.20000000298023224,24.41411590576172,3.9048774242401123,5.505574703216553,0.2384364902973175,0.2966504395008087,-0.13796015083789825 +0.20000000298023224,24.209775924682617,3.9048774242401123,5.325586318969727,0.16971249878406525,0.2693954408168793,-0.2027241587638855 +0.20000000298023224,24.209775924682617,4.09031343460083,5.5955681800842285,0.186893492937088,0.2802974581718445,-0.1287081390619278 +0.20000000298023224,24.073549270629883,4.043954372406006,5.5955681800842285,0.20980148017406464,0.220336452126503,-0.0870741531252861 +0.20000000298023224,24.55034065246582,4.09031343460083,5.370583534240723,0.13535048067569733,0.220336452126503,-0.22122815251350403 +0.20000000298023224,24.209775924682617,3.9512364864349365,5.550571441650391,0.14680448174476624,0.18217946588993073,-0.21197615563869476 +0.20000000298023224,24.34600257873535,4.136672496795654,5.325586318969727,0.22125549614429474,0.17127744853496552,-0.0870741531252861 +0.20000000298023224,24.55034065246582,4.18303108215332,5.5955681800842285,0.33579549193382263,0.14947344362735748,-0.15183815360069275 +0.20000000298023224,24.41411590576172,4.09031343460083,5.325586318969727,0.16971249878406525,0.24759146571159363,-0.21197615563869476 +0.20000000298023224,24.55034065246582,4.043954372406006,5.460577487945557,0.186893492937088,0.17127744853496552,-0.1009521484375 +0.20000000298023224,24.34600257873535,4.043954372406006,5.505574703216553,0.4446084797382355,0.25304245948791504,-0.1009521484375 +0.20000000298023224,24.55034065246582,4.09031343460083,5.460577487945557,0.19262048602104187,0.26394444704055786,-0.15183815360069275 +0.20000000298023224,24.209775924682617,4.18303108215332,5.550571441650391,0.2498904913663864,0.14947344362735748,-0.19809813797473907 +0.20000000298023224,24.277889251708984,4.18303108215332,5.505574703216553,0.25561749935150146,0.2966504395008087,-0.05006615072488785 +0.20000000298023224,24.482229232788086,3.9512364864349365,5.5955681800842285,0.25561749935150146,0.31845447421073914,-0.17034214735031128 +0.20000000298023224,24.14166259765625,4.136672496795654,5.505574703216553,0.2613444924354553,0.1549244523048401,-0.16109015047550201 +0.20000000298023224,24.209775924682617,4.136672496795654,5.460577487945557,0.13535048067569733,0.2693954408168793,-0.11020414531230927 +0.20000000298023224,23.869211196899414,4.136672496795654,5.325586318969727,0.2498904913663864,0.32390546798706055,-0.14721214771270752 +0.20000000298023224,24.14166259765625,3.9975955486297607,5.325586318969727,0.2785254716873169,0.2257874608039856,-0.17959414422512054 +0.20000000298023224,24.34600257873535,4.136672496795654,5.550571441650391,0.30716049671173096,0.32390546798706055,-0.17496813833713531 +0.20000000298023224,24.209775924682617,4.09031343460083,5.505574703216553,0.22125549614429474,0.31300345063209534,-0.1009521484375 +0.20000000298023224,24.55034065246582,4.136672496795654,5.325586318969727,0.30716049671173096,0.2966504395008087,-0.15183815360069275 +0.20000000298023224,24.55034065246582,4.043954372406006,5.460577487945557,0.2155284881591797,0.23668944835662842,-0.16109015047550201 +0.20000000298023224,24.209775924682617,3.9975955486297607,5.550571441650391,0.3300684690475464,0.20398345589637756,-0.09170015156269073 +0.20000000298023224,24.073549270629883,4.043954372406006,5.460577487945557,0.29570648074150085,0.23668944835662842,-0.21197615563869476 +0.20000000298023224,24.277889251708984,3.9048774242401123,5.550571441650391,0.2269824892282486,0.21488545835018158,-0.21197615563869476 +0.20000000298023224,24.209775924682617,4.18303108215332,5.415580749511719,0.19262048602104187,0.25849348306655884,-0.17496813833713531 +0.20000000298023224,24.209775924682617,4.043954372406006,5.415580749511719,0.1754394769668579,0.3075524568557739,-0.14721214771270752 +0.20000000298023224,24.073549270629883,3.812159538269043,5.325586318969727,0.30716049671173096,0.20943444967269897,-0.15646414458751678 +0.20000000298023224,24.14166259765625,4.043954372406006,5.685562610626221,0.1525314748287201,0.2802974581718445,-0.13796015083789825 +0.20000000298023224,24.00543785095215,3.9975955486297607,5.460577487945557,0.20980148017406464,0.3021014630794525,-0.16109015047550201 +0.20000000298023224,24.073549270629883,4.09031343460083,5.460577487945557,0.289979487657547,0.25849348306655884,-0.2027241587638855 +0.20000000298023224,24.073549270629883,4.09031343460083,5.685562610626221,0.29570648074150085,0.12221845239400864,-0.17034214735031128 +0.20000000298023224,24.073549270629883,4.09031343460083,5.415580749511719,0.19262048602104187,0.20943444967269897,-0.09632615000009537 +0.20000000298023224,24.209775924682617,4.136672496795654,5.415580749511719,0.23270948231220245,0.2693954408168793,-0.2166021466255188 +0.20000000298023224,24.073549270629883,3.812159538269043,5.5955681800842285,0.15825848281383514,0.19308145344257355,-0.16571614146232605 +0.20000000298023224,24.277889251708984,4.18303108215332,5.640565395355225,0.186893492937088,0.18763045966625214,-0.09632615000009537 +0.20000000298023224,24.41411590576172,3.9975955486297607,5.325586318969727,0.3128874897956848,0.2911994755268097,-0.12408214807510376 +0.20000000298023224,24.41411590576172,4.136672496795654,5.550571441650391,0.25561749935150146,0.20398345589637756,-0.2304801493883133 +0.20000000298023224,24.209775924682617,4.043954372406006,5.505574703216553,0.30716049671173096,0.220336452126503,-0.09632615000009537 +0.20000000298023224,24.00543785095215,4.09031343460083,5.550571441650391,0.22125549614429474,0.2802974581718445,-0.08244814723730087 +0.20000000298023224,24.34600257873535,4.18303108215332,5.460577487945557,0.37015751004219055,0.32390546798706055,-0.12408214807510376 +0.20000000298023224,24.209775924682617,4.18303108215332,5.550571441650391,0.24416348338127136,0.26394444704055786,-0.12408214807510376 +0.20000000298023224,24.277889251708984,4.043954372406006,5.550571441650391,0.2785254716873169,0.2911994755268097,-0.16109015047550201 +0.20000000298023224,24.14166259765625,4.043954372406006,5.325586318969727,0.2155284881591797,0.2802974581718445,-0.12408214807510376 +0.20000000298023224,24.209775924682617,4.09031343460083,5.235592365264893,0.2498904913663864,0.25304245948791504,-0.14258615672588348 +0.20000000298023224,24.34600257873535,4.18303108215332,5.325586318969727,0.2384364902973175,0.20943444967269897,-0.16109015047550201 +0.20000000298023224,24.14166259765625,4.09031343460083,5.325586318969727,0.2498904913663864,0.32390546798706055,-0.13333414494991302 +0.20000000298023224,24.55034065246582,4.136672496795654,5.370583534240723,0.2269824892282486,0.3021014630794525,-0.21197615563869476 +0.20000000298023224,24.277889251708984,4.136672496795654,5.415580749511719,0.24416348338127136,0.25849348306655884,-0.17034214735031128 +0.20000000298023224,24.41411590576172,4.18303108215332,5.550571441650391,0.3644304871559143,0.35116046667099,-0.19809813797473907 +0.20000000298023224,24.41411590576172,4.043954372406006,5.280589580535889,0.20407448709011078,0.2966504395008087,-0.19809813797473907 +0.20000000298023224,24.277889251708984,4.09031343460083,5.325586318969727,0.2155284881591797,0.3457094728946686,-0.14721214771270752 +0.20000000298023224,24.618453979492188,4.09031343460083,5.550571441650391,0.09526148438453674,0.2911994755268097,-0.1148301437497139 +0.20000000298023224,24.277889251708984,4.136672496795654,5.460577487945557,0.19834749400615692,0.2802974581718445,-0.17034214735031128 +0.20000000298023224,24.073549270629883,4.043954372406006,5.460577487945557,0.2384364902973175,0.19308145344257355,-0.23510614037513733 +0.20000000298023224,24.34600257873535,4.136672496795654,5.505574703216553,0.16971249878406525,0.2312384694814682,-0.16109015047550201 +0.20000000298023224,24.34600257873535,4.043954372406006,5.460577487945557,0.1525314748287201,0.3021014630794525,-0.21197615563869476 +0.20000000298023224,24.073549270629883,3.9048774242401123,5.325586318969727,0.2155284881591797,0.2966504395008087,-0.13333414494991302 +0.20000000298023224,24.277889251708984,4.136672496795654,5.415580749511719,0.23270948231220245,0.3021014630794525,-0.1287081390619278 +0.20000000298023224,24.00543785095215,4.043954372406006,5.460577487945557,0.29570648074150085,0.2693954408168793,-0.0870741531252861 +0.20000000298023224,24.277889251708984,3.9512364864349365,5.325586318969727,0.4274275004863739,0.2312384694814682,-0.14258615672588348 +0.20000000298023224,24.41411590576172,4.043954372406006,5.550571441650391,0.22125549614429474,0.23668944835662842,-0.16109015047550201 +0.20000000298023224,24.618453979492188,4.043954372406006,5.415580749511719,0.12389648705720901,0.26394444704055786,-0.1888461410999298 +0.20000000298023224,24.482229232788086,4.136672496795654,5.325586318969727,0.2269824892282486,0.27484646439552307,-0.2443581372499466 +0.20000000298023224,24.55034065246582,4.043954372406006,5.325586318969727,0.2269824892282486,0.18763045966625214,-0.12408214807510376 +0.20000000298023224,24.482229232788086,3.9512364864349365,5.5955681800842285,0.22125549614429474,0.13857145607471466,-0.13333414494991302 +0.20000000298023224,24.34600257873535,4.136672496795654,5.460577487945557,0.27279847860336304,0.27484646439552307,-0.13333414494991302 +0.20000000298023224,24.754680633544922,4.18303108215332,5.460577487945557,0.289979487657547,0.31845447421073914,-0.20735014975070953 +0.20000000298023224,24.55034065246582,4.18303108215332,5.460577487945557,0.27279847860336304,0.19308145344257355,-0.1287081390619278 +0.20000000298023224,24.14166259765625,4.18303108215332,5.370583534240723,0.24416348338127136,0.3402584493160248,-0.1009521484375 +0.20000000298023224,24.34600257873535,4.09031343460083,5.505574703216553,0.23270948231220245,0.38386645913124084,-0.11020414531230927 +0.20000000298023224,24.41411590576172,4.136672496795654,5.325586318969727,0.27279847860336304,0.18763045966625214,-0.17496813833713531 +0.20000000298023224,24.34600257873535,4.136672496795654,5.640565395355225,0.23270948231220245,0.2802974581718445,-0.2027241587638855 +0.20000000298023224,23.869211196899414,4.18303108215332,5.370583534240723,0.37015751004219055,0.27484646439552307,-0.14258615672588348 +0.20000000298023224,24.277889251708984,4.136672496795654,5.460577487945557,0.3014335036277771,0.23668944835662842,-0.17959414422512054 +0.20000000298023224,24.55034065246582,4.09031343460083,5.550571441650391,0.186893492937088,0.21488545835018158,-0.09632615000009537 +0.20000000298023224,24.14166259765625,4.18303108215332,5.505574703216553,0.1525314748287201,0.25849348306655884,-0.14721214771270752 +0.20000000298023224,24.277889251708984,4.18303108215332,5.235592365264893,0.24416348338127136,0.32390546798706055,-0.13333414494991302 +0.20000000298023224,24.482229232788086,4.18303108215332,5.460577487945557,0.2269824892282486,0.27484646439552307,-0.19809813797473907 +0.20000000298023224,24.41411590576172,4.18303108215332,5.550571441650391,0.2155284881591797,0.25304245948791504,-0.14258615672588348 +0.20000000298023224,24.209775924682617,4.043954372406006,5.325586318969727,0.37015751004219055,0.35116046667099,-0.17959414422512054 +0.20000000298023224,24.209775924682617,4.136672496795654,5.505574703216553,0.186893492937088,0.19308145344257355,-0.1888461410999298 +0.30000001192092896,24.55034065246582,4.09031343460083,5.460577487945557,0.22125549614429474,0.2312384694814682,-0.12408214807510376 +0.30000001192092896,24.073549270629883,7.01093053817749,7.755424976348877,0.5591484904289246,0.11131644994020462,-0.14721214771270752 +0.30000001192092896,23.93732452392578,6.269186496734619,7.620433807373047,0.31861451268196106,0.4819844663143158,-0.17034214735031128 +0.30000001192092896,24.00543785095215,6.361904144287109,7.845418453216553,0.3873384892940521,0.43837645649909973,-0.1009521484375 +0.30000001192092896,23.93732452392578,6.500981330871582,7.935412406921387,0.3873384892940521,0.46018049120903015,-0.18422015011310577 +0.30000001192092896,24.00543785095215,6.408263683319092,7.755424976348877,0.33579549193382263,0.492886483669281,-0.1148301437497139 +0.30000001192092896,24.00543785095215,6.408263683319092,7.845418453216553,0.31861451268196106,0.4111214578151703,-0.08244814723730087 +0.30000001192092896,23.93732452392578,6.454622745513916,7.980409622192383,0.3415224850177765,0.45472946763038635,-0.09170015156269073 +0.30000001192092896,24.482229232788086,6.408263683319092,7.710427761077881,0.3758845031261444,0.4165724515914917,-0.22122815251350403 +0.30000001192092896,24.14166259765625,6.315545558929443,7.935412406921387,0.29570648074150085,0.372964471578598,-0.11020414531230927 +0.30000001192092896,24.209775924682617,6.500981330871582,7.935412406921387,0.26707151532173157,0.4656314551830292,-0.05469214916229248 +0.30000001192092896,24.209775924682617,6.408263683319092,7.845418453216553,0.27279847860336304,0.5255924463272095,-0.13796015083789825 +0.30000001192092896,24.277889251708984,6.269186496734619,8.070404052734375,0.3300684690475464,0.4111214578151703,-0.21197615563869476 +0.30000001192092896,24.41411590576172,6.500981330871582,7.935412406921387,0.3415224850177765,0.492886483669281,-0.06857015192508698 +0.30000001192092896,24.14166259765625,6.361904144287109,7.755424976348877,0.37015751004219055,0.5364944338798523,-0.11945614963769913 +0.30000001192092896,24.41411590576172,6.361904144287109,7.890415668487549,0.4045194983482361,0.4220234751701355,-0.11945614963769913 +0.30000001192092896,24.209775924682617,6.547340393066406,7.845418453216553,0.28425249457359314,0.46018049120903015,-0.12408214807510376 +0.30000001192092896,23.93732452392578,6.454622745513916,7.755424976348877,0.30716049671173096,0.4819844663143158,-0.0870741531252861 +0.30000001192092896,24.277889251708984,6.361904144287109,7.755424976348877,0.34724947810173035,0.5855534672737122,-0.14721214771270752 +0.30000001192092896,24.073549270629883,6.454622745513916,7.935412406921387,0.27279847860336304,0.46018049120903015,-0.12408214807510376 +0.30000001192092896,24.073549270629883,6.500981330871582,7.980409622192383,0.3014335036277771,0.5201414823532104,-0.16109015047550201 +0.30000001192092896,24.209775924682617,6.500981330871582,7.890415668487549,0.34724947810173035,0.5310434699058533,-0.07782214879989624 +0.30000001192092896,24.209775924682617,6.500981330871582,7.890415668487549,0.20407448709011078,0.4710824489593506,-0.17034214735031128 +0.30000001192092896,24.209775924682617,6.593699932098389,7.935412406921387,0.30716049671173096,0.4656314551830292,-0.13333414494991302 +0.30000001192092896,23.93732452392578,6.547340393066406,7.845418453216553,0.30716049671173096,0.5801025032997131,-0.02693614922463894 +0.30000001192092896,24.34600257873535,6.361904144287109,7.755424976348877,0.30716049671173096,0.634612500667572,-0.1287081390619278 +0.30000001192092896,24.277889251708984,6.408263683319092,7.800421237945557,0.4045194983482361,0.45472946763038635,-0.17034214735031128 +0.30000001192092896,24.482229232788086,6.547340393066406,7.710427761077881,0.37015751004219055,0.4819844663143158,-0.1009521484375 +0.30000001192092896,24.34600257873535,6.500981330871582,7.710427761077881,0.4159735143184662,0.5419455170631409,-0.17959414422512054 +0.30000001192092896,24.34600257873535,6.454622745513916,7.800421237945557,0.3644304871559143,0.5092394948005676,-0.15183815360069275 +0.30000001192092896,24.482229232788086,6.454622745513916,7.800421237945557,0.3816114664077759,0.5364944338798523,-0.1287081390619278 +0.30000001192092896,24.55034065246582,6.408263683319092,7.890415668487549,0.3243415057659149,0.5037884712219238,-0.17959414422512054 +0.30000001192092896,24.073549270629883,6.361904144287109,7.845418453216553,0.30716049671173096,0.4656314551830292,-0.16109015047550201 +0.30000001192092896,24.34600257873535,6.500981330871582,7.980409622192383,0.37015751004219055,0.5419455170631409,-0.15646414458751678 +0.30000001192092896,24.209775924682617,6.454622745513916,7.710427761077881,0.2498904913663864,0.492886483669281,-0.15646414458751678 +0.30000001192092896,23.93732452392578,6.408263683319092,7.710427761077881,0.4274275004863739,0.4220234751701355,-0.2304801493883133 +0.30000001192092896,24.209775924682617,6.408263683319092,7.890415668487549,0.289979487657547,0.44927847385406494,-0.09632615000009537 +0.30000001192092896,24.00543785095215,6.408263683319092,7.890415668487549,0.3300684690475464,0.43837645649909973,-0.11945614963769913 +0.30000001192092896,24.41411590576172,6.454622745513916,7.800421237945557,0.3529765009880066,0.4165724515914917,-0.18422015011310577 +0.30000001192092896,24.073549270629883,6.361904144287109,7.935412406921387,0.37015751004219055,0.4274744689464569,-0.10557814687490463 +0.30000001192092896,24.618453979492188,6.454622745513916,7.845418453216553,0.2785254716873169,0.43837645649909973,-0.07782214879989624 +0.30000001192092896,24.482229232788086,6.454622745513916,7.665430545806885,0.43315452337265015,0.492886483669281,-0.1148301437497139 +0.30000001192092896,24.209775924682617,6.315545558929443,7.935412406921387,0.35870349407196045,0.4819844663143158,-0.12408214807510376 +0.30000001192092896,24.482229232788086,6.454622745513916,7.845418453216553,0.3758845031261444,0.44927847385406494,-0.11020414531230927 +0.30000001192092896,24.482229232788086,6.361904144287109,7.800421237945557,0.3415224850177765,0.5528474450111389,-0.06857015192508698 +0.30000001192092896,24.482229232788086,6.454622745513916,7.845418453216553,0.39879247546195984,0.5473964810371399,-0.1009521484375 +0.30000001192092896,24.618453979492188,6.500981330871582,7.935412406921387,0.26707151532173157,0.4983374774456024,-0.06857015192508698 +0.30000001192092896,24.34600257873535,6.454622745513916,7.890415668487549,0.3128874897956848,0.5473964810371399,-0.09632615000009537 +0.30000001192092896,24.277889251708984,6.454622745513916,7.755424976348877,0.289979487657547,0.4656314551830292,-0.09170015156269073 +0.30000001192092896,24.41411590576172,6.454622745513916,7.890415668487549,0.3243415057659149,0.5092394948005676,-0.11020414531230927 +0.10000001639127731,24.41411590576172,6.454622745513916,7.980409622192383,0.3128874897956848,0.5528474450111389,-0.09170015156269073 +0.10000001639127731,24.073549270629883,1.911440372467041,2.0408053398132324,0.11244247853755951,0.0949634537100792,0.3477698266506195 +0.10000001639127731,24.41411590576172,1.8187223672866821,3.0307395458221436,0.2613444924354553,0.11131644994020462,-0.1009521484375 +0.10000001639127731,24.482229232788086,1.911440372467041,3.0307395458221436,0.12389648705720901,0.018649447709321976,-0.15646414458751678 +0.10000001639127731,23.93732452392578,1.9577994346618652,3.0757362842559814,0.27279847860336304,0.08951245248317719,-0.09170015156269073 +0.10000001639127731,24.41411590576172,1.8187223672866821,3.0757362842559814,0.2613444924354553,0.06770844757556915,-0.25361016392707825 +0.10000001639127731,24.55034065246582,2.0041584968566895,3.1207334995269775,0.22125549614429474,-0.0031545525416731834,-0.16571614146232605 +0.10000001639127731,24.34600257873535,1.911440372467041,3.2107274532318115,0.1754394769668579,0.12221845239400864,-0.08244814723730087 +0.10000001639127731,24.277889251708984,1.8187223672866821,3.0757362842559814,0.15825848281383514,0.04045344889163971,-0.1888461410999298 +0.10000001639127731,24.55034065246582,1.8650814294815063,3.0757362842559814,0.19834749400615692,0.04045344889163971,-0.15646414458751678 +0.10000001639127731,24.34600257873535,2.0041584968566895,3.0757362842559814,0.11244247853755951,-0.01405655313283205,-0.17496813833713531 +0.10000001639127731,24.482229232788086,1.9577994346618652,3.1657304763793945,0.12389648705720901,0.06225745007395744,-0.23510614037513733 +0.10000001639127731,24.00543785095215,1.8187223672866821,3.2107274532318115,0.2384364902973175,0.00229644775390625,-0.23510614037513733 +0.10000001639127731,24.482229232788086,1.8187223672866821,3.1207334995269775,0.12389648705720901,-0.008605552837252617,-0.12408214807510376 +0.10000001639127731,24.073549270629883,2.0041584968566895,3.0757362842559814,0.2384364902973175,0.024100448936223984,-0.2027241587638855 +0.10000001639127731,24.14166259765625,1.8187223672866821,3.1657304763793945,0.19262048602104187,0.029551448300480843,-0.17034214735031128 +0.10000001639127731,24.073549270629883,1.8187223672866821,3.3007214069366455,0.15825848281383514,0.0949634537100792,-0.16571614146232605 +0.10000001639127731,24.14166259765625,1.911440372467041,3.1207334995269775,0.186893492937088,0.029551448300480843,-0.11945614963769913 +0.10000001639127731,24.482229232788086,1.911440372467041,3.0307395458221436,0.13535048067569733,0.1004144549369812,-0.17496813833713531 +0.10000001639127731,24.277889251708984,1.9577994346618652,3.3007214069366455,0.2613444924354553,0.056806448847055435,-0.22585414350032806 +0.10000001639127731,24.686567306518555,1.7723634243011475,3.1207334995269775,0.08953448385000229,0.056806448847055435,-0.17034214735031128 +0.10000001639127731,24.482229232788086,1.8650814294815063,3.0307395458221436,0.15825848281383514,0.051355451345443726,-0.1009521484375 +0.10000001639127731,24.482229232788086,1.7260043621063232,3.1657304763793945,0.2384364902973175,0.013198448345065117,-0.2304801493883133 +0.10000001639127731,24.55034065246582,2.0041584968566895,3.1207334995269775,0.1754394769668579,0.07315945625305176,-0.13796015083789825 +0.10000001639127731,24.277889251708984,1.9577994346618652,3.2107274532318115,0.186893492937088,0.14402246475219727,-0.16571614146232605 +0.10000001639127731,24.686567306518555,1.911440372467041,3.0757362842559814,0.20407448709011078,0.1603754609823227,-0.13333414494991302 +0.10000001639127731,24.277889251708984,1.8650814294815063,3.2107274532318115,0.2269824892282486,0.018649447709321976,-0.21197615563869476 +0.10000001639127731,24.073549270629883,2.0505173206329346,3.1207334995269775,0.13535048067569733,0.07315945625305176,-0.15646414458751678 +0.10000001639127731,24.277889251708984,2.0041584968566895,3.1207334995269775,0.23270948231220245,0.08406144380569458,-0.14258615672588348 +0.10000001639127731,24.209775924682617,1.911440372467041,3.0307395458221436,0.20980148017406464,0.04590445011854172,-0.19809813797473907 +0.10000001639127731,24.209775924682617,2.096876382827759,3.1657304763793945,0.22125549614429474,0.08951245248317719,-0.17959414422512054 +0.10000001639127731,24.482229232788086,2.0041584968566895,2.9857423305511475,0.2498904913663864,0.06225745007395744,-0.15646414458751678 +0.10000001639127731,24.41411590576172,2.0041584968566895,2.9857423305511475,0.35870349407196045,0.056806448847055435,-0.22585414350032806 +0.10000001639127731,24.55034065246582,2.0041584968566895,3.0757362842559814,0.19262048602104187,0.018649447709321976,-0.18422015011310577 +0.10000001639127731,24.34600257873535,2.0041584968566895,3.1207334995269775,0.18116648495197296,0.07861045002937317,-0.1287081390619278 +0.10000001639127731,24.482229232788086,1.8650814294815063,2.8957486152648926,0.24416348338127136,0.08406144380569458,-0.22585414350032806 +0.10000001639127731,24.686567306518555,1.8650814294815063,3.1207334995269775,0.09526148438453674,0.051355451345443726,-0.17496813833713531 +0.10000001639127731,24.34600257873535,1.911440372467041,3.1657304763793945,0.1754394769668579,0.013198448345065117,-0.17496813833713531 +0.10000001639127731,24.618453979492188,1.9577994346618652,3.1207334995269775,0.2155284881591797,0.06225745007395744,-0.21197615563869476 +0.10000001639127731,24.34600257873535,1.8187223672866821,2.9857423305511475,0.06089948117733002,0.029551448300480843,-0.22585414350032806 +0.10000001639127731,24.686567306518555,1.911440372467041,3.2107274532318115,0.186893492937088,0.024100448936223984,-0.17959414422512054 +0.10000001639127731,24.482229232788086,1.8187223672866821,3.1657304763793945,0.12389648705720901,0.0350024476647377,-0.25361016392707825 +0.10000001639127731,24.41411590576172,1.8650814294815063,3.0307395458221436,0.26707151532173157,-0.046762555837631226,-0.25361016392707825 +0.10000001639127731,24.482229232788086,1.8187223672866821,3.0757362842559814,0.08380748331546783,0.029551448300480843,-0.15183815360069275 +0.10000001639127731,24.34600257873535,1.911440372467041,3.1657304763793945,0.10671548545360565,0.06770844757556915,-0.1287081390619278 +0.10000001639127731,24.209775924682617,1.8187223672866821,3.1207334995269775,0.18116648495197296,0.056806448847055435,-0.2443581372499466 +0.10000001639127731,24.209775924682617,1.8650814294815063,3.2557244300842285,0.27279847860336304,-0.019507553428411484,-0.17959414422512054 +0.10000001639127731,24.277889251708984,1.911440372467041,3.1657304763793945,0.22125549614429474,0.07861045002937317,-0.16571614146232605 +0.10000001639127731,24.482229232788086,1.8187223672866821,3.0757362842559814,0.20980148017406464,0.08951245248317719,-0.14721214771270752 +0.10000001639127731,24.209775924682617,1.911440372467041,3.1657304763793945,0.289979487657547,-0.06311555206775665,-0.20735014975070953 +0.10000001639127731,24.55034065246582,1.9577994346618652,3.1207334995269775,0.26707151532173157,0.06770844757556915,-0.14721214771270752 +0.10000001639127731,24.618453979492188,1.9577994346618652,3.2557244300842285,0.20980148017406464,0.08951245248317719,-0.09170015156269073 +0.10000001639127731,24.34600257873535,1.911440372467041,2.9407453536987305,0.2384364902973175,0.013198448345065117,-0.1888461410999298 +0.10000001639127731,24.686567306518555,1.8650814294815063,3.2557244300842285,0.19834749400615692,-0.024958552792668343,-0.1009521484375 +0.10000001639127731,24.482229232788086,2.143235445022583,3.2107274532318115,0.3243415057659149,0.08951245248317719,-0.1287081390619278 +0.10000001639127731,24.34600257873535,1.911440372467041,3.0307395458221436,0.2785254716873169,0.013198448345065117,-0.11945614963769913 +0.10000001639127731,24.482229232788086,1.911440372467041,3.0757362842559814,0.20980148017406464,0.06225745007395744,-0.17959414422512054 +0.10000001639127731,24.34600257873535,1.911440372467041,3.0757362842559814,0.25561749935150146,0.024100448936223984,-0.13333414494991302 +0.10000001639127731,24.277889251708984,1.911440372467041,2.9857423305511475,0.16971249878406525,0.08951245248317719,-0.1287081390619278 +0.10000001639127731,24.209775924682617,1.8187223672866821,3.0757362842559814,0.22125549614429474,0.018649447709321976,-0.19809813797473907 +0.10000001639127731,24.41411590576172,2.0041584968566895,3.1657304763793945,0.2269824892282486,0.06225745007395744,-0.16571614146232605 +0.10000001639127731,24.073549270629883,1.911440372467041,3.2107274532318115,0.14680448174476624,0.12766945362091064,-0.20735014975070953 +0.10000001639127731,24.14166259765625,1.8650814294815063,3.0307395458221436,0.2155284881591797,0.04590445011854172,-0.25361016392707825 +0.10000001639127731,24.55034065246582,1.911440372467041,3.0307395458221436,0.14107748866081238,0.0077474480494856834,-0.18422015011310577 +0.10000001639127731,24.209775924682617,1.8187223672866821,3.1207334995269775,0.19262048602104187,0.024100448936223984,-0.13333414494991302 +0.10000001639127731,24.41411590576172,1.8650814294815063,3.1657304763793945,0.20980148017406464,0.07315945625305176,-0.2443581372499466 +0.10000001639127731,24.34600257873535,1.8187223672866821,3.0307395458221436,0.186893492937088,0.04590445011854172,-0.22122815251350403 +0.10000001639127731,24.482229232788086,1.911440372467041,3.3007214069366455,0.05517248064279556,0.07861045002937317,-0.16571614146232605 +0.10000001639127731,24.55034065246582,1.911440372467041,3.0307395458221436,0.186893492937088,0.06225745007395744,-0.15646414458751678 +0.10000001639127731,24.482229232788086,1.8187223672866821,2.8957486152648926,0.09526148438453674,0.018649447709321976,-0.23510614037513733 +0.10000001639127731,24.482229232788086,1.9577994346618652,3.2557244300842285,0.12389648705720901,0.018649447709321976,-0.17496813833713531 +0.10000001639127731,24.277889251708984,1.7723634243011475,3.1207334995269775,0.1754394769668579,0.04045344889163971,-0.12408214807510376 +0.10000001639127731,24.073549270629883,1.911440372467041,3.0757362842559814,0.24416348338127136,0.0949634537100792,-0.2166021466255188 +0.10000001639127731,24.34600257873535,1.8187223672866821,2.9857423305511475,0.1754394769668579,0.0350024476647377,-0.1888461410999298 +0.10000001639127731,24.277889251708984,2.0041584968566895,3.1207334995269775,0.26707151532173157,-0.03040955401957035,-0.16571614146232605 +0.10000001639127731,24.073549270629883,1.7723634243011475,3.0307395458221436,0.1754394769668579,0.04045344889163971,-0.17959414422512054 +0.10000001639127731,24.34600257873535,2.0041584968566895,3.3007214069366455,0.2155284881591797,0.018649447709321976,-0.17959414422512054 +0.10000001639127731,24.209775924682617,2.0041584968566895,3.1207334995269775,0.1525314748287201,-0.01405655313283205,-0.2304801493883133 +0.10000001639127731,24.55034065246582,2.0041584968566895,3.1657304763793945,0.19262048602104187,0.13312044739723206,-0.14721214771270752 +0.10000001639127731,24.482229232788086,2.0041584968566895,3.1657304763793945,0.23270948231220245,0.07861045002937317,-0.17496813833713531 +0.10000001639127731,24.482229232788086,1.9577994346618652,3.2557244300842285,0.186893492937088,-0.01405655313283205,-0.1888461410999298 +0.10000001639127731,24.482229232788086,1.9577994346618652,3.0307395458221436,0.06662648171186447,0.14947344362735748,-0.17496813833713531 +0.10000001639127731,24.55034065246582,1.9577994346618652,3.0757362842559814,0.20407448709011078,0.1549244523048401,-0.05931815132498741 +0.10000001639127731,24.482229232788086,2.0041584968566895,3.0757362842559814,0.19262048602104187,0.10586544871330261,-0.1888461410999298 +0.10000001639127731,24.34600257873535,2.0041584968566895,3.0307395458221436,0.26707151532173157,0.11131644994020462,-0.16109015047550201 +0.10000001639127731,24.618453979492188,2.0041584968566895,3.1207334995269775,0.186893492937088,0.0350024476647377,-0.15183815360069275 +0.10000001639127731,24.618453979492188,1.911440372467041,3.0307395458221436,0.29570648074150085,0.14402246475219727,-0.18422015011310577 +0.10000001639127731,24.14166259765625,1.9577994346618652,3.2107274532318115,0.19262048602104187,0.08406144380569458,-0.18422015011310577 +0.10000001639127731,24.55034065246582,1.911440372467041,3.1657304763793945,0.1754394769668579,0.07315945625305176,-0.14258615672588348 +0.10000001639127731,24.34600257873535,1.8187223672866821,3.0757362842559814,0.19834749400615692,0.013198448345065117,-0.18422015011310577 +0.10000001639127731,24.277889251708984,1.8650814294815063,2.9857423305511475,0.12962348759174347,0.029551448300480843,-0.23973214626312256 +0.10000001639127731,24.41411590576172,2.0041584968566895,3.1657304763793945,0.12389648705720901,0.11676745861768723,-0.1009521484375 +0.10000001639127731,24.277889251708984,1.8187223672866821,3.1207334995269775,0.18116648495197296,0.07861045002937317,-0.17034214735031128 +0.10000001639127731,24.618453979492188,1.911440372467041,3.1207334995269775,0.09526148438453674,-0.04131155461072922,-0.2027241587638855 +0.10000001639127731,24.482229232788086,2.0041584968566895,3.3907153606414795,0.15825848281383514,0.0350024476647377,-0.19347214698791504 +0.10000001639127731,24.55034065246582,1.911440372467041,2.8957486152648926,0.11816948652267456,0.051355451345443726,-0.17034214735031128 +0.10000001639127731,24.618453979492188,1.8650814294815063,2.8957486152648926,0.12389648705720901,-0.03040955401957035,-0.1888461410999298 +0.10000001639127731,24.55034065246582,1.7260043621063232,3.2557244300842285,0.18116648495197296,0.018649447709321976,-0.22122815251350403 +0.10000001639127731,24.686567306518555,1.911440372467041,3.1207334995269775,0.14680448174476624,0.07861045002937317,-0.09632615000009537 +0.10000001639127731,24.41411590576172,1.8650814294815063,2.9857423305511475,0.20980148017406464,0.08951245248317719,-0.17959414422512054 +0.10000001639127731,24.618453979492188,1.7260043621063232,3.3007214069366455,0.19262048602104187,0.056806448847055435,-0.2166021466255188 +0.10000001639127731,24.277889251708984,1.911440372467041,3.0757362842559814,0.18116648495197296,0.04045344889163971,-0.19809813797473907 +0.10000001639127731,24.41411590576172,2.0505173206329346,3.1657304763793945,0.23270948231220245,0.07315945625305176,-0.14721214771270752 +0.10000001639127731,24.34600257873535,2.0041584968566895,3.0757362842559814,0.19834749400615692,-0.01405655313283205,-0.23510614037513733 +0.10000001639127731,24.482229232788086,2.0505173206329346,3.2557244300842285,0.0379914827644825,0.00229644775390625,-0.13333414494991302 +0.10000001639127731,24.277889251708984,2.0505173206329346,3.1657304763793945,0.2785254716873169,0.11676745861768723,-0.12408214807510376 +0.10000001639127731,24.277889251708984,2.0041584968566895,3.1207334995269775,0.18116648495197296,0.1004144549369812,-0.13796015083789825 +0.10000001639127731,24.482229232788086,1.8187223672866821,3.1657304763793945,0.3014335036277771,-0.01405655313283205,-0.19809813797473907 +0.10000001639127731,24.822792053222656,2.0505173206329346,3.1657304763793945,0.10671548545360565,0.0949634537100792,-0.13796015083789825 +0.10000001639127731,24.209775924682617,1.8187223672866821,3.0757362842559814,0.3014335036277771,0.08951245248317719,-0.17959414422512054 +0.10000001639127731,24.55034065246582,1.8650814294815063,3.2557244300842285,0.19262048602104187,0.08951245248317719,-0.09632615000009537 +0.10000001639127731,24.686567306518555,1.911440372467041,3.1207334995269775,0.13535048067569733,0.018649447709321976,-0.19809813797473907 +0.10000001639127731,24.209775924682617,1.9577994346618652,3.1207334995269775,0.18116648495197296,0.07861045002937317,-0.1009521484375 +0.10000001639127731,24.55034065246582,1.911440372467041,3.1657304763793945,0.1525314748287201,0.06770844757556915,-0.16109015047550201 +0.10000001639127731,24.482229232788086,1.911440372467041,3.1657304763793945,0.10671548545360565,0.04590445011854172,-0.18422015011310577 +0.10000001639127731,24.482229232788086,2.0041584968566895,3.2557244300842285,0.1525314748287201,0.11676745861768723,-0.14258615672588348 +0.10000001639127731,24.00543785095215,1.8187223672866821,3.0307395458221436,0.15825848281383514,0.029551448300480843,-0.2721141278743744 +0.10000001639127731,24.14166259765625,1.7260043621063232,3.1207334995269775,0.18116648495197296,0.018649447709321976,-0.20735014975070953 +0.10000001639127731,24.073549270629883,1.9577994346618652,3.1657304763793945,0.1754394769668579,0.06770844757556915,-0.19809813797473907 +0.10000001639127731,24.073549270629883,1.9577994346618652,3.0307395458221436,0.20407448709011078,0.1658264398574829,-0.19809813797473907 +0.10000001639127731,24.14166259765625,1.7723634243011475,3.0307395458221436,0.12389648705720901,-0.052213553339242935,-0.17496813833713531 +0.10000001639127731,24.00543785095215,2.0505173206329346,3.2107274532318115,0.07235348224639893,0.0350024476647377,-0.2027241587638855 +0.10000001639127731,24.14166259765625,1.8650814294815063,3.0757362842559814,0.16971249878406525,0.029551448300480843,-0.16571614146232605 +0.10000001639127731,24.34600257873535,1.8187223672866821,2.9857423305511475,0.20980148017406464,0.013198448345065117,-0.22585414350032806 +0.10000001639127731,24.34600257873535,1.8187223672866821,3.2557244300842285,0.08953448385000229,-0.06856656074523926,-0.2027241587638855 +0.10000001639127731,24.41411590576172,1.8650814294815063,3.1207334995269775,0.14107748866081238,0.056806448847055435,-0.09632615000009537 +0.10000001639127731,24.55034065246582,1.8187223672866821,3.1207334995269775,0.1754394769668579,-0.019507553428411484,-0.23510614037513733 +0.10000001639127731,24.41411590576172,1.8187223672866821,3.1657304763793945,0.14107748866081238,0.08406144380569458,-0.15646414458751678 +0.10000001639127731,24.277889251708984,1.9577994346618652,3.2107274532318115,0.12389648705720901,0.07315945625305176,-0.15183815360069275 +0.10000001639127731,24.209775924682617,1.8650814294815063,3.1207334995269775,0.19262048602104187,0.14947344362735748,-0.1009521484375 +0.10000001639127731,24.482229232788086,1.7260043621063232,3.1657304763793945,0.2269824892282486,0.029551448300480843,-0.17959414422512054 +0.10000001639127731,24.277889251708984,2.1895945072174072,3.3007214069366455,0.18116648495197296,0.029551448300480843,-0.14721214771270752 +0.10000001639127731,24.277889251708984,1.8650814294815063,3.1207334995269775,0.19262048602104187,0.11676745861768723,-0.14258615672588348 +0.10000001639127731,24.34600257873535,2.0041584968566895,3.0307395458221436,0.1525314748287201,0.056806448847055435,-0.12408214807510376 +0.10000001639127731,24.14166259765625,1.9577994346618652,3.2107274532318115,0.2269824892282486,-0.06311555206775665,-0.16109015047550201 +0.10000001639127731,24.482229232788086,1.9577994346618652,3.0307395458221436,0.16971249878406525,0.07315945625305176,-0.17034214735031128 +0.10000001639127731,24.277889251708984,2.0505173206329346,3.0307395458221436,0.20980148017406464,0.17127744853496552,-0.12408214807510376 +0.10000001639127731,24.55034065246582,2.0505173206329346,3.2107274532318115,0.20407448709011078,0.0949634537100792,-0.23510614037513733 +0.10000001639127731,24.41411590576172,2.096876382827759,3.2107274532318115,0.14107748866081238,0.10586544871330261,-0.16109015047550201 +0.10000001639127731,24.482229232788086,2.0041584968566895,3.0307395458221436,0.186893492937088,0.10586544871330261,-0.10557814687490463 +0.10000001639127731,24.754680633544922,1.8187223672866821,3.0307395458221436,0.2155284881591797,0.051355451345443726,-0.20735014975070953 +0.10000001639127731,24.41411590576172,1.9577994346618652,3.1207334995269775,0.12389648705720901,-0.0031545525416731834,-0.15646414458751678 +0.10000001639127731,24.618453979492188,1.911440372467041,3.2107274532318115,0.08953448385000229,0.12221845239400864,-0.15646414458751678 +0.10000001639127731,24.41411590576172,1.8650814294815063,3.0307395458221436,0.1525314748287201,0.07861045002937317,-0.23510614037513733 +0.10000001639127731,24.34600257873535,1.8650814294815063,3.1207334995269775,0.15825848281383514,0.08406144380569458,-0.2027241587638855 +0.10000001639127731,24.482229232788086,2.0041584968566895,3.1657304763793945,0.18116648495197296,0.018649447709321976,-0.2027241587638855 +0.10000001639127731,24.14166259765625,1.8650814294815063,3.1657304763793945,0.1754394769668579,0.12766945362091064,-0.19809813797473907 +0.10000001639127731,24.209775924682617,1.8187223672866821,3.0307395458221436,0.20980148017406464,0.07861045002937317,-0.2304801493883133 +0.10000001639127731,24.34600257873535,1.8650814294815063,3.1207334995269775,0.186893492937088,0.024100448936223984,-0.15646414458751678 +0.10000001639127731,24.209775924682617,1.9577994346618652,3.0307395458221436,0.1754394769668579,0.08406144380569458,-0.1888461410999298 +0.10000001639127731,24.34600257873535,1.7260043621063232,2.9857423305511475,0.04371848329901695,0.04045344889163971,-0.17959414422512054 +0.10000001639127731,24.482229232788086,1.8187223672866821,3.2557244300842285,0.15825848281383514,0.024100448936223984,-0.14721214771270752 +0.10000001639127731,24.55034065246582,1.8187223672866821,3.0307395458221436,0.1639854907989502,-0.01405655313283205,-0.15183815360069275 +0.10000001639127731,24.686567306518555,1.9577994346618652,2.9857423305511475,0.22125549614429474,-0.0031545525416731834,-0.2027241587638855 +0.10000001639127731,24.55034065246582,1.8187223672866821,3.2557244300842285,0.19262048602104187,-0.01405655313283205,-0.19347214698791504 +0.10000001639127731,24.55034065246582,2.0041584968566895,3.1657304763793945,0.12389648705720901,0.051355451345443726,-0.16571614146232605 +0.10000001639127731,24.482229232788086,2.0505173206329346,2.9857423305511475,0.13535048067569733,0.0077474480494856834,-0.09632615000009537 +0.10000001639127731,24.686567306518555,1.8187223672866821,3.1657304763793945,0.2155284881591797,-0.019507553428411484,-0.22585414350032806 +0.10000001639127731,24.618453979492188,1.9577994346618652,3.2557244300842285,0.15825848281383514,0.0949634537100792,-0.17496813833713531 +0.10000001639127731,24.34600257873535,2.0041584968566895,2.8957486152648926,0.3128874897956848,0.029551448300480843,-0.16109015047550201 +0.10000001639127731,24.482229232788086,1.911440372467041,3.2557244300842285,0.22125549614429474,0.029551448300480843,-0.15183815360069275 +0.10000001639127731,24.41411590576172,2.0505173206329346,3.1657304763793945,0.14680448174476624,0.013198448345065117,-0.16571614146232605 +0.10000001639127731,24.482229232788086,1.9577994346618652,3.1207334995269775,0.19834749400615692,0.11131644994020462,-0.13333414494991302 +0.10000001639127731,24.209775924682617,1.8650814294815063,3.0757362842559814,0.12962348759174347,0.06770844757556915,-0.07782214879989624 +0.10000001639127731,24.482229232788086,1.911440372467041,3.0307395458221436,0.2155284881591797,-0.03040955401957035,-0.18422015011310577 +0.10000001639127731,24.482229232788086,1.9577994346618652,3.2107274532318115,0.05517248064279556,0.024100448936223984,-0.17959414422512054 +0.10000001639127731,24.00543785095215,2.0041584968566895,2.9857423305511475,0.20980148017406464,0.14402246475219727,-0.14721214771270752 +0.10000001639127731,24.55034065246582,1.911440372467041,3.1207334995269775,0.28425249457359314,0.14402246475219727,-0.16571614146232605 +0.10000001639127731,24.55034065246582,1.911440372467041,3.2107274532318115,0.20407448709011078,0.018649447709321976,-0.14258615672588348 +0.10000001639127731,24.55034065246582,1.9577994346618652,3.1207334995269775,0.33579549193382263,0.1004144549369812,-0.13333414494991302 +0.10000001639127731,24.277889251708984,1.8650814294815063,3.0307395458221436,0.30716049671173096,0.0949634537100792,-0.2767401337623596 +0.10000001639127731,24.618453979492188,1.9577994346618652,3.2107274532318115,0.18116648495197296,0.013198448345065117,-0.23510614037513733 +0.10000001639127731,24.41411590576172,1.911440372467041,3.0757362842559814,0.12389648705720901,0.04045344889163971,-0.14721214771270752 +0.10000001639127731,24.482229232788086,2.0041584968566895,3.1657304763793945,0.186893492937088,0.024100448936223984,-0.2027241587638855 +0.10000001639127731,24.209775924682617,1.8187223672866821,2.9857423305511475,0.08953448385000229,0.08951245248317719,-0.22585414350032806 +0.10000001639127731,24.34600257873535,2.0505173206329346,3.1207334995269775,0.1525314748287201,0.08951245248317719,-0.15183815360069275 +0.10000001639127731,24.209775924682617,2.0041584968566895,3.0757362842559814,0.24416348338127136,0.06225745007395744,-0.2304801493883133 +0.10000001639127731,24.14166259765625,1.8187223672866821,2.9407453536987305,0.20407448709011078,-0.024958552792668343,-0.25361016392707825 +0.10000001639127731,24.277889251708984,2.0041584968566895,3.3007214069366455,0.14107748866081238,0.029551448300480843,-0.19809813797473907 +0.10000001639127731,24.00543785095215,2.0041584968566895,3.1207334995269775,0.10671548545360565,0.056806448847055435,-0.12408214807510376 +0.10000001639127731,24.34600257873535,1.911440372467041,3.1207334995269775,0.19834749400615692,-0.019507553428411484,-0.25361016392707825 +0.10000001639127731,24.277889251708984,1.911440372467041,3.2557244300842285,0.14107748866081238,0.04590445011854172,-0.15646414458751678 +0.10000001639127731,24.34600257873535,1.9577994346618652,3.1657304763793945,0.14107748866081238,-0.0031545525416731834,-0.15183815360069275 +0.10000001639127731,24.277889251708984,1.8650814294815063,3.2107274532318115,0.2613444924354553,0.07315945625305176,-0.15183815360069275 +0.10000001639127731,24.277889251708984,1.8187223672866821,3.3457186222076416,0.1525314748287201,0.07315945625305176,-0.23973214626312256 +0.10000001639127731,24.34600257873535,2.0041584968566895,3.0757362842559814,0.12389648705720901,0.12221845239400864,-0.15183815360069275 +0.10000001639127731,24.41411590576172,1.9577994346618652,3.1207334995269775,0.2498904913663864,0.1603754609823227,-0.1009521484375 +0.10000001639127731,24.55034065246582,1.7723634243011475,3.2107274532318115,0.2269824892282486,0.051355451345443726,-0.16109015047550201 +0.10000001639127731,24.55034065246582,2.0041584968566895,3.2107274532318115,0.12389648705720901,0.00229644775390625,-0.14258615672588348 +0.10000001639127731,24.209775924682617,2.0041584968566895,3.0757362842559814,0.1525314748287201,0.08406144380569458,-0.16571614146232605 +0.10000001639127731,24.34600257873535,1.8187223672866821,3.0757362842559814,0.15825848281383514,0.04045344889163971,-0.05469214916229248 +0.10000001639127731,24.14166259765625,1.8187223672866821,3.2107274532318115,0.16971249878406525,0.06225745007395744,-0.0870741531252861 +0.10000001639127731,24.073549270629883,1.9577994346618652,3.2557244300842285,0.08380748331546783,0.04590445011854172,-0.16571614146232605 +0.10000001639127731,24.209775924682617,1.8650814294815063,3.1657304763793945,0.2384364902973175,0.0350024476647377,-0.06394414603710175 +0.10000001639127731,24.41411590576172,1.7723634243011475,3.1207334995269775,0.2384364902973175,0.11131644994020462,-0.2304801493883133 +0.10000001639127731,24.209775924682617,2.0505173206329346,3.1657304763793945,0.20980148017406464,0.0949634537100792,-0.15646414458751678 +0.10000001639127731,24.34600257873535,2.0505173206329346,3.1207334995269775,0.11244247853755951,0.11676745861768723,-0.17034214735031128 +0.10000001639127731,24.482229232788086,1.911440372467041,3.2107274532318115,0.13535048067569733,0.11676745861768723,-0.14721214771270752 +0.10000001639127731,24.41411590576172,1.8650814294815063,3.1657304763793945,0.14680448174476624,0.1004144549369812,-0.16109015047550201 diff --git a/results/Load 10 branch 1/results_CORE_duty20%_VHigh24.csv b/results/Load 10 branch 1/results_CORE_duty20%_VHigh24.csv new file mode 100644 index 0000000000000000000000000000000000000000..64ad10734f3037a237b0d88de92d261bab8e97de --- /dev/null +++ b/results/Load 10 branch 1/results_CORE_duty20%_VHigh24.csv @@ -0,0 +1,501 @@ +duty_cycle,Vhigh_value,V1_low_value,V2_low_value,Ihigh_value,I1_low_value,I2_low_value +0.10000000149011612,24.209775924682617,1.7723634243011475,3.0757362842559814,0.1525314748287201,0.14402246475219727,-0.17959414422512054 +0.20000000298023224,24.34600257873535,2.0041584968566895,2.9857423305511475,0.2613444924354553,0.00229644775390625,-0.18422015011310577 +0.30000001192092896,24.209775924682617,4.6929802894592285,5.505574703216553,0.37015751004219055,-0.05766455456614494,-0.0870741531252861 +0.30000001192092896,24.34600257873535,7.0572896003723145,7.845418453216553,0.46178948879241943,0.06225745007395744,-0.16109015047550201 +0.30000001192092896,23.93732452392578,6.454622745513916,7.575436592102051,0.25561749935150146,0.5637494325637817,-0.17034214735031128 +0.30000001192092896,24.277889251708984,6.454622745513916,7.845418453216553,0.289979487657547,0.5473964810371399,-0.08244814723730087 +0.30000001192092896,23.93732452392578,6.500981330871582,7.845418453216553,0.3758845031261444,0.5855534672737122,-0.1009521484375 +0.30000001192092896,23.869211196899414,6.361904144287109,7.665430545806885,0.23270948231220245,0.44382745027542114,-0.1888461410999298 +0.30000001192092896,24.073549270629883,6.315545558929443,7.980409622192383,0.2498904913663864,0.4765334725379944,-0.15646414458751678 +0.30000001192092896,24.14166259765625,6.454622745513916,7.800421237945557,0.3014335036277771,0.5364944338798523,-0.05006615072488785 +0.30000001192092896,24.073549270629883,6.408263683319092,7.710427761077881,0.3644304871559143,0.5364944338798523,-0.2027241587638855 +0.30000001192092896,24.14166259765625,6.361904144287109,7.935412406921387,0.3758845031261444,0.4765334725379944,-0.14258615672588348 +0.30000001192092896,24.14166259765625,6.547340393066406,7.890415668487549,0.31861451268196106,0.492886483669281,-0.022310150787234306 +0.30000001192092896,24.41411590576172,6.454622745513916,7.710427761077881,0.393065482378006,0.6128084659576416,-0.11020414531230927 +0.30000001192092896,24.209775924682617,6.361904144287109,7.845418453216553,0.2785254716873169,0.5364944338798523,-0.1148301437497139 +0.30000001192092896,24.34600257873535,6.500981330871582,7.755424976348877,0.34724947810173035,0.4656314551830292,-0.14258615672588348 +0.30000001192092896,24.073549270629883,6.547340393066406,7.710427761077881,0.42170050740242004,0.4874354600906372,-0.11945614963769913 +0.30000001192092896,24.41411590576172,6.408263683319092,7.710427761077881,0.289979487657547,0.5419455170631409,-0.07782214879989624 +0.30000001192092896,24.00543785095215,6.408263683319092,7.845418453216553,0.3873384892940521,0.4056704640388489,-0.11945614963769913 +0.30000001192092896,23.93732452392578,6.640058517456055,7.800421237945557,0.3644304871559143,0.6073575019836426,-0.15646414458751678 +0.30000001192092896,24.00543785095215,6.547340393066406,7.890415668487549,0.27279847860336304,0.5746514797210693,-0.1287081390619278 +0.30000001192092896,24.073549270629883,6.408263683319092,7.755424976348877,0.3415224850177765,0.5692004561424255,-0.15646414458751678 +0.30000001192092896,24.14166259765625,6.361904144287109,7.890415668487549,0.27279847860336304,0.4819844663143158,-0.16571614146232605 +0.30000001192092896,24.14166259765625,6.454622745513916,7.890415668487549,0.3300684690475464,0.5801025032997131,-0.12408214807510376 +0.30000001192092896,24.277889251708984,6.408263683319092,7.935412406921387,0.34724947810173035,0.6073575019836426,-0.15183815360069275 +0.30000001192092896,24.55034065246582,6.361904144287109,7.800421237945557,0.3529765009880066,0.44382745027542114,-0.16571614146232605 +0.30000001192092896,24.277889251708984,6.500981330871582,7.935412406921387,0.393065482378006,0.4765334725379944,-0.15646414458751678 +0.30000001192092896,24.618453979492188,6.593699932098389,7.665430545806885,0.37015751004219055,0.5255924463272095,-0.10557814687490463 +0.30000001192092896,24.209775924682617,6.361904144287109,7.755424976348877,0.2498904913663864,0.5146905183792114,-0.19809813797473907 +0.30000001192092896,24.482229232788086,6.593699932098389,7.980409622192383,0.33579549193382263,0.5419455170631409,-0.16109015047550201 +0.30000001192092896,24.209775924682617,6.454622745513916,7.890415668487549,0.30716049671173096,0.4874354600906372,-0.06394414603710175 +0.30000001192092896,24.14166259765625,6.361904144287109,7.845418453216553,0.39879247546195984,0.4983374774456024,-0.14721214771270752 +0.30000001192092896,24.34600257873535,6.361904144287109,8.070404052734375,0.3758845031261444,0.492886483669281,-0.14258615672588348 +0.30000001192092896,24.073549270629883,6.454622745513916,7.980409622192383,0.3529765009880066,0.46018049120903015,-0.09632615000009537 +0.30000001192092896,24.482229232788086,6.454622745513916,7.710427761077881,0.4446084797382355,0.4656314551830292,-0.1009521484375 +0.30000001192092896,24.209775924682617,6.408263683319092,7.980409622192383,0.3644304871559143,0.4656314551830292,-0.17959414422512054 +0.30000001192092896,24.41411590576172,6.593699932098389,7.800421237945557,0.289979487657547,0.4710824489593506,-0.11020414531230927 +0.30000001192092896,24.754680633544922,6.547340393066406,7.710427761077881,0.4159735143184662,0.596455454826355,-0.11020414531230927 +0.30000001192092896,24.55034065246582,6.315545558929443,7.980409622192383,0.3873384892940521,0.5528474450111389,-0.16109015047550201 +0.30000001192092896,24.618453979492188,6.500981330871582,7.935412406921387,0.42170050740242004,0.4220234751701355,-0.17959414422512054 +0.30000001192092896,24.41411590576172,6.640058517456055,7.890415668487549,0.31861451268196106,0.5310434699058533,-0.05006615072488785 +0.30000001192092896,24.34600257873535,6.361904144287109,7.755424976348877,0.4045194983482361,0.4874354600906372,-0.05931815132498741 +0.30000001192092896,24.277889251708984,6.500981330871582,7.890415668487549,0.541967511177063,0.4819844663143158,-0.13796015083789825 +0.30000001192092896,24.41411590576172,6.593699932098389,7.890415668487549,0.3873384892940521,0.5473964810371399,-0.14258615672588348 +0.30000001192092896,23.93732452392578,6.454622745513916,7.935412406921387,0.20980148017406464,0.5364944338798523,-0.12408214807510376 +0.30000001192092896,24.209775924682617,6.500981330871582,7.800421237945557,0.3243415057659149,0.596455454826355,-0.11945614963769913 +0.30000001192092896,24.277889251708984,6.547340393066406,7.890415668487549,0.34724947810173035,0.45472946763038635,-0.15183815360069275 +0.30000001192092896,24.073549270629883,6.547340393066406,7.800421237945557,0.39879247546195984,0.5364944338798523,-0.07782214879989624 +0.30000001192092896,24.277889251708984,6.408263683319092,7.890415668487549,0.33579549193382263,0.5473964810371399,-0.16109015047550201 +0.30000001192092896,24.277889251708984,6.408263683319092,7.710427761077881,0.35870349407196045,0.5255924463272095,-0.13796015083789825 +0.30000001192092896,24.34600257873535,6.500981330871582,7.980409622192383,0.30716049671173096,0.492886483669281,-0.11020414531230927 +0.30000001192092896,24.277889251708984,6.500981330871582,7.800421237945557,0.20980148017406464,0.5637494325637817,-0.21197615563869476 +0.30000001192092896,24.00543785095215,6.315545558929443,7.755424976348877,0.3529765009880066,0.4874354600906372,-0.11020414531230927 +0.30000001192092896,24.34600257873535,6.361904144287109,7.755424976348877,0.30716049671173096,0.44382745027542114,-0.16109015047550201 +0.30000001192092896,24.277889251708984,6.454622745513916,7.890415668487549,0.37015751004219055,0.4710824489593506,-0.09170015156269073 +0.30000001192092896,24.14166259765625,6.361904144287109,7.710427761077881,0.30716049671173096,0.46018049120903015,-0.22585414350032806 +0.30000001192092896,24.073549270629883,6.269186496734619,7.800421237945557,0.39879247546195984,0.43837645649909973,-0.21197615563869476 +0.30000001192092896,24.073549270629883,6.500981330871582,7.800421237945557,0.41024649143218994,0.44382745027542114,-0.11020414531230927 +0.30000001192092896,23.93732452392578,6.361904144287109,7.845418453216553,0.27279847860336304,0.5201414823532104,-0.09632615000009537 +0.30000001192092896,24.209775924682617,6.500981330871582,7.890415668487549,0.3816114664077759,0.4983374774456024,-0.16109015047550201 +0.30000001192092896,24.073549270629883,6.640058517456055,7.935412406921387,0.289979487657547,0.45472946763038635,-0.05931815132498741 +0.30000001192092896,24.55034065246582,6.547340393066406,7.755424976348877,0.4159735143184662,0.596455454826355,-0.13796015083789825 +0.30000001192092896,23.93732452392578,6.361904144287109,7.800421237945557,0.33579549193382263,0.5037884712219238,-0.1888461410999298 +0.30000001192092896,24.34600257873535,6.500981330871582,7.890415668487549,0.4045194983482361,0.4874354600906372,-0.1287081390619278 +0.30000001192092896,24.55034065246582,6.500981330871582,7.980409622192383,0.3873384892940521,0.5201414823532104,-0.08244814723730087 +0.30000001192092896,24.41411590576172,6.500981330871582,7.845418453216553,0.27279847860336304,0.5310434699058533,-0.12408214807510376 +0.30000001192092896,24.482229232788086,6.454622745513916,7.845418453216553,0.4274275004863739,0.43837645649909973,-0.15183815360069275 +0.30000001192092896,24.209775924682617,6.640058517456055,7.710427761077881,0.27279847860336304,0.5201414823532104,-0.08244814723730087 +0.30000001192092896,24.618453979492188,6.454622745513916,7.935412406921387,0.3300684690475464,0.5637494325637817,-0.16571614146232605 +0.30000001192092896,24.00543785095215,6.454622745513916,7.710427761077881,0.3758845031261444,0.5255924463272095,-0.1148301437497139 +0.30000001192092896,24.00543785095215,6.454622745513916,7.890415668487549,0.28425249457359314,0.5692004561424255,-0.15646414458751678 +0.30000001192092896,24.14166259765625,6.361904144287109,7.935412406921387,0.22125549614429474,0.4656314551830292,-0.06394414603710175 +0.30000001192092896,24.00543785095215,6.454622745513916,7.890415668487549,0.31861451268196106,0.5473964810371399,-0.16571614146232605 +0.30000001192092896,24.482229232788086,6.361904144287109,7.890415668487549,0.3415224850177765,0.492886483669281,-0.19809813797473907 +0.30000001192092896,24.209775924682617,6.547340393066406,7.935412406921387,0.43315452337265015,0.634612500667572,-0.12408214807510376 +0.30000001192092896,24.754680633544922,6.454622745513916,7.890415668487549,0.3873384892940521,0.5364944338798523,-0.13333414494991302 +0.30000001192092896,24.55034065246582,6.408263683319092,7.755424976348877,0.20407448709011078,0.4002194404602051,-0.16571614146232605 +0.30000001192092896,24.482229232788086,6.408263683319092,7.845418453216553,0.3300684690475464,0.5146905183792114,-0.14258615672588348 +0.30000001192092896,24.482229232788086,6.361904144287109,7.800421237945557,0.19834749400615692,0.5310434699058533,-0.1009521484375 +0.30000001192092896,24.34600257873535,6.269186496734619,7.980409622192383,0.3243415057659149,0.5092394948005676,-0.17959414422512054 +0.30000001192092896,24.618453979492188,6.315545558929443,7.800421237945557,0.39879247546195984,0.4819844663143158,-0.11945614963769913 +0.30000001192092896,24.14166259765625,6.454622745513916,7.890415668487549,0.33579549193382263,0.4874354600906372,-0.13796015083789825 +0.30000001192092896,24.00543785095215,6.500981330871582,7.935412406921387,0.4045194983482361,0.5037884712219238,-0.11945614963769913 +0.30000001192092896,24.209775924682617,6.408263683319092,7.980409622192383,0.37015751004219055,0.4710824489593506,-0.2027241587638855 +0.30000001192092896,24.209775924682617,6.454622745513916,7.980409622192383,0.3758845031261444,0.46018049120903015,-0.15183815360069275 +0.30000001192092896,24.482229232788086,6.454622745513916,7.710427761077881,0.30716049671173096,0.6237104535102844,-0.1009521484375 +0.30000001192092896,24.073549270629883,6.408263683319092,7.935412406921387,0.3873384892940521,0.492886483669281,-0.07319615036249161 +0.30000001192092896,24.41411590576172,6.593699932098389,7.800421237945557,0.35870349407196045,0.492886483669281,-0.15183815360069275 +0.30000001192092896,24.618453979492188,6.454622745513916,7.710427761077881,0.3300684690475464,0.5528474450111389,-0.14721214771270752 +0.30000001192092896,24.14166259765625,6.547340393066406,7.890415668487549,0.42170050740242004,0.596455454826355,-0.08244814723730087 +0.30000001192092896,24.618453979492188,6.454622745513916,7.890415668487549,0.37015751004219055,0.6073575019836426,-0.07782214879989624 +0.30000001192092896,24.277889251708984,6.408263683319092,7.890415668487549,0.33579549193382263,0.4710824489593506,-0.09170015156269073 +0.30000001192092896,24.34600257873535,6.640058517456055,7.890415668487549,0.23270948231220245,0.5855534672737122,-0.06857015192508698 +0.30000001192092896,24.14166259765625,6.315545558929443,7.800421237945557,0.4045194983482361,0.5746514797210693,-0.15646414458751678 +0.30000001192092896,24.209775924682617,6.361904144287109,7.845418453216553,0.34724947810173035,0.4983374774456024,-0.13796015083789825 +0.30000001192092896,24.14166259765625,6.500981330871582,7.935412406921387,0.2613444924354553,0.492886483669281,-0.1287081390619278 +0.30000001192092896,24.00543785095215,6.500981330871582,7.755424976348877,0.3014335036277771,0.5310434699058533,-0.1148301437497139 +0.30000001192092896,24.14166259765625,6.361904144287109,7.755424976348877,0.393065482378006,0.4765334725379944,-0.09632615000009537 +0.30000001192092896,23.869211196899414,6.408263683319092,7.800421237945557,0.3300684690475464,0.5146905183792114,-0.16571614146232605 +0.30000001192092896,23.869211196899414,6.547340393066406,7.935412406921387,0.2613444924354553,0.5255924463272095,-0.16571614146232605 +0.30000001192092896,24.209775924682617,6.454622745513916,7.800421237945557,0.3300684690475464,0.5310434699058533,-0.1888461410999298 +0.30000001192092896,23.869211196899414,6.454622745513916,8.070404052734375,0.3415224850177765,0.5255924463272095,-0.17959414422512054 +0.30000001192092896,24.34600257873535,6.500981330871582,7.890415668487549,0.35870349407196045,0.4874354600906372,-0.05469214916229248 +0.30000001192092896,24.34600257873535,6.361904144287109,7.755424976348877,0.4503355026245117,0.4765334725379944,-0.14721214771270752 +0.30000001192092896,24.34600257873535,6.408263683319092,7.935412406921387,0.27279847860336304,0.4656314551830292,-0.14721214771270752 +0.30000001192092896,24.41411590576172,6.361904144287109,7.935412406921387,0.289979487657547,0.5255924463272095,-0.09632615000009537 +0.30000001192092896,24.277889251708984,6.547340393066406,7.710427761077881,0.35870349407196045,0.5637494325637817,-0.19809813797473907 +0.30000001192092896,24.34600257873535,6.500981330871582,7.980409622192383,0.37015751004219055,0.4819844663143158,-0.13796015083789825 +0.30000001192092896,24.277889251708984,6.686417579650879,7.935412406921387,0.3243415057659149,0.5092394948005676,-0.09170015156269073 +0.30000001192092896,24.00543785095215,6.593699932098389,7.845418453216553,0.4045194983482361,0.5364944338798523,-0.12408214807510376 +0.30000001192092896,24.34600257873535,6.454622745513916,7.890415668487549,0.3415224850177765,0.5092394948005676,-0.14721214771270752 +0.30000001192092896,24.14166259765625,6.361904144287109,7.935412406921387,0.393065482378006,0.46018049120903015,-0.1148301437497139 +0.30000001192092896,24.073549270629883,6.454622745513916,7.935412406921387,0.3243415057659149,0.5146905183792114,-0.11945614963769913 +0.30000001192092896,24.073549270629883,6.547340393066406,7.845418453216553,0.393065482378006,0.5746514797210693,-0.11945614963769913 +0.30000001192092896,24.073549270629883,6.500981330871582,7.935412406921387,0.39879247546195984,0.5364944338798523,-0.10557814687490463 +0.30000001192092896,24.209775924682617,6.315545558929443,7.935412406921387,0.289979487657547,0.5092394948005676,-0.12408214807510376 +0.30000001192092896,24.209775924682617,6.454622745513916,7.800421237945557,0.3243415057659149,0.5310434699058533,-0.1009521484375 +0.30000001192092896,24.41411590576172,6.315545558929443,7.755424976348877,0.3758845031261444,0.5473964810371399,-0.15646414458751678 +0.30000001192092896,24.34600257873535,6.454622745513916,7.845418453216553,0.41024649143218994,0.4274744689464569,-0.16571614146232605 +0.30000001192092896,24.277889251708984,6.640058517456055,7.845418453216553,0.24416348338127136,0.4819844663143158,-0.11945614963769913 +0.30000001192092896,24.41411590576172,6.500981330871582,7.755424976348877,0.35870349407196045,0.634612500667572,-0.15646414458751678 +0.30000001192092896,24.34600257873535,6.454622745513916,7.845418453216553,0.3415224850177765,0.4274744689464569,-0.17959414422512054 +0.30000001192092896,24.55034065246582,6.500981330871582,7.800421237945557,0.3873384892940521,0.4983374774456024,-0.11020414531230927 +0.30000001192092896,24.41411590576172,6.408263683319092,7.755424976348877,0.3873384892940521,0.5146905183792114,-0.14258615672588348 +0.30000001192092896,24.209775924682617,6.361904144287109,7.800421237945557,0.35870349407196045,0.44382745027542114,-0.09170015156269073 +0.30000001192092896,24.41411590576172,6.408263683319092,8.070404052734375,0.3128874897956848,0.4656314551830292,-0.09632615000009537 +0.30000001192092896,24.34600257873535,6.640058517456055,8.025406837463379,0.31861451268196106,0.45472946763038635,-0.1148301437497139 +0.30000001192092896,24.41411590576172,6.408263683319092,7.845418453216553,0.4045194983482361,0.46018049120903015,-0.14721214771270752 +0.30000001192092896,24.14166259765625,6.408263683319092,7.890415668487549,0.4503355026245117,0.46018049120903015,-0.13333414494991302 +0.30000001192092896,24.209775924682617,6.500981330871582,7.845418453216553,0.3243415057659149,0.492886483669281,-0.12408214807510376 +0.30000001192092896,24.34600257873535,6.315545558929443,7.755424976348877,0.393065482378006,0.492886483669281,-0.12408214807510376 +0.30000001192092896,24.277889251708984,6.361904144287109,7.980409622192383,0.35870349407196045,0.4111214578151703,-0.18422015011310577 +0.30000001192092896,24.41411590576172,6.547340393066406,7.935412406921387,0.43315452337265015,0.4274744689464569,-0.14721214771270752 +0.30000001192092896,24.482229232788086,6.593699932098389,7.890415668487549,0.4274275004863739,0.43837645649909973,-0.11020414531230927 +0.30000001192092896,24.482229232788086,6.500981330871582,7.935412406921387,0.47324350476264954,0.4765334725379944,-0.11020414531230927 +0.30000001192092896,24.277889251708984,6.640058517456055,7.935412406921387,0.26707151532173157,0.5092394948005676,-0.09170015156269073 +0.30000001192092896,24.277889251708984,6.640058517456055,7.755424976348877,0.35870349407196045,0.4983374774456024,-0.07782214879989624 +0.30000001192092896,24.209775924682617,6.454622745513916,7.755424976348877,0.3243415057659149,0.5528474450111389,-0.04544014856219292 +0.30000001192092896,24.14166259765625,6.547340393066406,7.890415668487549,0.30716049671173096,0.44927847385406494,-0.14258615672588348 +0.30000001192092896,24.14166259765625,6.547340393066406,7.935412406921387,0.3529765009880066,0.5255924463272095,-0.0870741531252861 +0.30000001192092896,24.14166259765625,6.593699932098389,7.845418453216553,0.27279847860336304,0.5255924463272095,-0.09632615000009537 +0.30000001192092896,23.869211196899414,6.315545558929443,7.710427761077881,0.3644304871559143,0.5146905183792114,-0.16109015047550201 +0.30000001192092896,24.55034065246582,6.454622745513916,8.025406837463379,0.3816114664077759,0.4329254627227783,-0.13796015083789825 +0.30000001192092896,24.00543785095215,6.500981330871582,7.890415668487549,0.33579549193382263,0.5255924463272095,-0.10557814687490463 +0.30000001192092896,24.14166259765625,6.454622745513916,7.800421237945557,0.2498904913663864,0.6128084659576416,-0.14721214771270752 +0.30000001192092896,24.34600257873535,6.361904144287109,7.800421237945557,0.24416348338127136,0.492886483669281,-0.15183815360069275 +0.30000001192092896,24.41411590576172,6.454622745513916,8.025406837463379,0.29570648074150085,0.5364944338798523,-0.1888461410999298 +0.30000001192092896,24.41411590576172,6.640058517456055,7.845418453216553,0.34724947810173035,0.4710824489593506,-0.14258615672588348 +0.30000001192092896,24.00543785095215,6.222827434539795,7.755424976348877,0.289979487657547,0.4274744689464569,-0.1888461410999298 +0.30000001192092896,24.34600257873535,6.361904144287109,7.890415668487549,0.19834749400615692,0.5092394948005676,-0.12408214807510376 +0.30000001192092896,23.93732452392578,6.408263683319092,7.800421237945557,0.35870349407196045,0.4983374774456024,-0.09170015156269073 +0.30000001192092896,23.93732452392578,6.454622745513916,7.710427761077881,0.30716049671173096,0.4656314551830292,-0.17034214735031128 +0.30000001192092896,24.277889251708984,6.361904144287109,8.025406837463379,0.35870349407196045,0.45472946763038635,-0.16571614146232605 +0.30000001192092896,23.93732452392578,6.640058517456055,7.845418453216553,0.27279847860336304,0.5092394948005676,-0.16109015047550201 +0.30000001192092896,24.00543785095215,6.454622745513916,7.890415668487549,0.35870349407196045,0.4983374774456024,-0.12408214807510376 +0.30000001192092896,24.00543785095215,6.454622745513916,7.800421237945557,0.35870349407196045,0.43837645649909973,-0.13333414494991302 +0.30000001192092896,24.41411590576172,6.640058517456055,7.935412406921387,0.393065482378006,0.4819844663143158,-0.1009521484375 +0.30000001192092896,24.277889251708984,6.500981330871582,7.845418453216553,0.2785254716873169,0.5637494325637817,-0.11945614963769913 +0.30000001192092896,24.41411590576172,6.593699932098389,7.800421237945557,0.3816114664077759,0.492886483669281,-0.07319615036249161 +0.30000001192092896,24.55034065246582,6.500981330871582,7.935412406921387,0.3644304871559143,0.4111214578151703,-0.1148301437497139 +0.30000001192092896,24.41411590576172,6.408263683319092,7.890415668487549,0.289979487657547,0.5201414823532104,-0.07782214879989624 +0.30000001192092896,24.34600257873535,6.500981330871582,7.845418453216553,0.42170050740242004,0.5201414823532104,-0.08244814723730087 +0.30000001192092896,24.41411590576172,6.547340393066406,7.980409622192383,0.33579549193382263,0.5692004561424255,-0.1287081390619278 +0.30000001192092896,24.14166259765625,6.500981330871582,7.800421237945557,0.2785254716873169,0.4220234751701355,-0.18422015011310577 +0.30000001192092896,24.34600257873535,6.686417579650879,7.890415668487549,0.2155284881591797,0.44382745027542114,-0.14721214771270752 +0.30000001192092896,24.073549270629883,6.361904144287109,7.710427761077881,0.49615147709846497,0.6237104535102844,-0.11020414531230927 +0.30000001192092896,24.00543785095215,6.408263683319092,7.935412406921387,0.4159735143184662,0.43837645649909973,-0.17034214735031128 +0.30000001192092896,23.93732452392578,6.454622745513916,7.845418453216553,0.289979487657547,0.5310434699058533,-0.14721214771270752 +0.30000001192092896,24.34600257873535,6.500981330871582,7.755424976348877,0.3816114664077759,0.4983374774456024,-0.1148301437497139 +0.30000001192092896,24.277889251708984,6.500981330871582,7.710427761077881,0.31861451268196106,0.5310434699058533,-0.1009521484375 +0.30000001192092896,24.277889251708984,6.454622745513916,7.800421237945557,0.30716049671173096,0.5473964810371399,-0.09170015156269073 +0.30000001192092896,24.482229232788086,6.500981330871582,7.800421237945557,0.3529765009880066,0.5037884712219238,-0.16571614146232605 +0.30000001192092896,24.34600257873535,6.454622745513916,7.890415668487549,0.3014335036277771,0.4220234751701355,-0.1888461410999298 +0.30000001192092896,24.41411590576172,6.454622745513916,7.890415668487549,0.35870349407196045,0.44927847385406494,-0.1009521484375 +0.30000001192092896,24.55034065246582,6.500981330871582,7.800421237945557,0.3816114664077759,0.4656314551830292,-0.05469214916229248 +0.30000001192092896,24.277889251708984,6.408263683319092,7.800421237945557,0.3873384892940521,0.492886483669281,-0.14258615672588348 +0.30000001192092896,24.686567306518555,6.361904144287109,8.070404052734375,0.35870349407196045,0.46018049120903015,-0.19809813797473907 +0.30000001192092896,24.34600257873535,6.408263683319092,8.025406837463379,0.2384364902973175,0.46018049120903015,-0.1009521484375 +0.30000001192092896,24.073549270629883,6.454622745513916,7.935412406921387,0.4159735143184662,0.6291614770889282,-0.09170015156269073 +0.30000001192092896,24.34600257873535,6.408263683319092,7.890415668487549,0.37015751004219055,0.4710824489593506,-0.15646414458751678 +0.30000001192092896,24.14166259765625,6.547340393066406,7.890415668487549,0.3873384892940521,0.4220234751701355,-0.0870741531252861 +0.30000001192092896,24.34600257873535,6.361904144287109,7.890415668487549,0.3128874897956848,0.5528474450111389,-0.17034214735031128 +0.30000001192092896,24.00543785095215,6.361904144287109,7.935412406921387,0.4503355026245117,0.5364944338798523,-0.11945614963769913 +0.30000001192092896,24.34600257873535,6.408263683319092,7.890415668487549,0.27279847860336304,0.5473964810371399,-0.15183815360069275 +0.30000001192092896,24.34600257873535,6.547340393066406,7.800421237945557,0.4274275004863739,0.5146905183792114,-0.12408214807510376 +0.30000001192092896,23.93732452392578,6.593699932098389,7.800421237945557,0.3128874897956848,0.5364944338798523,-0.02693614922463894 +0.30000001192092896,24.209775924682617,6.500981330871582,7.890415668487549,0.3415224850177765,0.5746514797210693,-0.13333414494991302 +0.30000001192092896,24.618453979492188,6.408263683319092,7.890415668487549,0.27279847860336304,0.5146905183792114,-0.15646414458751678 +0.30000001192092896,24.209775924682617,6.454622745513916,7.935412406921387,0.3243415057659149,0.5419455170631409,-0.09170015156269073 +0.30000001192092896,24.00543785095215,6.269186496734619,7.710427761077881,0.29570648074150085,0.5746514797210693,-0.19809813797473907 +0.30000001192092896,24.277889251708984,6.454622745513916,7.890415668487549,0.4045194983482361,0.46018049120903015,-0.14721214771270752 +0.30000001192092896,24.209775924682617,6.454622745513916,7.845418453216553,0.3014335036277771,0.5364944338798523,-0.05469214916229248 +0.30000001192092896,24.277889251708984,6.361904144287109,7.800421237945557,0.37015751004219055,0.5746514797210693,-0.18422015011310577 +0.30000001192092896,23.93732452392578,6.269186496734619,7.620433807373047,0.37015751004219055,0.44927847385406494,-0.14721214771270752 +0.30000001192092896,24.209775924682617,6.361904144287109,7.845418453216553,0.3816114664077759,0.4819844663143158,-0.13333414494991302 +0.30000001192092896,24.14166259765625,6.500981330871582,7.890415668487549,0.28425249457359314,0.4710824489593506,-0.13333414494991302 +0.30000001192092896,24.00543785095215,6.454622745513916,7.710427761077881,0.289979487657547,0.4002194404602051,-0.16109015047550201 +0.30000001192092896,24.209775924682617,6.408263683319092,7.980409622192383,0.3014335036277771,0.4765334725379944,-0.15646414458751678 +0.30000001192092896,24.073549270629883,6.454622745513916,7.980409622192383,0.3529765009880066,0.46018049120903015,-0.14721214771270752 +0.30000001192092896,24.277889251708984,6.408263683319092,7.935412406921387,0.37015751004219055,0.5637494325637817,-0.1009521484375 +0.30000001192092896,24.277889251708984,6.315545558929443,7.845418453216553,0.3529765009880066,0.5037884712219238,-0.07782214879989624 +0.30000001192092896,24.41411590576172,6.454622745513916,7.935412406921387,0.33579549193382263,0.45472946763038635,-0.09170015156269073 +0.30000001192092896,24.209775924682617,6.408263683319092,7.890415668487549,0.34724947810173035,0.5310434699058533,-0.06394414603710175 +0.30000001192092896,24.34600257873535,6.408263683319092,7.800421237945557,0.4045194983482361,0.4983374774456024,-0.19809813797473907 +0.30000001192092896,24.209775924682617,6.454622745513916,7.800421237945557,0.3415224850177765,0.4220234751701355,-0.06857015192508698 +0.30000001192092896,23.93732452392578,6.640058517456055,7.755424976348877,0.3816114664077759,0.5637494325637817,-0.06394414603710175 +0.30000001192092896,24.34600257873535,6.500981330871582,7.935412406921387,0.3415224850177765,0.5801025032997131,-0.1287081390619278 +0.30000001192092896,23.93732452392578,6.547340393066406,7.800421237945557,0.3415224850177765,0.5037884712219238,-0.14721214771270752 +0.30000001192092896,24.073549270629883,6.547340393066406,7.800421237945557,0.3816114664077759,0.5364944338798523,-0.09632615000009537 +0.30000001192092896,24.34600257873535,6.315545558929443,7.800421237945557,0.393065482378006,0.6019064784049988,-0.09632615000009537 +0.30000001192092896,24.14166259765625,6.500981330871582,7.800421237945557,0.28425249457359314,0.5582984685897827,-0.21197615563869476 +0.30000001192092896,24.277889251708984,6.500981330871582,7.845418453216553,0.3300684690475464,0.5310434699058533,-0.07782214879989624 +0.30000001192092896,24.00543785095215,6.500981330871582,7.890415668487549,0.30716049671173096,0.5855534672737122,-0.14721214771270752 +0.30000001192092896,24.277889251708984,6.361904144287109,7.575436592102051,0.4274275004863739,0.5092394948005676,-0.17034214735031128 +0.30000001192092896,24.34600257873535,6.454622745513916,7.755424976348877,0.35870349407196045,0.43837645649909973,-0.1009521484375 +0.30000001192092896,24.34600257873535,6.361904144287109,7.845418453216553,0.25561749935150146,0.4710824489593506,-0.1287081390619278 +0.30000001192092896,24.482229232788086,6.408263683319092,7.890415668487549,0.24416348338127136,0.4983374774456024,-0.23973214626312256 +0.30000001192092896,24.209775924682617,6.269186496734619,7.800421237945557,0.39879247546195984,0.5201414823532104,-0.07319615036249161 +0.30000001192092896,24.55034065246582,6.454622745513916,7.935412406921387,0.28425249457359314,0.4656314551830292,-0.07319615036249161 +0.30000001192092896,24.277889251708984,6.361904144287109,7.845418453216553,0.3529765009880066,0.492886483669281,-0.15183815360069275 +0.30000001192092896,24.209775924682617,6.408263683319092,7.800421237945557,0.4446084797382355,0.4819844663143158,-0.17959414422512054 +0.30000001192092896,24.34600257873535,6.408263683319092,8.025406837463379,0.3128874897956848,0.44927847385406494,-0.1888461410999298 +0.30000001192092896,24.277889251708984,6.408263683319092,7.935412406921387,0.2785254716873169,0.4656314551830292,-0.040814146399497986 +0.30000001192092896,24.209775924682617,6.408263683319092,7.755424976348877,0.4159735143184662,0.5146905183792114,-0.12408214807510376 +0.30000001192092896,24.073549270629883,6.361904144287109,7.755424976348877,0.3529765009880066,0.4056704640388489,-0.16109015047550201 +0.30000001192092896,24.14166259765625,6.686417579650879,7.845418453216553,0.393065482378006,0.5364944338798523,-0.1009521484375 +0.30000001192092896,24.34600257873535,6.454622745513916,7.710427761077881,0.39879247546195984,0.5528474450111389,-0.1009521484375 +0.30000001192092896,24.55034065246582,6.408263683319092,7.980409622192383,0.289979487657547,0.5255924463272095,-0.1148301437497139 +0.30000001192092896,24.482229232788086,6.500981330871582,7.890415668487549,0.3758845031261444,0.4874354600906372,-0.09632615000009537 +0.30000001192092896,24.55034065246582,6.361904144287109,7.980409622192383,0.3300684690475464,0.5801025032997131,-0.08244814723730087 +0.30000001192092896,24.277889251708984,6.454622745513916,7.710427761077881,0.33579549193382263,0.5364944338798523,-0.07319615036249161 +0.30000001192092896,24.482229232788086,6.593699932098389,7.800421237945557,0.3644304871559143,0.5092394948005676,-0.13796015083789825 +0.30000001192092896,24.277889251708984,6.500981330871582,7.935412406921387,0.1639854907989502,0.4874354600906372,-0.13333414494991302 +0.30000001192092896,24.277889251708984,6.686417579650879,7.800421237945557,0.33579549193382263,0.6237104535102844,-0.05931815132498741 +0.30000001192092896,24.14166259765625,6.454622745513916,7.800421237945557,0.3529765009880066,0.492886483669281,-0.16571614146232605 +0.30000001192092896,24.209775924682617,6.454622745513916,7.890415668487549,0.27279847860336304,0.5037884712219238,-0.15183815360069275 +0.30000001192092896,24.00543785095215,6.500981330871582,7.755424976348877,0.3873384892940521,0.4983374774456024,-0.05931815132498741 +0.30000001192092896,23.801097869873047,6.269186496734619,7.845418453216553,0.46178948879241943,0.5255924463272095,-0.14258615672588348 +0.30000001192092896,24.34600257873535,6.361904144287109,7.755424976348877,0.37015751004219055,0.5092394948005676,-0.16571614146232605 +0.30000001192092896,24.073549270629883,6.500981330871582,7.935412406921387,0.33579549193382263,0.5037884712219238,-0.14721214771270752 +0.30000001192092896,24.34600257873535,6.361904144287109,7.665430545806885,0.3014335036277771,0.5419455170631409,-0.16109015047550201 +0.30000001192092896,24.00543785095215,6.315545558929443,7.755424976348877,0.3529765009880066,0.4220234751701355,-0.15646414458751678 +0.30000001192092896,24.277889251708984,6.269186496734619,7.980409622192383,0.2269824892282486,0.5637494325637817,-0.17959414422512054 +0.30000001192092896,24.209775924682617,6.361904144287109,7.620433807373047,0.3014335036277771,0.5037884712219238,-0.12408214807510376 +0.30000001192092896,24.209775924682617,6.500981330871582,7.845418453216553,0.28425249457359314,0.4656314551830292,-0.16109015047550201 +0.30000001192092896,24.41411590576172,6.315545558929443,7.935412406921387,0.3529765009880066,0.4710824489593506,-0.10557814687490463 +0.30000001192092896,24.00543785095215,6.454622745513916,7.800421237945557,0.28425249457359314,0.44927847385406494,-0.06394414603710175 +0.30000001192092896,23.93732452392578,6.454622745513916,7.755424976348877,0.41024649143218994,0.5364944338798523,-0.1009521484375 +0.30000001192092896,24.277889251708984,6.500981330871582,7.935412406921387,0.3758845031261444,0.44382745027542114,-0.14721214771270752 +0.30000001192092896,24.00543785095215,6.500981330871582,7.845418453216553,0.35870349407196045,0.4765334725379944,-0.1009521484375 +0.30000001192092896,23.869211196899414,6.547340393066406,7.800421237945557,0.48469752073287964,0.44927847385406494,-0.07782214879989624 +0.30000001192092896,24.277889251708984,6.454622745513916,7.890415668487549,0.289979487657547,0.45472946763038635,-0.2027241587638855 +0.30000001192092896,24.00543785095215,6.500981330871582,7.755424976348877,0.3529765009880066,0.43837645649909973,-0.17034214735031128 +0.30000001192092896,24.34600257873535,6.454622745513916,7.800421237945557,0.4274275004863739,0.5255924463272095,-0.14258615672588348 +0.30000001192092896,24.073549270629883,6.547340393066406,7.755424976348877,0.30716049671173096,0.596455454826355,-0.09632615000009537 +0.30000001192092896,24.277889251708984,6.547340393066406,7.845418453216553,0.393065482378006,0.5473964810371399,-0.07782214879989624 +0.30000001192092896,24.55034065246582,6.640058517456055,7.800421237945557,0.26707151532173157,0.5637494325637817,-0.1287081390619278 +0.30000001192092896,24.41411590576172,6.593699932098389,7.890415668487549,0.31861451268196106,0.5473964810371399,-0.08244814723730087 +0.30000001192092896,24.482229232788086,6.454622745513916,7.800421237945557,0.3014335036277771,0.5801025032997131,-0.1148301437497139 +0.30000001192092896,24.277889251708984,6.361904144287109,7.710427761077881,0.3243415057659149,0.492886483669281,-0.09632615000009537 +0.30000001192092896,24.41411590576172,6.593699932098389,7.890415668487549,0.25561749935150146,0.5255924463272095,-0.08244814723730087 +0.30000001192092896,24.073549270629883,6.222827434539795,7.755424976348877,0.3014335036277771,0.5037884712219238,-0.1287081390619278 +0.30000001192092896,24.277889251708984,6.454622745513916,7.890415668487549,0.42170050740242004,0.4983374774456024,-0.19347214698791504 +0.30000001192092896,24.277889251708984,6.408263683319092,7.935412406921387,0.34724947810173035,0.4819844663143158,-0.1148301437497139 +0.30000001192092896,24.34600257873535,6.408263683319092,7.665430545806885,0.35870349407196045,0.5364944338798523,-0.15183815360069275 +0.30000001192092896,24.073549270629883,6.454622745513916,7.710427761077881,0.3873384892940521,0.45472946763038635,-0.17496813833713531 +0.30000001192092896,24.14166259765625,6.408263683319092,7.980409622192383,0.35870349407196045,0.4002194404602051,-0.17959414422512054 +0.30000001192092896,24.14166259765625,6.361904144287109,7.890415668487549,0.29570648074150085,0.5255924463272095,-0.07319615036249161 +0.30000001192092896,24.55034065246582,6.454622745513916,7.800421237945557,0.3415224850177765,0.5092394948005676,-0.1287081390619278 +0.30000001192092896,24.209775924682617,6.269186496734619,7.980409622192383,0.3873384892940521,0.5037884712219238,-0.17496813833713531 +0.30000001192092896,24.55034065246582,6.361904144287109,7.755424976348877,0.3816114664077759,0.4819844663143158,-0.05006615072488785 +0.30000001192092896,24.482229232788086,6.593699932098389,7.800421237945557,0.3415224850177765,0.5746514797210693,-0.09170015156269073 +0.30000001192092896,24.482229232788086,6.361904144287109,8.025406837463379,0.37015751004219055,0.43837645649909973,-0.20735014975070953 +0.30000001192092896,24.618453979492188,6.408263683319092,8.025406837463379,0.39879247546195984,0.46018049120903015,-0.1287081390619278 +0.30000001192092896,24.14166259765625,6.547340393066406,7.890415668487549,0.3758845031261444,0.5201414823532104,-0.12408214807510376 +0.30000001192092896,24.209775924682617,6.454622745513916,7.935412406921387,0.3758845031261444,0.5528474450111389,-0.11945614963769913 +0.30000001192092896,24.14166259765625,6.454622745513916,7.935412406921387,0.22125549614429474,0.4710824489593506,-0.12408214807510376 +0.30000001192092896,24.277889251708984,6.454622745513916,7.890415668487549,0.27279847860336304,0.5146905183792114,-0.09170015156269073 +0.30000001192092896,23.93732452392578,6.547340393066406,7.665430545806885,0.3816114664077759,0.5692004561424255,-0.040814146399497986 +0.30000001192092896,24.00543785095215,6.454622745513916,7.845418453216553,0.33579549193382263,0.4819844663143158,-0.17034214735031128 +0.30000001192092896,24.277889251708984,6.408263683319092,7.800421237945557,0.3300684690475464,0.5146905183792114,-0.11020414531230927 +0.30000001192092896,24.073549270629883,6.454622745513916,7.800421237945557,0.29570648074150085,0.5364944338798523,-0.1009521484375 +0.30000001192092896,23.93732452392578,6.361904144287109,7.890415668487549,0.3758845031261444,0.5092394948005676,-0.18422015011310577 +0.30000001192092896,24.41411590576172,6.500981330871582,7.845418453216553,0.30716049671173096,0.5092394948005676,-0.13796015083789825 +0.30000001192092896,24.277889251708984,6.547340393066406,7.935412406921387,0.4045194983482361,0.492886483669281,-0.0870741531252861 +0.30000001192092896,24.277889251708984,6.361904144287109,7.800421237945557,0.3529765009880066,0.5582984685897827,-0.14258615672588348 +0.30000001192092896,24.34600257873535,6.454622745513916,7.845418453216553,0.22125549614429474,0.4274744689464569,-0.1287081390619278 +0.30000001192092896,24.00543785095215,6.547340393066406,7.890415668487549,0.4159735143184662,0.4656314551830292,-0.07319615036249161 +0.30000001192092896,24.209775924682617,6.408263683319092,7.890415668487549,0.35870349407196045,0.5582984685897827,-0.16109015047550201 +0.30000001192092896,23.869211196899414,6.315545558929443,7.755424976348877,0.39879247546195984,0.43837645649909973,-0.2027241587638855 +0.30000001192092896,24.073549270629883,6.408263683319092,8.025406837463379,0.37015751004219055,0.5092394948005676,-0.15646414458751678 +0.30000001192092896,24.14166259765625,6.454622745513916,7.800421237945557,0.22125549614429474,0.5092394948005676,-0.07782214879989624 +0.30000001192092896,23.93732452392578,6.315545558929443,7.710427761077881,0.46178948879241943,0.492886483669281,-0.2166021466255188 +0.30000001192092896,24.00543785095215,6.269186496734619,7.980409622192383,0.31861451268196106,0.5255924463272095,-0.14258615672588348 +0.30000001192092896,24.00543785095215,6.454622745513916,7.890415668487549,0.3529765009880066,0.492886483669281,-0.1287081390619278 +0.30000001192092896,24.073549270629883,6.500981330871582,7.800421237945557,0.4789704978466034,0.4710824489593506,-0.08244814723730087 +0.30000001192092896,24.073549270629883,6.500981330871582,7.845418453216553,0.393065482378006,0.492886483669281,-0.13333414494991302 +0.30000001192092896,24.073549270629883,6.500981330871582,7.755424976348877,0.31861451268196106,0.44382745027542114,-0.12408214807510376 +0.30000001192092896,24.209775924682617,6.454622745513916,7.800421237945557,0.3873384892940521,0.5473964810371399,-0.09632615000009537 +0.30000001192092896,24.55034065246582,6.315545558929443,7.800421237945557,0.39879247546195984,0.44927847385406494,-0.07319615036249161 +0.30000001192092896,24.482229232788086,6.593699932098389,7.980409622192383,0.3243415057659149,0.38386645913124084,-0.11945614963769913 +0.20000001788139343,24.277889251708984,6.454622745513916,7.890415668487549,0.3415224850177765,0.5255924463272095,-0.08244814723730087 +0.20000001788139343,24.41411590576172,4.4148268699646,5.415580749511719,0.186893492937088,0.056806448847055435,-0.13333414494991302 +0.20000001788139343,24.41411590576172,4.043954372406006,5.550571441650391,0.3243415057659149,0.32390546798706055,-0.14258615672588348 +0.20000001788139343,24.14166259765625,4.18303108215332,5.460577487945557,0.25561749935150146,0.20943444967269897,-0.14258615672588348 +0.20000001788139343,24.41411590576172,4.322108268737793,5.280589580535889,0.27279847860336304,0.25849348306655884,-0.09170015156269073 +0.20000001788139343,24.277889251708984,4.043954372406006,5.325586318969727,0.3128874897956848,0.31300345063209534,-0.17034214735031128 +0.20000001788139343,24.073549270629883,4.043954372406006,5.325586318969727,0.18116648495197296,0.25849348306655884,-0.18422015011310577 +0.20000001788139343,24.209775924682617,4.18303108215332,5.460577487945557,0.20980148017406464,0.27484646439552307,-0.14721214771270752 +0.20000001788139343,24.209775924682617,3.9975955486297607,5.325586318969727,0.186893492937088,0.2802974581718445,-0.23510614037513733 +0.20000001788139343,24.34600257873535,4.043954372406006,5.5955681800842285,0.30716049671173096,0.19853246212005615,-0.16109015047550201 +0.20000001788139343,24.34600257873535,4.043954372406006,5.415580749511719,0.186893492937088,0.3075524568557739,-0.13333414494991302 +0.20000001788139343,24.34600257873535,4.18303108215332,5.415580749511719,0.1754394769668579,0.2257874608039856,-0.17496813833713531 +0.20000001788139343,24.41411590576172,4.043954372406006,5.370583534240723,0.2613444924354553,0.21488545835018158,-0.22122815251350403 +0.20000001788139343,24.41411590576172,4.136672496795654,5.505574703216553,0.20407448709011078,0.25849348306655884,-0.17496813833713531 +0.20000001788139343,24.41411590576172,4.136672496795654,5.640565395355225,0.2269824892282486,0.21488545835018158,-0.08244814723730087 +0.20000001788139343,24.277889251708984,4.18303108215332,5.280589580535889,0.2785254716873169,0.27484646439552307,-0.15183815360069275 +0.20000001788139343,24.618453979492188,3.9975955486297607,5.5955681800842285,0.2785254716873169,0.18217946588993073,-0.16109015047550201 +0.20000001788139343,24.277889251708984,4.136672496795654,5.460577487945557,0.2498904913663864,0.26394444704055786,-0.15646414458751678 +0.20000001788139343,24.14166259765625,4.136672496795654,5.370583534240723,0.2785254716873169,0.2693954408168793,-0.1287081390619278 +0.20000001788139343,24.34600257873535,4.09031343460083,5.550571441650391,0.2613444924354553,0.3457094728946686,-0.1009521484375 +0.20000001788139343,24.073549270629883,4.18303108215332,5.505574703216553,0.25561749935150146,0.19308145344257355,-0.13333414494991302 +0.20000001788139343,24.55034065246582,4.18303108215332,5.550571441650391,0.2785254716873169,0.2693954408168793,-0.08244814723730087 +0.20000001788139343,24.00543785095215,4.043954372406006,5.460577487945557,0.19834749400615692,0.2802974581718445,-0.14258615672588348 +0.20000001788139343,24.55034065246582,4.18303108215332,5.325586318969727,0.22125549614429474,0.23668944835662842,-0.25361016392707825 +0.20000001788139343,24.55034065246582,4.09031343460083,5.505574703216553,0.14107748866081238,0.20943444967269897,-0.17034214735031128 +0.20000001788139343,24.34600257873535,4.18303108215332,5.415580749511719,0.27279847860336304,0.27484646439552307,-0.14258615672588348 +0.20000001788139343,24.41411590576172,3.9512364864349365,5.325586318969727,0.3300684690475464,0.33480745553970337,-0.21197615563869476 +0.20000001788139343,24.34600257873535,4.18303108215332,5.415580749511719,0.2785254716873169,0.19308145344257355,-0.15183815360069275 +0.20000001788139343,24.482229232788086,3.9975955486297607,5.640565395355225,0.31861451268196106,0.2312384694814682,-0.0870741531252861 +0.20000001788139343,24.209775924682617,3.9512364864349365,5.325586318969727,0.23270948231220245,0.2802974581718445,-0.2027241587638855 +0.20000001788139343,24.34600257873535,4.09031343460083,5.325586318969727,0.26707151532173157,0.2693954408168793,-0.2443581372499466 +0.20000001788139343,24.209775924682617,4.136672496795654,5.550571441650391,0.289979487657547,0.2802974581718445,-0.12408214807510376 +0.20000001788139343,23.93732452392578,4.09031343460083,5.550571441650391,0.2155284881591797,0.26394444704055786,-0.1888461410999298 +0.20000001788139343,23.869211196899414,3.9975955486297607,5.415580749511719,0.27279847860336304,0.18217946588993073,-0.19347214698791504 +0.20000001788139343,24.00543785095215,4.043954372406006,5.640565395355225,0.15825848281383514,0.18763045966625214,-0.15646414458751678 +0.20000001788139343,23.93732452392578,4.18303108215332,5.640565395355225,0.2613444924354553,0.23668944835662842,-0.06857015192508698 +0.20000001788139343,24.41411590576172,4.136672496795654,5.325586318969727,0.23270948231220245,0.2802974581718445,-0.14258615672588348 +0.20000001788139343,23.93732452392578,4.09031343460083,5.460577487945557,0.2785254716873169,0.13312044739723206,-0.14721214771270752 +0.20000001788139343,24.41411590576172,4.229390621185303,5.550571441650391,0.3014335036277771,0.24759146571159363,-0.0870741531252861 +0.20000001788139343,24.209775924682617,4.09031343460083,5.550571441650391,0.23270948231220245,0.2802974581718445,-0.16109015047550201 +0.20000001788139343,24.34600257873535,4.09031343460083,5.5955681800842285,0.2613444924354553,0.27484646439552307,-0.2166021466255188 +0.20000001788139343,24.482229232788086,4.136672496795654,5.640565395355225,0.2498904913663864,0.220336452126503,-0.17959414422512054 +0.20000001788139343,24.277889251708984,4.09031343460083,5.5955681800842285,0.2785254716873169,0.25304245948791504,-0.13796015083789825 +0.20000001788139343,24.55034065246582,4.09031343460083,5.415580749511719,0.27279847860336304,0.31300345063209534,-0.09632615000009537 +0.20000001788139343,24.073549270629883,4.09031343460083,5.550571441650391,0.20407448709011078,0.18763045966625214,-0.12408214807510376 +0.20000001788139343,24.209775924682617,4.18303108215332,5.5955681800842285,0.186893492937088,0.2802974581718445,-0.13333414494991302 +0.20000001788139343,24.00543785095215,4.043954372406006,5.325586318969727,0.16971249878406525,0.3021014630794525,-0.09170015156269073 +0.20000001788139343,24.14166259765625,3.9975955486297607,5.460577487945557,0.2785254716873169,0.2802974581718445,-0.2166021466255188 +0.20000001788139343,24.277889251708984,3.9975955486297607,5.325586318969727,0.2269824892282486,0.3075524568557739,-0.16109015047550201 +0.20000001788139343,24.14166259765625,4.136672496795654,5.5955681800842285,0.26707151532173157,0.23668944835662842,-0.11945614963769913 +0.20000001788139343,24.14166259765625,3.9975955486297607,5.145598411560059,0.1639854907989502,0.25304245948791504,-0.1888461410999298 +0.20000001788139343,24.41411590576172,4.043954372406006,5.325586318969727,0.20407448709011078,0.3021014630794525,-0.18422015011310577 +0.20000001788139343,24.482229232788086,4.136672496795654,5.5955681800842285,0.26707151532173157,0.31845447421073914,-0.07782214879989624 +0.20000001788139343,24.55034065246582,4.09031343460083,5.640565395355225,0.19834749400615692,0.26394444704055786,-0.25361016392707825 +0.20000001788139343,24.34600257873535,4.136672496795654,5.280589580535889,0.14680448174476624,0.23668944835662842,-0.17496813833713531 +0.20000001788139343,24.618453979492188,4.18303108215332,5.640565395355225,0.24416348338127136,0.24759146571159363,-0.17496813833713531 +0.20000001788139343,24.41411590576172,4.18303108215332,5.415580749511719,0.2269824892282486,0.31845447421073914,-0.16571614146232605 +0.20000001788139343,24.277889251708984,4.043954372406006,5.325586318969727,0.27279847860336304,0.18763045966625214,-0.22585414350032806 +0.20000001788139343,24.277889251708984,4.043954372406006,5.5955681800842285,0.24416348338127136,0.2693954408168793,-0.17959414422512054 +0.20000001788139343,24.14166259765625,4.09031343460083,5.550571441650391,0.34724947810173035,0.2966504395008087,-0.11020414531230927 +0.20000001788139343,24.14166259765625,4.09031343460083,5.325586318969727,0.22125549614429474,0.39476847648620605,-0.12408214807510376 +0.20000001788139343,24.34600257873535,4.043954372406006,5.505574703216553,0.27279847860336304,0.14947344362735748,-0.1148301437497139 +0.20000001788139343,24.482229232788086,3.9048774242401123,5.5955681800842285,0.23270948231220245,0.31300345063209534,-0.16571614146232605 +0.20000001788139343,24.55034065246582,4.043954372406006,5.505574703216553,0.289979487657547,0.31845447421073914,-0.05931815132498741 +0.20000001788139343,24.277889251708984,4.043954372406006,5.550571441650391,0.2498904913663864,0.2312384694814682,-0.14721214771270752 +0.20000001788139343,24.55034065246582,4.229390621185303,5.460577487945557,0.186893492937088,0.1603754609823227,-0.1287081390619278 +0.20000001788139343,24.618453979492188,4.043954372406006,5.325586318969727,0.2785254716873169,0.2966504395008087,-0.14721214771270752 +0.20000001788139343,24.277889251708984,4.136672496795654,5.505574703216553,0.2384364902973175,0.31845447421073914,-0.0870741531252861 +0.20000001788139343,24.41411590576172,4.18303108215332,5.505574703216553,0.30716049671173096,0.23668944835662842,-0.17034214735031128 +0.20000001788139343,24.073549270629883,4.09031343460083,5.460577487945557,0.2269824892282486,0.23668944835662842,-0.12408214807510376 +0.20000001788139343,24.14166259765625,4.18303108215332,5.505574703216553,0.22125549614429474,0.2802974581718445,-0.15183815360069275 +0.20000001788139343,24.14166259765625,3.9512364864349365,5.460577487945557,0.3415224850177765,0.37841546535491943,-0.16571614146232605 +0.20000001788139343,24.277889251708984,4.18303108215332,5.460577487945557,0.20407448709011078,0.2802974581718445,-0.17034214735031128 +0.20000001788139343,24.00543785095215,4.229390621185303,5.415580749511719,0.18116648495197296,0.27484646439552307,-0.07319615036249161 +0.20000001788139343,23.801097869873047,4.043954372406006,5.550571441650391,0.34724947810173035,0.3675134479999542,-0.18422015011310577 +0.20000001788139343,24.55034065246582,4.043954372406006,5.505574703216553,0.3014335036277771,0.21488545835018158,-0.17034214735031128 +0.20000001788139343,24.00543785095215,4.275749683380127,5.460577487945557,0.09526148438453674,0.17672845721244812,-0.11020414531230927 +0.20000001788139343,24.277889251708984,4.18303108215332,5.505574703216553,0.2785254716873169,0.2802974581718445,-0.22585414350032806 +0.20000001788139343,24.277889251708984,3.9975955486297607,5.415580749511719,0.186893492937088,0.3021014630794525,-0.12408214807510376 +0.20000001788139343,24.209775924682617,3.9512364864349365,5.505574703216553,0.26707151532173157,0.23668944835662842,-0.14258615672588348 +0.20000001788139343,24.277889251708984,4.09031343460083,5.325586318969727,0.11244247853755951,0.23668944835662842,-0.12408214807510376 +0.20000001788139343,24.00543785095215,4.136672496795654,5.550571441650391,0.34724947810173035,0.24759146571159363,-0.14721214771270752 +0.20000001788139343,24.55034065246582,4.136672496795654,5.460577487945557,0.23270948231220245,0.18217946588993073,-0.14258615672588348 +0.20000001788139343,24.14166259765625,4.136672496795654,5.505574703216553,0.186893492937088,0.25849348306655884,-0.09632615000009537 +0.20000001788139343,24.073549270629883,3.9975955486297607,5.550571441650391,0.4159735143184662,0.2966504395008087,-0.10557814687490463 +0.20000001788139343,24.073549270629883,3.9975955486297607,5.505574703216553,0.2155284881591797,0.19308145344257355,-0.17496813833713531 +0.20000001788139343,24.209775924682617,4.18303108215332,5.505574703216553,0.2155284881591797,0.26394444704055786,-0.21197615563869476 +0.20000001788139343,24.073549270629883,4.18303108215332,5.370583534240723,0.3128874897956848,0.32390546798706055,-0.16571614146232605 +0.20000001788139343,24.00543785095215,4.136672496795654,5.5955681800842285,0.2384364902973175,0.2911994755268097,-0.09170015156269073 +0.20000001788139343,24.41411590576172,4.322108268737793,5.550571441650391,0.31861451268196106,0.19308145344257355,-0.13333414494991302 +0.20000001788139343,24.34600257873535,4.136672496795654,5.5955681800842285,0.27279847860336304,0.25304245948791504,-0.1009521484375 +0.20000001788139343,24.277889251708984,4.043954372406006,5.505574703216553,0.29570648074150085,0.32390546798706055,-0.14258615672588348 +0.20000001788139343,24.41411590576172,4.136672496795654,5.550571441650391,0.3243415057659149,0.2966504395008087,-0.16571614146232605 +0.20000001788139343,24.073549270629883,4.136672496795654,5.640565395355225,0.2498904913663864,0.18217946588993073,-0.15183815360069275 +0.20000001788139343,24.618453979492188,4.043954372406006,5.460577487945557,0.29570648074150085,0.21488545835018158,-0.1009521484375 +0.20000001788139343,24.209775924682617,4.09031343460083,5.415580749511719,0.19834749400615692,0.3457094728946686,-0.1009521484375 +0.20000001788139343,24.209775924682617,4.18303108215332,5.505574703216553,0.2384364902973175,0.21488545835018158,-0.17496813833713531 +0.20000001788139343,24.14166259765625,4.18303108215332,5.550571441650391,0.09526148438453674,0.31300345063209534,-0.15646414458751678 +0.20000001788139343,24.14166259765625,4.043954372406006,5.505574703216553,0.2269824892282486,0.3075524568557739,-0.22585414350032806 +0.20000001788139343,24.277889251708984,4.043954372406006,5.460577487945557,0.29570648074150085,0.23668944835662842,-0.20735014975070953 +0.20000001788139343,24.209775924682617,4.136672496795654,5.550571441650391,0.2269824892282486,0.19308145344257355,-0.19809813797473907 +0.20000001788139343,24.209775924682617,4.136672496795654,5.460577487945557,0.23270948231220245,0.31845447421073914,-0.16571614146232605 +0.20000001788139343,24.34600257873535,3.812159538269043,5.280589580535889,0.23270948231220245,0.19308145344257355,-0.26748815178871155 +0.20000001788139343,24.55034065246582,3.9512364864349365,5.415580749511719,0.27279847860336304,0.32390546798706055,-0.13333414494991302 +0.20000001788139343,24.55034065246582,4.136672496795654,5.685562610626221,0.186893492937088,0.23668944835662842,-0.12408214807510376 +0.20000001788139343,24.41411590576172,4.136672496795654,5.325586318969727,0.27279847860336304,0.32390546798706055,-0.20735014975070953 +0.20000001788139343,24.55034065246582,4.136672496795654,5.505574703216553,0.24416348338127136,0.17672845721244812,-0.2304801493883133 +0.20000001788139343,24.482229232788086,4.18303108215332,5.640565395355225,0.1754394769668579,0.24759146571159363,-0.14721214771270752 +0.20000001788139343,23.869211196899414,4.09031343460083,5.415580749511719,0.27279847860336304,0.3675134479999542,-0.09632615000009537 +0.20000001788139343,24.482229232788086,4.136672496795654,5.550571441650391,0.14107748866081238,0.2693954408168793,-0.17496813833713531 +0.20000001788139343,24.41411590576172,4.18303108215332,5.460577487945557,0.2498904913663864,0.18217946588993073,-0.22122815251350403 +0.20000001788139343,24.41411590576172,4.18303108215332,5.550571441650391,0.25561749935150146,0.2312384694814682,-0.2304801493883133 +0.20000001788139343,24.00543785095215,4.136672496795654,5.505574703216553,0.3415224850177765,0.31300345063209534,-0.06857015192508698 +0.20000001788139343,24.073549270629883,4.043954372406006,5.460577487945557,0.34724947810173035,0.19308145344257355,-0.17034214735031128 +0.20000001788139343,24.482229232788086,4.18303108215332,5.505574703216553,0.14107748866081238,0.25849348306655884,-0.16109015047550201 +0.20000001788139343,23.93732452392578,4.229390621185303,5.325586318969727,0.2613444924354553,0.2802974581718445,-0.1009521484375 +0.20000001788139343,24.34600257873535,4.09031343460083,5.460577487945557,0.24416348338127136,0.31845447421073914,-0.13796015083789825 +0.20000001788139343,24.482229232788086,3.9975955486297607,5.325586318969727,0.29570648074150085,0.2312384694814682,-0.10557814687490463 +0.20000001788139343,24.41411590576172,4.18303108215332,5.550571441650391,0.186893492937088,0.31845447421073914,-0.07319615036249161 +0.20000001788139343,24.34600257873535,4.043954372406006,5.325586318969727,0.30716049671173096,0.32390546798706055,-0.21197615563869476 +0.20000001788139343,24.482229232788086,3.9512364864349365,5.235592365264893,0.26707151532173157,0.21488545835018158,-0.15183815360069275 +0.20000001788139343,24.277889251708984,4.18303108215332,5.460577487945557,0.186893492937088,0.23668944835662842,-0.17034214735031128 +0.20000001788139343,24.277889251708984,4.18303108215332,5.550571441650391,0.13535048067569733,0.24214045703411102,-0.22122815251350403 +0.20000001788139343,23.73298454284668,4.043954372406006,5.505574703216553,0.23270948231220245,0.19853246212005615,-0.2027241587638855 +0.20000001788139343,24.277889251708984,3.9975955486297607,5.550571441650391,0.2785254716873169,0.21488545835018158,-0.19809813797473907 +0.20000001788139343,24.00543785095215,4.043954372406006,5.505574703216553,0.23270948231220245,0.2257874608039856,-0.16109015047550201 +0.20000001788139343,23.93732452392578,4.09031343460083,5.460577487945557,0.24416348338127136,0.20943444967269897,-0.23510614037513733 +0.20000001788139343,24.209775924682617,3.9512364864349365,5.550571441650391,0.2785254716873169,0.14947344362735748,-0.17496813833713531 +0.20000001788139343,24.14166259765625,4.136672496795654,5.685562610626221,0.22125549614429474,0.26394444704055786,-0.12408214807510376 +0.20000001788139343,24.14166259765625,3.9512364864349365,5.550571441650391,0.2155284881591797,0.3402584493160248,-0.0870741531252861 +0.20000001788139343,24.14166259765625,3.9512364864349365,5.505574703216553,0.23270948231220245,0.25849348306655884,-0.16109015047550201 +0.20000001788139343,24.41411590576172,4.18303108215332,5.550571441650391,0.3243415057659149,0.2693954408168793,-0.14258615672588348 +0.20000001788139343,24.34600257873535,4.18303108215332,5.460577487945557,0.19262048602104187,0.32935643196105957,-0.10557814687490463 +0.20000001788139343,24.482229232788086,4.136672496795654,5.460577487945557,0.186893492937088,0.37841546535491943,-0.008432149887084961 +0.20000001788139343,24.34600257873535,4.18303108215332,5.460577487945557,0.1525314748287201,0.14402246475219727,-0.17496813833713531 +0.20000001788139343,24.482229232788086,4.136672496795654,5.460577487945557,0.18116648495197296,0.2802974581718445,-0.17034214735031128 +0.20000001788139343,24.34600257873535,4.043954372406006,5.325586318969727,0.2785254716873169,0.2966504395008087,-0.07782214879989624 +0.20000001788139343,24.41411590576172,4.136672496795654,5.5955681800842285,0.27279847860336304,0.31300345063209534,-0.21197615563869476 +0.20000001788139343,24.00543785095215,4.136672496795654,5.280589580535889,0.2155284881591797,0.2802974581718445,-0.13333414494991302 +0.20000001788139343,24.41411590576172,4.136672496795654,5.550571441650391,0.19834749400615692,0.3075524568557739,-0.15646414458751678 +0.20000001788139343,24.073549270629883,4.136672496795654,5.415580749511719,0.27279847860336304,0.31845447421073914,-0.17959414422512054 +0.20000001788139343,24.14166259765625,4.043954372406006,5.325586318969727,0.2269824892282486,0.25849348306655884,-0.2443581372499466 +0.20000001788139343,24.277889251708984,4.136672496795654,5.460577487945557,0.186893492937088,0.26394444704055786,-0.25361016392707825 +0.20000001788139343,24.14166259765625,3.9512364864349365,5.325586318969727,0.24416348338127136,0.27484646439552307,-0.16571614146232605 +0.20000001788139343,24.209775924682617,3.9975955486297607,5.460577487945557,0.2498904913663864,0.27484646439552307,-0.14721214771270752 +0.20000001788139343,24.34600257873535,3.9975955486297607,5.415580749511719,0.19262048602104187,0.220336452126503,-0.17034214735031128 +0.20000001788139343,24.277889251708984,4.136672496795654,5.460577487945557,0.22125549614429474,0.31300345063209534,-0.14721214771270752 +0.20000001788139343,24.55034065246582,4.136672496795654,5.460577487945557,0.31861451268196106,0.20943444967269897,-0.18422015011310577 +0.20000001788139343,24.482229232788086,4.09031343460083,5.415580749511719,0.26707151532173157,0.25849348306655884,-0.19347214698791504 +0.20000001788139343,24.482229232788086,4.136672496795654,5.460577487945557,0.2498904913663864,0.17672845721244812,-0.05469214916229248 +0.20000001788139343,24.55034065246582,4.043954372406006,5.325586318969727,0.23270948231220245,0.220336452126503,-0.17496813833713531 +0.20000001788139343,24.34600257873535,4.043954372406006,5.505574703216553,0.186893492937088,0.26394444704055786,-0.1888461410999298 +0.20000001788139343,24.277889251708984,4.09031343460083,5.460577487945557,0.20407448709011078,0.14947344362735748,-0.07782214879989624 +0.20000001788139343,24.34600257873535,4.043954372406006,5.5955681800842285,0.19834749400615692,0.3566114604473114,-0.1009521484375 +0.20000001788139343,24.073549270629883,4.136672496795654,5.415580749511719,0.23270948231220245,0.27484646439552307,-0.16109015047550201 +0.20000001788139343,24.277889251708984,4.136672496795654,5.460577487945557,0.19834749400615692,0.23668944835662842,-0.1148301437497139 +0.20000001788139343,24.277889251708984,3.9975955486297607,5.415580749511719,0.1639854907989502,0.31300345063209534,-0.11020414531230927 +0.20000001788139343,23.869211196899414,4.043954372406006,5.325586318969727,0.3014335036277771,0.3402584493160248,-0.13796015083789825 +0.20000001788139343,24.277889251708984,4.136672496795654,5.505574703216553,0.2155284881591797,0.25849348306655884,-0.17959414422512054 +0.20000001788139343,24.482229232788086,4.136672496795654,5.460577487945557,0.1754394769668579,0.23668944835662842,-0.14258615672588348 +0.20000001788139343,24.14166259765625,4.18303108215332,5.550571441650391,0.33579549193382263,0.23668944835662842,-0.16109015047550201 +0.20000001788139343,24.482229232788086,4.043954372406006,5.460577487945557,0.2785254716873169,0.31300345063209534,-0.13796015083789825 +0.20000001788139343,24.482229232788086,4.18303108215332,5.415580749511719,0.23270948231220245,0.21488545835018158,-0.15646414458751678 +0.20000001788139343,24.482229232788086,4.09031343460083,5.685562610626221,0.289979487657547,0.19308145344257355,-0.17034214735031128 +0.20000001788139343,24.073549270629883,3.9512364864349365,5.415580749511719,0.2613444924354553,0.2802974581718445,-0.11020414531230927 +0.20000001788139343,24.209775924682617,4.09031343460083,5.505574703216553,0.3014335036277771,0.19308145344257355,-0.22585414350032806 +0.20000001788139343,23.93732452392578,4.09031343460083,5.640565395355225,0.186893492937088,0.26394444704055786,-0.18422015011310577 +0.20000001788139343,24.14166259765625,4.043954372406006,5.460577487945557,0.23270948231220245,0.3075524568557739,-0.2027241587638855 +0.20000001788139343,24.00543785095215,4.09031343460083,5.325586318969727,0.23270948231220245,0.13857145607471466,-0.26748815178871155 +0.20000001788139343,24.073549270629883,4.09031343460083,5.550571441650391,0.23270948231220245,0.24214045703411102,-0.17496813833713531 +0.20000001788139343,24.073549270629883,4.043954372406006,5.460577487945557,0.15825848281383514,0.24214045703411102,-0.16109015047550201 +0.20000001788139343,24.41411590576172,4.09031343460083,5.415580749511719,0.2269824892282486,0.23668944835662842,-0.13333414494991302 +0.20000001788139343,24.209775924682617,4.136672496795654,5.505574703216553,0.1639854907989502,0.23668944835662842,-0.2027241587638855 +0.20000001788139343,24.14166259765625,4.18303108215332,5.550571441650391,0.2498904913663864,0.25849348306655884,-0.1009521484375 +0.20000001788139343,24.277889251708984,4.09031343460083,5.550571441650391,0.33579549193382263,0.25304245948791504,-0.1009521484375 +0.20000001788139343,24.34600257873535,3.858518600463867,5.550571441650391,0.18116648495197296,0.12221845239400864,-0.12408214807510376 +0.20000001788139343,24.209775924682617,4.18303108215332,5.550571441650391,0.25561749935150146,0.220336452126503,-0.14258615672588348 +0.20000001788139343,24.073549270629883,4.18303108215332,5.505574703216553,0.15825848281383514,0.3075524568557739,-0.17959414422512054 +0.20000001788139343,24.55034065246582,4.09031343460083,5.415580749511719,0.25561749935150146,0.3021014630794525,-0.16109015047550201 +0.20000001788139343,24.073549270629883,4.229390621185303,5.5955681800842285,0.19834749400615692,0.2312384694814682,-0.20735014975070953 +0.20000001788139343,24.209775924682617,4.18303108215332,5.505574703216553,0.20407448709011078,0.2966504395008087,-0.17496813833713531 +0.20000001788139343,24.073549270629883,4.136672496795654,5.280589580535889,0.20407448709011078,0.2911994755268097,-0.06394414603710175 +0.20000001788139343,24.14166259765625,4.09031343460083,5.460577487945557,0.16971249878406525,0.26394444704055786,-0.14721214771270752 +0.20000001788139343,24.209775924682617,4.18303108215332,5.5955681800842285,0.2498904913663864,0.3402584493160248,-0.19809813797473907 +0.20000001788139343,24.209775924682617,4.043954372406006,5.415580749511719,0.27279847860336304,0.2693954408168793,-0.16109015047550201 +0.20000001788139343,24.41411590576172,4.136672496795654,5.325586318969727,0.2785254716873169,0.2802974581718445,-0.17959414422512054 +0.20000001788139343,24.41411590576172,4.18303108215332,5.460577487945557,0.14107748866081238,0.23668944835662842,-0.14258615672588348 +0.20000001788139343,24.41411590576172,4.043954372406006,5.505574703216553,0.18116648495197296,0.220336452126503,-0.17496813833713531 +0.20000001788139343,24.55034065246582,4.09031343460083,5.325586318969727,0.27279847860336304,0.2693954408168793,-0.23510614037513733 +0.20000001788139343,24.14166259765625,4.043954372406006,5.460577487945557,0.14107748866081238,0.26394444704055786,-0.18422015011310577 +0.20000001788139343,24.34600257873535,4.136672496795654,5.5955681800842285,0.2155284881591797,0.2693954408168793,-0.14721214771270752 +0.20000001788139343,24.209775924682617,4.09031343460083,5.325586318969727,0.22125549614429474,0.2802974581718445,-0.15183815360069275 +0.20000001788139343,24.073549270629883,4.09031343460083,5.415580749511719,0.26707151532173157,0.19308145344257355,-0.15183815360069275 +0.20000001788139343,24.34600257873535,4.043954372406006,5.5955681800842285,0.27279847860336304,0.32390546798706055,-0.13796015083789825 +0.20000001788139343,24.209775924682617,4.136672496795654,5.550571441650391,0.16971249878406525,0.23668944835662842,-0.12408214807510376 +0.20000001788139343,24.55034065246582,4.136672496795654,5.325586318969727,0.3529765009880066,0.25304245948791504,-0.19809813797473907 +0.20000001788139343,24.34600257873535,4.043954372406006,5.640565395355225,0.23270948231220245,0.20943444967269897,-0.11945614963769913 +0.20000001788139343,24.686567306518555,4.18303108215332,5.505574703216553,0.186893492937088,0.2257874608039856,-0.07319615036249161 +0.20000001788139343,24.41411590576172,4.136672496795654,5.370583534240723,0.37015751004219055,0.3675134479999542,-0.17034214735031128 diff --git a/results/Load 10 branch 1/results_CORE_duty30%_VHigh24.csv b/results/Load 10 branch 1/results_CORE_duty30%_VHigh24.csv new file mode 100644 index 0000000000000000000000000000000000000000..c4d39bcfb3e9f7fdc0560b2a2566632e39473c22 --- /dev/null +++ b/results/Load 10 branch 1/results_CORE_duty30%_VHigh24.csv @@ -0,0 +1,501 @@ +duty_cycle,Vhigh_value,V1_low_value,V2_low_value,Ihigh_value,I1_low_value,I2_low_value +0.10000000149011612,24.14166259765625,1.911440372467041,3.0757362842559814,0.13535048067569733,0.018649447709321976,-0.14721214771270752 +0.20000000298023224,24.34600257873535,2.0041584968566895,3.1657304763793945,0.24416348338127136,0.07315945625305176,-0.1287081390619278 +0.30000001192092896,24.14166259765625,4.50754451751709,5.280589580535889,0.2384364902973175,-0.1557825654745102,-0.11020414531230927 +0.30000001192092896,24.34600257873535,7.0572896003723145,7.665430545806885,0.35870349407196045,0.04045344889163971,-0.09632615000009537 +0.30000001192092896,24.14166259765625,6.500981330871582,7.710427761077881,0.3014335036277771,0.4819844663143158,-0.1009521484375 +0.30000001192092896,24.34600257873535,6.500981330871582,7.845418453216553,0.31861451268196106,0.5528474450111389,-0.12408214807510376 +0.30000001192092896,24.14166259765625,6.408263683319092,7.890415668487549,0.3128874897956848,0.5037884712219238,-0.15646414458751678 +0.30000001192092896,23.869211196899414,6.547340393066406,7.935412406921387,0.19834749400615692,0.5692004561424255,-0.16109015047550201 +0.30000001192092896,24.277889251708984,6.454622745513916,7.710427761077881,0.39879247546195984,0.5201414823532104,-0.06857015192508698 +0.30000001192092896,24.00543785095215,6.315545558929443,7.845418453216553,0.31861451268196106,0.5310434699058533,-0.15183815360069275 +0.30000001192092896,24.00543785095215,6.361904144287109,7.800421237945557,0.19834749400615692,0.4983374774456024,-0.14721214771270752 +0.30000001192092896,24.209775924682617,6.500981330871582,7.800421237945557,0.26707151532173157,0.5582984685897827,-0.05006615072488785 +0.30000001192092896,23.869211196899414,6.315545558929443,7.665430545806885,0.3529765009880066,0.5364944338798523,-0.10557814687490463 +0.30000001192092896,24.209775924682617,6.500981330871582,7.800421237945557,0.39879247546195984,0.4819844663143158,-0.16109015047550201 +0.30000001192092896,24.073549270629883,6.640058517456055,7.845418453216553,0.34724947810173035,0.5201414823532104,-0.0870741531252861 +0.30000001192092896,24.34600257873535,6.361904144287109,7.755424976348877,0.3300684690475464,0.4819844663143158,-0.13796015083789825 +0.30000001192092896,24.277889251708984,6.361904144287109,7.710427761077881,0.2269824892282486,0.44927847385406494,-0.21197615563869476 +0.30000001192092896,24.41411590576172,6.454622745513916,7.935412406921387,0.31861451268196106,0.4819844663143158,-0.18422015011310577 +0.30000001192092896,24.482229232788086,6.361904144287109,7.800421237945557,0.2785254716873169,0.4710824489593506,-0.05469214916229248 +0.30000001192092896,24.482229232788086,6.500981330871582,7.800421237945557,0.29570648074150085,0.5310434699058533,-0.1888461410999298 +0.30000001192092896,24.34600257873535,6.408263683319092,7.935412406921387,0.4503355026245117,0.4874354600906372,-0.14258615672588348 +0.30000001192092896,24.482229232788086,6.454622745513916,7.890415668487549,0.26707151532173157,0.46018049120903015,-0.03618814796209335 +0.30000001192092896,24.073549270629883,6.500981330871582,7.980409622192383,0.3300684690475464,0.5528474450111389,-0.0870741531252861 +0.30000001192092896,24.41411590576172,6.269186496734619,7.980409622192383,0.3300684690475464,0.5637494325637817,-0.15646414458751678 +0.30000001192092896,24.277889251708984,6.593699932098389,7.845418453216553,0.28425249457359314,0.45472946763038635,-0.15183815360069275 +0.30000001192092896,24.277889251708984,6.454622745513916,7.845418453216553,0.39879247546195984,0.5255924463272095,-0.06857015192508698 +0.30000001192092896,24.14166259765625,6.547340393066406,7.935412406921387,0.3816114664077759,0.5201414823532104,-0.1009521484375 +0.30000001192092896,24.073549270629883,6.500981330871582,7.845418453216553,0.24416348338127136,0.5364944338798523,-0.09632615000009537 +0.30000001192092896,24.00543785095215,6.547340393066406,7.890415668487549,0.3300684690475464,0.5419455170631409,-0.13333414494991302 +0.30000001192092896,24.073549270629883,6.500981330871582,7.755424976348877,0.35870349407196045,0.5801025032997131,-0.1287081390619278 +0.30000001192092896,24.14166259765625,6.500981330871582,7.890415668487549,0.41024649143218994,0.5419455170631409,-0.1009521484375 +0.30000001192092896,24.55034065246582,6.454622745513916,7.800421237945557,0.2498904913663864,0.5310434699058533,-0.16571614146232605 +0.30000001192092896,24.00543785095215,6.593699932098389,7.890415668487549,0.2613444924354553,0.5310434699058533,-0.12408214807510376 +0.30000001192092896,24.277889251708984,6.361904144287109,7.665430545806885,0.3529765009880066,0.596455454826355,-0.18422015011310577 +0.30000001192092896,24.41411590576172,6.361904144287109,7.755424976348877,0.39879247546195984,0.5255924463272095,-0.1888461410999298 +0.30000001192092896,24.482229232788086,6.500981330871582,7.980409622192383,0.39879247546195984,0.492886483669281,-0.12408214807510376 +0.30000001192092896,24.34600257873535,6.361904144287109,7.980409622192383,0.3300684690475464,0.4874354600906372,-0.16109015047550201 +0.30000001192092896,24.209775924682617,6.176468849182129,7.575436592102051,0.47324350476264954,0.4111214578151703,-0.15183815360069275 +0.30000001192092896,24.277889251708984,6.500981330871582,7.845418453216553,0.3300684690475464,0.4874354600906372,-0.16109015047550201 +0.30000001192092896,24.14166259765625,6.593699932098389,7.845418453216553,0.27279847860336304,0.5037884712219238,-0.09170015156269073 +0.30000001192092896,24.00543785095215,6.454622745513916,7.800421237945557,0.3644304871559143,0.38931748270988464,-0.2027241587638855 +0.30000001192092896,24.34600257873535,6.361904144287109,7.935412406921387,0.2384364902973175,0.5528474450111389,-0.13333414494991302 +0.30000001192092896,24.00543785095215,6.547340393066406,7.890415668487549,0.39879247546195984,0.492886483669281,-0.06857015192508698 +0.30000001192092896,23.801097869873047,6.315545558929443,7.755424976348877,0.3873384892940521,0.4983374774456024,-0.09170015156269073 +0.30000001192092896,24.00543785095215,6.408263683319092,7.755424976348877,0.33579549193382263,0.46018049120903015,-0.20735014975070953 +0.30000001192092896,24.073549270629883,6.686417579650879,7.980409622192383,0.41024649143218994,0.4111214578151703,-0.14258615672588348 +0.30000001192092896,24.00543785095215,6.500981330871582,7.980409622192383,0.35870349407196045,0.4983374774456024,-0.10557814687490463 +0.30000001192092896,24.209775924682617,6.500981330871582,7.800421237945557,0.34724947810173035,0.5746514797210693,-0.1009521484375 +0.30000001192092896,24.209775924682617,6.408263683319092,7.755424976348877,0.30716049671173096,0.4983374774456024,-0.13333414494991302 +0.30000001192092896,24.41411590576172,6.454622745513916,7.980409622192383,0.34724947810173035,0.5528474450111389,-0.09170015156269073 +0.30000001192092896,24.073549270629883,6.547340393066406,7.755424976348877,0.3529765009880066,0.5528474450111389,-0.1009521484375 +0.30000001192092896,24.34600257873535,6.454622745513916,7.890415668487549,0.34724947810173035,0.5801025032997131,-0.14721214771270752 +0.30000001192092896,24.34600257873535,6.500981330871582,7.935412406921387,0.3529765009880066,0.5092394948005676,-0.1148301437497139 +0.30000001192092896,24.34600257873535,6.686417579650879,7.890415668487549,0.3529765009880066,0.492886483669281,-0.16109015047550201 +0.30000001192092896,24.41411590576172,6.454622745513916,7.710427761077881,0.35870349407196045,0.5255924463272095,-0.12408214807510376 +0.30000001192092896,24.209775924682617,6.361904144287109,7.980409622192383,0.2785254716873169,0.44382745027542114,-0.18422015011310577 +0.30000001192092896,24.41411590576172,6.593699932098389,7.935412406921387,0.289979487657547,0.5092394948005676,-0.11945614963769913 +0.30000001192092896,24.34600257873535,6.361904144287109,7.800421237945557,0.39879247546195984,0.5364944338798523,-0.14258615672588348 +0.30000001192092896,24.14166259765625,6.361904144287109,7.755424976348877,0.3644304871559143,0.5092394948005676,-0.11945614963769913 +0.30000001192092896,24.34600257873535,6.408263683319092,7.980409622192383,0.30716049671173096,0.5310434699058533,-0.14721214771270752 +0.30000001192092896,24.14166259765625,6.547340393066406,7.800421237945557,0.2613444924354553,0.4656314551830292,-0.1009521484375 +0.30000001192092896,24.14166259765625,6.408263683319092,7.845418453216553,0.3529765009880066,0.5146905183792114,-0.14258615672588348 +0.30000001192092896,24.14166259765625,6.361904144287109,7.980409622192383,0.31861451268196106,0.39476847648620605,-0.16109015047550201 +0.30000001192092896,24.209775924682617,6.454622745513916,7.890415668487549,0.25561749935150146,0.4220234751701355,-0.11020414531230927 +0.30000001192092896,24.209775924682617,6.547340393066406,7.845418453216553,0.3529765009880066,0.5528474450111389,-0.1148301437497139 +0.30000001192092896,24.34600257873535,6.454622745513916,7.980409622192383,0.3816114664077759,0.4274744689464569,-0.17959414422512054 +0.30000001192092896,24.209775924682617,6.454622745513916,7.980409622192383,0.3529765009880066,0.4874354600906372,-0.06394414603710175 +0.30000001192092896,24.482229232788086,6.640058517456055,8.025406837463379,0.3014335036277771,0.5910044312477112,-0.08244814723730087 +0.30000001192092896,24.073549270629883,6.408263683319092,7.890415668487549,0.30716049671173096,0.4765334725379944,-0.03156214952468872 +0.30000001192092896,24.41411590576172,6.500981330871582,7.800421237945557,0.3816114664077759,0.5037884712219238,-0.2027241587638855 +0.30000001192092896,24.55034065246582,6.593699932098389,7.935412406921387,0.3128874897956848,0.46018049120903015,-0.17034214735031128 +0.30000001192092896,24.14166259765625,6.500981330871582,7.710427761077881,0.35870349407196045,0.5201414823532104,-0.1009521484375 +0.30000001192092896,24.41411590576172,6.315545558929443,7.890415668487549,0.3243415057659149,0.4983374774456024,-0.15183815360069275 +0.30000001192092896,24.277889251708984,6.454622745513916,7.935412406921387,0.2384364902973175,0.5201414823532104,-0.1009521484375 +0.30000001192092896,24.209775924682617,6.547340393066406,7.710427761077881,0.20407448709011078,0.5146905183792114,-0.13333414494991302 +0.30000001192092896,23.869211196899414,6.500981330871582,7.710427761077881,0.3014335036277771,0.5473964810371399,-0.15183815360069275 +0.30000001192092896,24.073549270629883,6.454622745513916,7.710427761077881,0.27279847860336304,0.37841546535491943,-0.15183815360069275 +0.30000001192092896,24.073549270629883,6.547340393066406,7.800421237945557,0.28425249457359314,0.44382745027542114,-0.19347214698791504 +0.30000001192092896,23.93732452392578,6.500981330871582,7.800421237945557,0.34724947810173035,0.5473964810371399,-0.19809813797473907 +0.30000001192092896,23.93732452392578,6.269186496734619,7.575436592102051,0.3758845031261444,0.4656314551830292,-0.17034214735031128 +0.30000001192092896,24.00543785095215,6.500981330871582,8.025406837463379,0.33579549193382263,0.5146905183792114,-0.05006615072488785 +0.30000001192092896,24.00543785095215,6.500981330871582,7.710427761077881,0.31861451268196106,0.5310434699058533,-0.09632615000009537 +0.30000001192092896,24.34600257873535,6.500981330871582,7.800421237945557,0.31861451268196106,0.5255924463272095,-0.2027241587638855 +0.30000001192092896,24.073549270629883,6.454622745513916,7.980409622192383,0.35870349407196045,0.4111214578151703,-0.22122815251350403 +0.30000001192092896,24.34600257873535,6.547340393066406,7.800421237945557,0.3243415057659149,0.4765334725379944,-0.09170015156269073 +0.30000001192092896,24.209775924682617,6.454622745513916,7.890415668487549,0.3758845031261444,0.634612500667572,-0.07782214879989624 +0.30000001192092896,24.34600257873535,6.500981330871582,7.890415668487549,0.24416348338127136,0.492886483669281,-0.16109015047550201 +0.30000001192092896,24.34600257873535,6.500981330871582,7.845418453216553,0.3816114664077759,0.4874354600906372,-0.12408214807510376 +0.30000001192092896,24.41411590576172,6.408263683319092,7.800421237945557,0.289979487657547,0.5582984685897827,-0.0038061500526964664 +0.30000001192092896,24.41411590576172,6.500981330871582,7.935412406921387,0.37015751004219055,0.5310434699058533,-0.1009521484375 +0.30000001192092896,24.277889251708984,6.408263683319092,7.755424976348877,0.3243415057659149,0.5310434699058533,-0.17034214735031128 +0.30000001192092896,24.00543785095215,6.408263683319092,7.980409622192383,0.35870349407196045,0.45472946763038635,-0.16571614146232605 +0.30000001192092896,24.55034065246582,6.500981330871582,7.800421237945557,0.3816114664077759,0.5310434699058533,-0.02693614922463894 +0.30000001192092896,24.00543785095215,6.361904144287109,7.890415668487549,0.4560624957084656,0.4983374774456024,-0.17496813833713531 +0.30000001192092896,24.00543785095215,6.408263683319092,7.890415668487549,0.31861451268196106,0.492886483669281,-0.14721214771270752 +0.30000001192092896,23.93732452392578,6.593699932098389,7.710427761077881,0.26707151532173157,0.5255924463272095,-0.06857015192508698 +0.30000001192092896,24.14166259765625,6.408263683319092,7.710427761077881,0.34724947810173035,0.5092394948005676,-0.17034214735031128 +0.30000001192092896,24.209775924682617,6.315545558929443,7.575436592102051,0.31861451268196106,0.4874354600906372,-0.1888461410999298 +0.30000001192092896,24.34600257873535,6.361904144287109,8.115400314331055,0.26707151532173157,0.4656314551830292,-0.09170015156269073 +0.30000001192092896,24.34600257873535,6.361904144287109,7.800421237945557,0.34724947810173035,0.5419455170631409,-0.09170015156269073 +0.30000001192092896,24.482229232788086,6.500981330871582,7.665430545806885,0.34724947810173035,0.38931748270988464,-0.2443581372499466 +0.30000001192092896,24.277889251708984,6.361904144287109,7.935412406921387,0.37015751004219055,0.44927847385406494,-0.08244814723730087 +0.30000001192092896,24.41411590576172,6.454622745513916,7.935412406921387,0.3300684690475464,0.4765334725379944,-0.0870741531252861 +0.30000001192092896,24.41411590576172,6.454622745513916,7.755424976348877,0.3529765009880066,0.6182594895362854,-0.16571614146232605 +0.30000001192092896,24.55034065246582,6.408263683319092,8.025406837463379,0.2498904913663864,0.4765334725379944,-0.18422015011310577 +0.30000001192092896,24.618453979492188,6.547340393066406,7.710427761077881,0.27279847860336304,0.4111214578151703,-0.13333414494991302 +0.30000001192092896,24.209775924682617,6.500981330871582,7.935412406921387,0.3243415057659149,0.5255924463272095,-0.07319615036249161 +0.30000001192092896,24.482229232788086,6.454622745513916,7.845418453216553,0.3300684690475464,0.44927847385406494,-0.13333414494991302 +0.30000001192092896,24.277889251708984,6.547340393066406,7.890415668487549,0.3529765009880066,0.44927847385406494,-0.12408214807510376 +0.30000001192092896,24.14166259765625,6.500981330871582,7.710427761077881,0.19262048602104187,0.5473964810371399,-0.1009521484375 +0.30000001192092896,24.14166259765625,6.408263683319092,7.665430545806885,0.393065482378006,0.5801025032997131,-0.06857015192508698 +0.30000001192092896,24.209775924682617,6.547340393066406,7.890415668487549,0.3758845031261444,0.4983374774456024,-0.14258615672588348 +0.30000001192092896,24.209775924682617,6.593699932098389,7.845418453216553,0.3415224850177765,0.4765334725379944,-0.2027241587638855 +0.30000001192092896,24.073549270629883,6.500981330871582,7.890415668487549,0.39879247546195984,0.5037884712219238,-0.12408214807510376 +0.30000001192092896,24.00543785095215,6.454622745513916,7.755424976348877,0.3758845031261444,0.5364944338798523,-0.18422015011310577 +0.30000001192092896,24.41411590576172,6.454622745513916,7.710427761077881,0.33579549193382263,0.4656314551830292,-0.15183815360069275 +0.30000001192092896,24.00543785095215,6.500981330871582,7.755424976348877,0.34724947810173035,0.5637494325637817,-0.15646414458751678 +0.30000001192092896,24.209775924682617,6.500981330871582,7.755424976348877,0.4159735143184662,0.5582984685897827,-0.22585414350032806 +0.30000001192092896,24.209775924682617,6.454622745513916,7.800421237945557,0.37015751004219055,0.4983374774456024,-0.17959414422512054 +0.30000001192092896,24.277889251708984,6.547340393066406,8.025406837463379,0.3243415057659149,0.4819844663143158,-0.13796015083789825 +0.30000001192092896,24.14166259765625,6.500981330871582,7.755424976348877,0.3758845031261444,0.5473964810371399,-0.14721214771270752 +0.30000001192092896,24.14166259765625,6.315545558929443,7.755424976348877,0.3529765009880066,0.44927847385406494,-0.20735014975070953 +0.30000001192092896,24.209775924682617,6.361904144287109,7.890415668487549,0.3644304871559143,0.4710824489593506,-0.15183815360069275 +0.30000001192092896,24.34600257873535,6.408263683319092,7.755424976348877,0.3014335036277771,0.4710824489593506,-0.11020414531230927 +0.30000001192092896,24.073549270629883,6.315545558929443,7.845418453216553,0.31861451268196106,0.5364944338798523,-0.12408214807510376 +0.30000001192092896,24.277889251708984,6.361904144287109,7.935412406921387,0.3014335036277771,0.4220234751701355,-0.23973214626312256 +0.30000001192092896,24.00543785095215,6.547340393066406,7.800421237945557,0.3243415057659149,0.46018049120903015,-0.07319615036249161 +0.30000001192092896,23.869211196899414,6.593699932098389,7.890415668487549,0.3816114664077759,0.4983374774456024,-0.15183815360069275 +0.30000001192092896,24.00543785095215,6.500981330871582,7.890415668487549,0.3529765009880066,0.5255924463272095,-0.14721214771270752 +0.30000001192092896,24.277889251708984,6.547340393066406,7.890415668487549,0.3415224850177765,0.5364944338798523,-0.15646414458751678 +0.30000001192092896,24.209775924682617,6.593699932098389,7.755424976348877,0.3128874897956848,0.5473964810371399,-0.1148301437497139 +0.30000001192092896,23.93732452392578,6.547340393066406,7.755424976348877,0.4045194983482361,0.4819844663143158,-0.09632615000009537 +0.30000001192092896,24.209775924682617,6.454622745513916,7.845418453216553,0.35870349407196045,0.5582984685897827,-0.17034214735031128 +0.30000001192092896,24.209775924682617,6.500981330871582,7.890415668487549,0.3128874897956848,0.43837645649909973,-0.14258615672588348 +0.30000001192092896,24.34600257873535,6.408263683319092,7.845418453216553,0.3644304871559143,0.5201414823532104,-0.07782214879989624 +0.30000001192092896,24.482229232788086,6.269186496734619,7.710427761077881,0.4045194983482361,0.5146905183792114,-0.11020414531230927 +0.30000001192092896,24.209775924682617,6.547340393066406,7.890415668487549,0.28425249457359314,0.4111214578151703,-0.19347214698791504 +0.30000001192092896,24.55034065246582,6.640058517456055,7.935412406921387,0.3644304871559143,0.44382745027542114,-0.06394414603710175 +0.30000001192092896,24.41411590576172,6.315545558929443,7.890415668487549,0.2613444924354553,0.5528474450111389,-0.14258615672588348 +0.30000001192092896,24.073549270629883,6.269186496734619,7.575436592102051,0.3014335036277771,0.43837645649909973,-0.17034214735031128 +0.30000001192092896,24.55034065246582,6.547340393066406,7.800421237945557,0.28425249457359314,0.4983374774456024,-0.16109015047550201 +0.30000001192092896,24.00543785095215,6.454622745513916,7.845418453216553,0.3243415057659149,0.4819844663143158,-0.06857015192508698 +0.30000001192092896,24.073549270629883,6.454622745513916,7.845418453216553,0.4159735143184662,0.43837645649909973,-0.17959414422512054 +0.30000001192092896,24.209775924682617,6.408263683319092,7.890415668487549,0.26707151532173157,0.492886483669281,-0.16571614146232605 +0.30000001192092896,24.209775924682617,6.361904144287109,7.890415668487549,0.27279847860336304,0.4165724515914917,-0.022310150787234306 +0.30000001192092896,24.41411590576172,6.547340393066406,7.755424976348877,0.4388814866542816,0.5364944338798523,-0.15183815360069275 +0.30000001192092896,24.073549270629883,6.454622745513916,8.070404052734375,0.39879247546195984,0.45472946763038635,-0.16109015047550201 +0.30000001192092896,24.41411590576172,6.500981330871582,7.935412406921387,0.3300684690475464,0.44382745027542114,-0.05469214916229248 +0.30000001192092896,24.618453979492188,6.500981330871582,7.755424976348877,0.43315452337265015,0.5637494325637817,-0.017684150487184525 +0.30000001192092896,24.277889251708984,6.361904144287109,7.845418453216553,0.3644304871559143,0.5692004561424255,-0.15183815360069275 +0.30000001192092896,24.55034065246582,6.408263683319092,7.935412406921387,0.35870349407196045,0.4765334725379944,-0.2027241587638855 +0.30000001192092896,24.55034065246582,6.454622745513916,7.890415668487549,0.3128874897956848,0.5746514797210693,-0.06394414603710175 +0.30000001192092896,24.14166259765625,6.408263683319092,7.845418453216553,0.4274275004863739,0.4874354600906372,-0.12408214807510376 +0.30000001192092896,24.482229232788086,6.361904144287109,7.980409622192383,0.39879247546195984,0.43837645649909973,-0.17034214735031128 +0.30000001192092896,24.209775924682617,6.408263683319092,7.845418453216553,0.28425249457359314,0.492886483669281,-0.09632615000009537 +0.30000001192092896,24.209775924682617,6.547340393066406,7.800421237945557,0.3758845031261444,0.5528474450111389,-0.12408214807510376 +0.30000001192092896,24.00543785095215,6.454622745513916,7.935412406921387,0.4560624957084656,0.5364944338798523,-0.09632615000009537 +0.30000001192092896,24.14166259765625,6.454622745513916,7.890415668487549,0.4045194983482361,0.4819844663143158,-0.1888461410999298 +0.30000001192092896,24.14166259765625,6.500981330871582,7.800421237945557,0.3873384892940521,0.5037884712219238,-0.11020414531230927 +0.30000001192092896,24.073549270629883,6.361904144287109,7.710427761077881,0.3243415057659149,0.5201414823532104,-0.16571614146232605 +0.30000001192092896,24.14166259765625,6.361904144287109,7.800421237945557,0.39879247546195984,0.38931748270988464,-0.16571614146232605 +0.30000001192092896,24.277889251708984,6.361904144287109,8.025406837463379,0.3300684690475464,0.5201414823532104,-0.1888461410999298 +0.30000001192092896,24.277889251708984,6.361904144287109,7.755424976348877,0.35870349407196045,0.4819844663143158,-0.12408214807510376 +0.30000001192092896,24.482229232788086,6.408263683319092,7.845418453216553,0.3644304871559143,0.45472946763038635,-0.17496813833713531 +0.30000001192092896,24.482229232788086,6.315545558929443,7.935412406921387,0.3644304871559143,0.4056704640388489,-0.14721214771270752 +0.30000001192092896,24.482229232788086,6.547340393066406,7.935412406921387,0.30716049671173096,0.4983374774456024,-0.1148301437497139 +0.30000001192092896,23.869211196899414,6.454622745513916,7.980409622192383,0.3529765009880066,0.5364944338798523,-0.02693614922463894 +0.30000001192092896,24.277889251708984,6.361904144287109,7.980409622192383,0.3644304871559143,0.4710824489593506,-0.1888461410999298 +0.30000001192092896,24.073549270629883,6.547340393066406,7.980409622192383,0.3415224850177765,0.4220234751701355,-0.15183815360069275 +0.30000001192092896,24.073549270629883,6.454622745513916,7.935412406921387,0.33579549193382263,0.5255924463272095,-0.1287081390619278 +0.30000001192092896,24.14166259765625,6.361904144287109,7.935412406921387,0.42170050740242004,0.4656314551830292,-0.08244814723730087 +0.30000001192092896,24.073549270629883,6.593699932098389,7.845418453216553,0.31861451268196106,0.39476847648620605,-0.12408214807510376 +0.30000001192092896,24.073549270629883,6.593699932098389,7.935412406921387,0.3816114664077759,0.5364944338798523,-0.14258615672588348 +0.30000001192092896,24.14166259765625,6.500981330871582,7.845418453216553,0.393065482378006,0.5473964810371399,-0.07782214879989624 +0.30000001192092896,24.482229232788086,6.361904144287109,7.980409622192383,0.39879247546195984,0.5582984685897827,-0.15646414458751678 +0.30000001192092896,24.277889251708984,6.686417579650879,7.980409622192383,0.2498904913663864,0.5364944338798523,-0.10557814687490463 +0.30000001192092896,24.34600257873535,6.361904144287109,7.800421237945557,0.25561749935150146,0.5037884712219238,-0.17034214735031128 +0.30000001192092896,24.277889251708984,6.315545558929443,7.710427761077881,0.3415224850177765,0.5855534672737122,-0.17959414422512054 +0.30000001192092896,24.482229232788086,6.454622745513916,7.845418453216553,0.29570648074150085,0.44927847385406494,-0.17959414422512054 +0.30000001192092896,24.34600257873535,6.547340393066406,7.800421237945557,0.3415224850177765,0.43837645649909973,-0.15646414458751678 +0.30000001192092896,24.41411590576172,6.361904144287109,7.890415668487549,0.3243415057659149,0.5255924463272095,-0.14258615672588348 +0.30000001192092896,24.14166259765625,6.361904144287109,7.755424976348877,0.2384364902973175,0.43837645649909973,-0.18422015011310577 +0.30000001192092896,24.41411590576172,6.315545558929443,8.025406837463379,0.30716049671173096,0.43837645649909973,-0.15183815360069275 +0.30000001192092896,24.00543785095215,6.454622745513916,7.845418453216553,0.29570648074150085,0.4710824489593506,-0.06394414603710175 +0.30000001192092896,24.209775924682617,6.547340393066406,7.755424976348877,0.4045194983482361,0.4983374774456024,-0.2166021466255188 +0.30000001192092896,24.209775924682617,6.361904144287109,7.935412406921387,0.4560624957084656,0.4765334725379944,-0.11020414531230927 +0.30000001192092896,24.14166259765625,6.408263683319092,7.845418453216553,0.30716049671173096,0.5092394948005676,-0.022310150787234306 +0.30000001192092896,24.34600257873535,6.547340393066406,7.620433807373047,0.47324350476264954,0.5637494325637817,-0.09170015156269073 +0.30000001192092896,24.209775924682617,6.361904144287109,7.935412406921387,0.46178948879241943,0.4220234751701355,-0.20735014975070953 +0.30000001192092896,24.482229232788086,6.640058517456055,7.800421237945557,0.43315452337265015,0.46018049120903015,-0.11020414531230927 +0.30000001192092896,24.55034065246582,6.547340393066406,7.935412406921387,0.41024649143218994,0.6019064784049988,-0.16571614146232605 +0.30000001192092896,24.41411590576172,6.500981330871582,7.890415668487549,0.35870349407196045,0.634612500667572,-0.09632615000009537 +0.30000001192092896,24.618453979492188,6.408263683319092,7.845418453216553,0.4560624957084656,0.4710824489593506,-0.15183815360069275 +0.30000001192092896,24.277889251708984,6.500981330871582,8.070404052734375,0.30716049671173096,0.492886483669281,-0.13796015083789825 +0.30000001192092896,24.34600257873535,6.547340393066406,7.890415668487549,0.3128874897956848,0.5092394948005676,-0.05469214916229248 +0.30000001192092896,24.34600257873535,6.500981330871582,7.890415668487549,0.35870349407196045,0.5310434699058533,-0.05006615072488785 +0.30000001192092896,24.41411590576172,6.408263683319092,8.070404052734375,0.31861451268196106,0.4656314551830292,-0.13796015083789825 +0.30000001192092896,24.209775924682617,6.454622745513916,7.845418453216553,0.37015751004219055,0.5255924463272095,-0.1009521484375 +0.30000001192092896,23.801097869873047,6.408263683319092,7.845418453216553,0.3243415057659149,0.5419455170631409,-0.17034214735031128 +0.30000001192092896,24.277889251708984,6.408263683319092,7.935412406921387,0.25561749935150146,0.4274744689464569,-0.14258615672588348 +0.30000001192092896,23.869211196899414,6.454622745513916,7.980409622192383,0.2785254716873169,0.4765334725379944,-0.11945614963769913 +0.30000001192092896,23.93732452392578,6.408263683319092,7.710427761077881,0.3873384892940521,0.5419455170631409,-0.1287081390619278 +0.30000001192092896,24.073549270629883,6.269186496734619,7.755424976348877,0.3644304871559143,0.39476847648620605,-0.22585414350032806 +0.30000001192092896,24.14166259765625,6.315545558929443,8.025406837463379,0.28425249457359314,0.4220234751701355,-0.15646414458751678 +0.30000001192092896,24.209775924682617,6.547340393066406,7.845418453216553,0.19262048602104187,0.4874354600906372,-0.09632615000009537 +0.30000001192092896,24.209775924682617,6.361904144287109,7.845418453216553,0.4388814866542816,0.5364944338798523,-0.15183815360069275 +0.30000001192092896,24.41411590576172,6.269186496734619,7.935412406921387,0.27279847860336304,0.372964471578598,-0.19347214698791504 +0.30000001192092896,24.34600257873535,6.686417579650879,7.980409622192383,0.20980148017406464,0.5310434699058533,-0.14258615672588348 +0.30000001192092896,24.14166259765625,6.500981330871582,7.845418453216553,0.4503355026245117,0.5201414823532104,-0.13796015083789825 +0.30000001192092896,24.41411590576172,6.454622745513916,7.755424976348877,0.3014335036277771,0.4819844663143158,-0.19809813797473907 +0.30000001192092896,24.34600257873535,6.454622745513916,7.890415668487549,0.37015751004219055,0.46018049120903015,-0.11020414531230927 +0.30000001192092896,24.00543785095215,6.408263683319092,7.935412406921387,0.3529765009880066,0.6019064784049988,-0.1009521484375 +0.30000001192092896,24.34600257873535,6.361904144287109,7.890415668487549,0.34724947810173035,0.5364944338798523,-0.07782214879989624 +0.30000001192092896,24.14166259765625,6.547340393066406,7.980409622192383,0.33579549193382263,0.44927847385406494,-0.11945614963769913 +0.30000001192092896,24.14166259765625,6.547340393066406,7.890415668487549,0.3644304871559143,0.5473964810371399,-0.14258615672588348 +0.30000001192092896,24.14166259765625,6.408263683319092,7.845418453216553,0.30716049671173096,0.5746514797210693,-0.06857015192508698 +0.30000001192092896,24.00543785095215,6.315545558929443,7.935412406921387,0.33579549193382263,0.5255924463272095,-0.2027241587638855 +0.30000001192092896,24.277889251708984,6.454622745513916,7.665430545806885,0.3816114664077759,0.5310434699058533,-0.16109015047550201 +0.30000001192092896,24.14166259765625,6.547340393066406,7.845418453216553,0.42170050740242004,0.5037884712219238,-0.17959414422512054 +0.30000001192092896,24.277889251708984,6.408263683319092,7.755424976348877,0.43315452337265015,0.5473964810371399,-0.14258615672588348 +0.30000001192092896,24.482229232788086,6.454622745513916,7.800421237945557,0.289979487657547,0.45472946763038635,-0.15646414458751678 +0.30000001192092896,24.55034065246582,6.547340393066406,7.980409622192383,0.28425249457359314,0.4874354600906372,-0.0870741531252861 +0.30000001192092896,24.482229232788086,6.454622745513916,7.665430545806885,0.3529765009880066,0.4819844663143158,-0.15183815360069275 +0.30000001192092896,24.34600257873535,6.361904144287109,7.575436592102051,0.39879247546195984,0.492886483669281,-0.12408214807510376 +0.30000001192092896,24.482229232788086,6.454622745513916,7.845418453216553,0.289979487657547,0.4274744689464569,-0.17034214735031128 +0.30000001192092896,24.482229232788086,6.454622745513916,7.845418453216553,0.3415224850177765,0.43837645649909973,-0.11020414531230927 +0.30000001192092896,23.93732452392578,6.361904144287109,7.845418453216553,0.4560624957084656,0.4220234751701355,-0.17959414422512054 +0.30000001192092896,24.34600257873535,6.547340393066406,8.070404052734375,0.3529765009880066,0.4819844663143158,-0.1287081390619278 +0.30000001192092896,24.277889251708984,6.593699932098389,7.890415668487549,0.2498904913663864,0.4220234751701355,-0.13796015083789825 +0.30000001192092896,24.14166259765625,6.500981330871582,7.755424976348877,0.41024649143218994,0.5364944338798523,-0.02693614922463894 +0.30000001192092896,24.073549270629883,6.593699932098389,7.710427761077881,0.3128874897956848,0.5092394948005676,-0.10557814687490463 +0.30000001192092896,24.209775924682617,6.454622745513916,7.800421237945557,0.289979487657547,0.43837645649909973,-0.10557814687490463 +0.30000001192092896,24.55034065246582,6.500981330871582,7.980409622192383,0.3816114664077759,0.6509654521942139,-0.06394414603710175 +0.30000001192092896,23.869211196899414,6.454622745513916,7.890415668487549,0.3644304871559143,0.5310434699058533,-0.07319615036249161 +0.30000001192092896,24.41411590576172,6.547340393066406,7.800421237945557,0.3415224850177765,0.4874354600906372,-0.1287081390619278 +0.30000001192092896,24.41411590576172,6.547340393066406,7.980409622192383,0.35870349407196045,0.5310434699058533,-0.16571614146232605 +0.30000001192092896,24.277889251708984,6.593699932098389,7.890415668487549,0.37015751004219055,0.5746514797210693,-0.10557814687490463 +0.30000001192092896,24.073549270629883,6.315545558929443,7.800421237945557,0.41024649143218994,0.5419455170631409,-0.11020414531230927 +0.30000001192092896,24.34600257873535,6.408263683319092,7.845418453216553,0.29570648074150085,0.4111214578151703,-0.14721214771270752 +0.30000001192092896,24.277889251708984,6.547340393066406,7.890415668487549,0.26707151532173157,0.5528474450111389,-0.15183815360069275 +0.30000001192092896,24.34600257873535,6.361904144287109,7.845418453216553,0.3415224850177765,0.5692004561424255,-0.17034214735031128 +0.30000001192092896,23.93732452392578,6.408263683319092,7.620433807373047,0.4446084797382355,0.4983374774456024,-0.15646414458751678 +0.30000001192092896,24.482229232788086,6.593699932098389,7.980409622192383,0.3758845031261444,0.43837645649909973,-0.12408214807510376 +0.30000001192092896,23.869211196899414,6.500981330871582,7.935412406921387,0.2269824892282486,0.5201414823532104,-0.15183815360069275 +0.30000001192092896,24.00543785095215,6.454622745513916,8.025406837463379,0.3758845031261444,0.4274744689464569,-0.2027241587638855 +0.30000001192092896,24.14166259765625,6.547340393066406,8.025406837463379,0.393065482378006,0.5201414823532104,-0.13333414494991302 +0.30000001192092896,24.00543785095215,6.547340393066406,7.845418453216553,0.4274275004863739,0.44927847385406494,-0.05006615072488785 +0.30000001192092896,24.00543785095215,6.361904144287109,7.800421237945557,0.30716049671173096,0.5582984685897827,-0.11020414531230927 +0.30000001192092896,24.073549270629883,6.454622745513916,7.890415668487549,0.30716049671173096,0.4220234751701355,-0.17496813833713531 +0.30000001192092896,24.073549270629883,6.454622745513916,7.935412406921387,0.42170050740242004,0.4056704640388489,-0.09632615000009537 +0.30000001192092896,24.209775924682617,6.408263683319092,7.890415668487549,0.29570648074150085,0.6019064784049988,-0.08244814723730087 +0.4000000059604645,24.209775924682617,6.547340393066406,7.845418453216553,0.34724947810173035,0.5582984685897827,-0.17496813833713531 +0.4000000059604645,24.34600257873535,9.607033729553223,10.185262680053711,0.5591484904289246,0.11676745861768723,-0.1148301437497139 +0.4000000059604645,24.34600257873535,8.911649703979492,10.140265464782715,0.42170050740242004,0.7926914691925049,-0.05469214916229248 +0.4000000059604645,24.277889251708984,8.958008766174316,10.185262680053711,0.41024649143218994,0.7654364705085754,-0.03156214952468872 +0.4000000059604645,24.34600257873535,8.911649703979492,10.275257110595703,0.4446084797382355,0.7708874344825745,-0.17959414422512054 +0.4000000059604645,23.869211196899414,9.004366874694824,10.185262680053711,0.4789704978466034,0.7599854469299316,-0.1009521484375 +0.4000000059604645,24.482229232788086,9.004366874694824,10.230259895324707,0.4904245138168335,0.7545344829559326,-0.12408214807510376 +0.4000000059604645,24.00543785095215,8.77257251739502,10.230259895324707,0.5935105085372925,0.738181471824646,-0.14258615672588348 +0.4000000059604645,24.209775924682617,9.004366874694824,10.230259895324707,0.5305134654045105,0.7272794842720032,-0.09632615000009537 +0.4000000059604645,24.14166259765625,8.818931579589844,10.185262680053711,0.5076054930686951,0.7981424331665039,-0.13333414494991302 +0.4000000059604645,24.073549270629883,8.77257251739502,10.185262680053711,0.4789704978466034,0.738181471824646,-0.20735014975070953 +0.4000000059604645,24.00543785095215,8.818931579589844,10.140265464782715,0.4675165116786957,0.6727694869041443,-0.16571614146232605 +0.4000000059604645,24.277889251708984,8.958008766174316,10.3202543258667,0.5476945042610168,0.7000244855880737,-0.1009521484375 +0.4000000059604645,24.277889251708984,8.726213455200195,10.230259895324707,0.3758845031261444,0.7545344829559326,-0.06857015192508698 +0.4000000059604645,24.482229232788086,8.726213455200195,10.410247802734375,0.35870349407196045,0.6945734620094299,-0.16109015047550201 +0.4000000059604645,24.41411590576172,8.77257251739502,10.500242233276367,0.5076054930686951,0.6073575019836426,-0.13796015083789825 +0.4000000059604645,24.482229232788086,8.958008766174316,10.3202543258667,0.5018784999847412,0.7272794842720032,-0.07782214879989624 +0.4000000059604645,24.55034065246582,8.865290641784668,10.140265464782715,0.5648754835128784,0.7708874344825745,-0.11020414531230927 +0.4000000059604645,24.55034065246582,8.911649703979492,10.365250587463379,0.46178948879241943,0.7054754495620728,-0.1287081390619278 +0.4000000059604645,24.618453979492188,8.865290641784668,10.140265464782715,0.4675165116786957,0.7109264731407166,-0.1009521484375 +0.4000000059604645,24.00543785095215,9.004366874694824,10.185262680053711,0.6221455335617065,0.7654364705085754,-0.05931815132498741 +0.4000000059604645,24.41411590576172,8.77257251739502,10.3202543258667,0.5305134654045105,0.738181471824646,-0.09170015156269073 +0.4000000059604645,24.209775924682617,9.004366874694824,10.230259895324707,0.5591484904289246,0.6891224980354309,-0.11945614963769913 +0.4000000059604645,24.277889251708984,8.958008766174316,10.3202543258667,0.5877835154533386,0.7708874344825745,-0.14258615672588348 +0.4000000059604645,23.801097869873047,8.77257251739502,10.230259895324707,0.5247864723205566,0.7272794842720032,-0.08244814723730087 +0.4000000059604645,24.00543785095215,8.77257251739502,10.185262680053711,0.4560624957084656,0.6891224980354309,-0.14258615672588348 +0.4000000059604645,24.277889251708984,8.865290641784668,10.365250587463379,0.5362404584884644,0.7327304482460022,-0.14721214771270752 +0.4000000059604645,24.073549270629883,8.911649703979492,10.230259895324707,0.5362404584884644,0.8199464678764343,-0.05006615072488785 +0.4000000059604645,24.34600257873535,8.77257251739502,10.050271034240723,0.47324350476264954,0.7872405052185059,-0.16571614146232605 +0.4000000059604645,24.34600257873535,8.865290641784668,10.185262680053711,0.5648754835128784,0.6618674993515015,-0.13333414494991302 +0.4000000059604645,24.209775924682617,8.865290641784668,10.230259895324707,0.5362404584884644,0.7163774967193604,-0.11945614963769913 +0.4000000059604645,24.482229232788086,8.77257251739502,10.230259895324707,0.4789704978466034,0.7490835189819336,-0.19347214698791504 +0.4000000059604645,24.00543785095215,8.679854393005371,10.140265464782715,0.46178948879241943,0.6673184633255005,-0.13333414494991302 +0.4000000059604645,24.14166259765625,8.77257251739502,10.185262680053711,0.3873384892940521,0.7490835189819336,-0.08244814723730087 +0.4000000059604645,24.00543785095215,8.818931579589844,10.185262680053711,0.4388814866542816,0.776338517665863,-0.1009521484375 +0.4000000059604645,24.00543785095215,8.818931579589844,10.185262680053711,0.5190595388412476,0.6782204508781433,-0.1888461410999298 +0.4000000059604645,24.14166259765625,8.726213455200195,10.230259895324707,0.541967511177063,0.7109264731407166,-0.16571614146232605 +0.4000000059604645,23.869211196899414,9.050726890563965,10.365250587463379,0.5534214973449707,0.743632435798645,-0.09632615000009537 +0.4000000059604645,23.869211196899414,8.726213455200195,10.185262680053711,0.5018784999847412,0.776338517665863,-0.04544014856219292 +0.4000000059604645,23.93732452392578,8.865290641784668,10.185262680053711,0.6164185404777527,0.738181471824646,-0.18422015011310577 +0.4000000059604645,24.14166259765625,9.004366874694824,10.365250587463379,0.47324350476264954,0.7327304482460022,-0.09632615000009537 +0.4000000059604645,24.34600257873535,8.911649703979492,10.095268249511719,0.5362404584884644,0.7218285202980042,-0.07319615036249161 +0.4000000059604645,24.14166259765625,8.818931579589844,10.3202543258667,0.5476945042610168,0.8581034541130066,-0.05469214916229248 +0.4000000059604645,24.34600257873535,8.958008766174316,10.3202543258667,0.5247864723205566,0.640063464641571,-0.15646414458751678 +0.4000000059604645,24.41411590576172,8.958008766174316,10.365250587463379,0.4675165116786957,0.7545344829559326,-0.1148301437497139 +0.4000000059604645,24.14166259765625,8.958008766174316,10.095268249511719,0.4904245138168335,0.7599854469299316,-0.07782214879989624 +0.4000000059604645,24.482229232788086,8.911649703979492,10.275257110595703,0.5190595388412476,0.7490835189819336,-0.15183815360069275 +0.4000000059604645,24.00543785095215,8.911649703979492,10.230259895324707,0.39879247546195984,0.6727694869041443,-0.09632615000009537 +0.4000000059604645,24.55034065246582,9.004366874694824,10.140265464782715,0.5247864723205566,0.776338517665863,-0.0870741531252861 +0.4000000059604645,24.209775924682617,8.726213455200195,10.185262680053711,0.5877835154533386,0.8417505025863647,-0.1888461410999298 +0.30000001192092896,24.14166259765625,8.865290641784668,10.140265464782715,0.4675165116786957,0.7218285202980042,-0.18422015011310577 +0.30000001192092896,24.073549270629883,6.500981330871582,7.845418453216553,0.16971249878406525,0.18763045966625214,-0.15183815360069275 +0.30000001192092896,24.209775924682617,6.500981330871582,7.755424976348877,0.3529765009880066,0.5473964810371399,-0.19809813797473907 +0.30000001192092896,24.34600257873535,6.315545558929443,7.890415668487549,0.28425249457359314,0.5092394948005676,-0.14258615672588348 +0.30000001192092896,24.34600257873535,6.547340393066406,7.890415668487549,0.3873384892940521,0.4165724515914917,-0.14258615672588348 +0.30000001192092896,24.277889251708984,6.547340393066406,7.800421237945557,0.25561749935150146,0.5037884712219238,-0.05006615072488785 +0.30000001192092896,24.482229232788086,6.361904144287109,7.575436592102051,0.41024649143218994,0.4002194404602051,-0.14258615672588348 +0.30000001192092896,24.482229232788086,6.408263683319092,8.115400314331055,0.4274275004863739,0.4765334725379944,-0.16571614146232605 +0.30000001192092896,24.482229232788086,6.593699932098389,7.980409622192383,0.22125549614429474,0.4874354600906372,-0.05931815132498741 +0.30000001192092896,24.41411590576172,6.500981330871582,7.710427761077881,0.37015751004219055,0.5255924463272095,-0.1148301437497139 +0.30000001192092896,24.482229232788086,6.500981330871582,7.980409622192383,0.393065482378006,0.4056704640388489,-0.16109015047550201 +0.30000001192092896,24.754680633544922,6.500981330871582,7.935412406921387,0.25561749935150146,0.4056704640388489,-0.10557814687490463 +0.30000001192092896,24.34600257873535,6.547340393066406,7.935412406921387,0.33579549193382263,0.5255924463272095,-0.11945614963769913 +0.30000001192092896,24.754680633544922,6.408263683319092,7.935412406921387,0.3300684690475464,0.5746514797210693,-0.1287081390619278 +0.30000001192092896,24.209775924682617,6.500981330871582,7.890415668487549,0.39879247546195984,0.4765334725379944,-0.1009521484375 +0.30000001192092896,24.277889251708984,6.454622745513916,7.890415668487549,0.27279847860336304,0.5037884712219238,-0.06857015192508698 +0.30000001192092896,23.801097869873047,6.500981330871582,7.710427761077881,0.3644304871559143,0.5801025032997131,-0.08244814723730087 +0.30000001192092896,24.34600257873535,6.408263683319092,7.800421237945557,0.39879247546195984,0.5037884712219238,-0.17034214735031128 +0.30000001192092896,24.277889251708984,6.408263683319092,7.800421237945557,0.2269824892282486,0.5528474450111389,-0.14258615672588348 +0.30000001192092896,24.00543785095215,6.686417579650879,8.025406837463379,0.30716049671173096,0.5528474450111389,-0.11020414531230927 +0.30000001192092896,24.277889251708984,6.454622745513916,7.800421237945557,0.31861451268196106,0.5692004561424255,-0.17034214735031128 +0.30000001192092896,24.41411590576172,6.361904144287109,7.800421237945557,0.39879247546195984,0.43837645649909973,-0.12408214807510376 +0.30000001192092896,24.14166259765625,6.500981330871582,7.935412406921387,0.2498904913663864,0.5255924463272095,-0.11020414531230927 +0.30000001192092896,24.41411590576172,6.454622745513916,7.755424976348877,0.37015751004219055,0.6182594895362854,-0.16571614146232605 +0.30000001192092896,24.073549270629883,6.222827434539795,7.845418453216553,0.41024649143218994,0.5146905183792114,-0.1148301437497139 +0.30000001192092896,24.34600257873535,6.361904144287109,7.980409622192383,0.3300684690475464,0.5255924463272095,-0.16571614146232605 +0.30000001192092896,24.209775924682617,6.500981330871582,8.025406837463379,0.3128874897956848,0.5037884712219238,-0.05469214916229248 +0.30000001192092896,24.073549270629883,6.500981330871582,7.800421237945557,0.35870349407196045,0.4765334725379944,-0.2027241587638855 +0.30000001192092896,24.209775924682617,6.454622745513916,7.980409622192383,0.42170050740242004,0.44927847385406494,-0.14721214771270752 +0.30000001192092896,24.00543785095215,6.547340393066406,7.935412406921387,0.41024649143218994,0.46018049120903015,-0.1287081390619278 +0.30000001192092896,24.073549270629883,6.408263683319092,7.890415668487549,0.3128874897956848,0.5637494325637817,-0.1148301437497139 +0.30000001192092896,24.14166259765625,6.547340393066406,7.890415668487549,0.35870349407196045,0.44927847385406494,-0.19809813797473907 +0.30000001192092896,24.073549270629883,6.547340393066406,7.845418453216553,0.3873384892940521,0.45472946763038635,-0.17034214735031128 +0.30000001192092896,24.14166259765625,6.640058517456055,7.890415668487549,0.4388814866542816,0.5801025032997131,-0.09632615000009537 +0.30000001192092896,24.209775924682617,6.408263683319092,7.800421237945557,0.34724947810173035,0.4874354600906372,-0.07782214879989624 +0.30000001192092896,24.209775924682617,6.408263683319092,7.845418453216553,0.30716049671173096,0.44382745027542114,-0.14721214771270752 +0.30000001192092896,24.14166259765625,6.500981330871582,7.890415668487549,0.289979487657547,0.5092394948005676,-0.1287081390619278 +0.30000001192092896,24.482229232788086,6.547340393066406,7.710427761077881,0.3243415057659149,0.6019064784049988,-0.040814146399497986 +0.30000001192092896,24.482229232788086,6.408263683319092,7.800421237945557,0.3243415057659149,0.5146905183792114,-0.2166021466255188 +0.30000001192092896,24.209775924682617,6.640058517456055,7.710427761077881,0.3415224850177765,0.4765334725379944,-0.2166021466255188 +0.30000001192092896,24.482229232788086,6.454622745513916,7.935412406921387,0.28425249457359314,0.5419455170631409,-0.10557814687490463 +0.30000001192092896,24.209775924682617,6.454622745513916,7.710427761077881,0.3243415057659149,0.5255924463272095,-0.18422015011310577 +0.30000001192092896,24.14166259765625,6.500981330871582,7.845418453216553,0.41024649143218994,0.5201414823532104,-0.1009521484375 +0.30000001192092896,24.34600257873535,6.408263683319092,7.935412406921387,0.3644304871559143,0.5201414823532104,-0.14721214771270752 +0.30000001192092896,24.14166259765625,6.454622745513916,7.890415668487549,0.29570648074150085,0.43837645649909973,-0.1009521484375 +0.30000001192092896,24.14166259765625,6.547340393066406,7.710427761077881,0.34724947810173035,0.43837645649909973,-0.19809813797473907 +0.30000001192092896,24.209775924682617,6.315545558929443,7.935412406921387,0.289979487657547,0.4165724515914917,-0.12408214807510376 +0.30000001192092896,24.14166259765625,6.454622745513916,7.845418453216553,0.22125549614429474,0.5364944338798523,-0.11945614963769913 +0.30000001192092896,24.482229232788086,6.361904144287109,7.800421237945557,0.4560624957084656,0.4819844663143158,-0.15646414458751678 +0.30000001192092896,24.41411590576172,6.454622745513916,7.980409622192383,0.39879247546195984,0.46018049120903015,-0.17034214735031128 +0.30000001192092896,24.41411590576172,6.593699932098389,7.800421237945557,0.3644304871559143,0.4765334725379944,-0.08244814723730087 +0.30000001192092896,24.618453979492188,6.408263683319092,7.890415668487549,0.35870349407196045,0.4874354600906372,-0.05006615072488785 +0.30000001192092896,24.34600257873535,6.547340393066406,8.025406837463379,0.3644304871559143,0.5364944338798523,-0.17959414422512054 +0.30000001192092896,24.41411590576172,6.547340393066406,7.845418453216553,0.3415224850177765,0.4819844663143158,-0.13333414494991302 +0.30000001192092896,24.41411590576172,6.640058517456055,7.800421237945557,0.3243415057659149,0.5473964810371399,-0.17034214735031128 +0.30000001192092896,24.277889251708984,6.454622745513916,7.800421237945557,0.4274275004863739,0.5473964810371399,-0.07782214879989624 +0.30000001192092896,24.34600257873535,6.454622745513916,7.980409622192383,0.31861451268196106,0.5201414823532104,-0.20735014975070953 +0.30000001192092896,24.41411590576172,6.454622745513916,7.935412406921387,0.3128874897956848,0.5419455170631409,-0.1009521484375 +0.30000001192092896,24.073549270629883,6.454622745513916,7.800421237945557,0.33579549193382263,0.5364944338798523,-0.09632615000009537 +0.30000001192092896,23.869211196899414,6.361904144287109,7.800421237945557,0.4446084797382355,0.5201414823532104,-0.17959414422512054 +0.30000001192092896,24.209775924682617,6.454622745513916,7.845418453216553,0.35870349407196045,0.4765334725379944,-0.13333414494991302 +0.30000001192092896,24.14166259765625,6.500981330871582,7.845418453216553,0.28425249457359314,0.4765334725379944,-0.05931815132498741 +0.30000001192092896,24.00543785095215,6.500981330871582,7.890415668487549,0.43315452337265015,0.5037884712219238,-0.14721214771270752 +0.30000001192092896,24.34600257873535,6.408263683319092,7.800421237945557,0.3300684690475464,0.4329254627227783,-0.14258615672588348 +0.30000001192092896,24.00543785095215,6.408263683319092,7.980409622192383,0.289979487657547,0.4220234751701355,-0.11020414531230927 +0.30000001192092896,24.209775924682617,6.593699932098389,7.755424976348877,0.4159735143184662,0.4765334725379944,-0.16571614146232605 +0.30000001192092896,24.41411590576172,6.361904144287109,7.755424976348877,0.34724947810173035,0.4165724515914917,-0.16109015047550201 +0.30000001192092896,24.482229232788086,6.547340393066406,7.980409622192383,0.34724947810173035,0.4765334725379944,-0.16571614146232605 +0.30000001192092896,24.41411590576172,6.640058517456055,7.845418453216553,0.3014335036277771,0.5146905183792114,-0.1009521484375 +0.30000001192092896,24.277889251708984,6.500981330871582,7.890415668487549,0.29570648074150085,0.4819844663143158,-0.17496813833713531 +0.30000001192092896,24.34600257873535,6.408263683319092,7.935412406921387,0.35870349407196045,0.5092394948005676,-0.2027241587638855 +0.30000001192092896,24.14166259765625,6.500981330871582,8.025406837463379,0.29570648074150085,0.4656314551830292,-0.13333414494991302 +0.30000001192092896,24.14166259765625,6.500981330871582,8.115400314331055,0.34724947810173035,0.5419455170631409,-0.06857015192508698 +0.30000001192092896,24.209775924682617,6.500981330871582,7.800421237945557,0.37015751004219055,0.5092394948005676,-0.1888461410999298 +0.30000001192092896,23.93732452392578,6.454622745513916,7.800421237945557,0.33579549193382263,0.43837645649909973,-0.07782214879989624 +0.30000001192092896,24.209775924682617,6.500981330871582,8.025406837463379,0.3644304871559143,0.5746514797210693,-0.15183815360069275 +0.30000001192092896,23.93732452392578,6.547340393066406,7.755424976348877,0.3300684690475464,0.5746514797210693,-0.08244814723730087 +0.30000001192092896,24.073549270629883,6.500981330871582,7.890415668487549,0.3128874897956848,0.4765334725379944,-0.22122815251350403 +0.30000001192092896,24.34600257873535,6.593699932098389,7.890415668487549,0.22125549614429474,0.5201414823532104,-0.1009521484375 +0.30000001192092896,24.209775924682617,6.500981330871582,7.845418453216553,0.4789704978466034,0.43837645649909973,-0.1287081390619278 +0.30000001192092896,24.41411590576172,6.315545558929443,7.755424976348877,0.4045194983482361,0.5364944338798523,-0.2027241587638855 +0.30000001192092896,24.34600257873535,6.454622745513916,7.710427761077881,0.33579549193382263,0.4874354600906372,-0.14258615672588348 +0.30000001192092896,24.41411590576172,6.547340393066406,7.980409622192383,0.33579549193382263,0.4983374774456024,-0.19347214698791504 +0.30000001192092896,24.41411590576172,6.500981330871582,7.890415668487549,0.3758845031261444,0.5255924463272095,-0.14721214771270752 +0.30000001192092896,24.277889251708984,6.269186496734619,7.890415668487549,0.4045194983482361,0.3620624840259552,-0.15646414458751678 +0.30000001192092896,24.482229232788086,6.454622745513916,8.070404052734375,0.289979487657547,0.43837645649909973,-0.05931815132498741 +0.30000001192092896,24.482229232788086,6.361904144287109,7.800421237945557,0.37015751004219055,0.4710824489593506,-0.12408214807510376 +0.30000001192092896,24.073549270629883,6.408263683319092,7.935412406921387,0.289979487657547,0.4656314551830292,-0.14258615672588348 +0.30000001192092896,24.55034065246582,6.361904144287109,8.16039752960205,0.39879247546195984,0.4819844663143158,-0.16571614146232605 +0.30000001192092896,24.00543785095215,6.547340393066406,7.845418453216553,0.3300684690475464,0.4656314551830292,-0.1009521484375 +0.30000001192092896,24.073549270629883,6.640058517456055,7.935412406921387,0.4388814866542816,0.5528474450111389,-0.1009521484375 +0.30000001192092896,24.14166259765625,6.500981330871582,7.845418453216553,0.31861451268196106,0.5092394948005676,-0.15646414458751678 +0.30000001192092896,24.209775924682617,6.454622745513916,7.890415668487549,0.4045194983482361,0.4819844663143158,-0.06394414603710175 +0.30000001192092896,24.14166259765625,6.547340393066406,7.800421237945557,0.34724947810173035,0.5637494325637817,-0.008432149887084961 +0.30000001192092896,24.00543785095215,6.361904144287109,7.980409622192383,0.3014335036277771,0.5473964810371399,-0.07782214879989624 +0.30000001192092896,24.34600257873535,6.500981330871582,7.935412406921387,0.30716049671173096,0.44927847385406494,-0.1148301437497139 +0.30000001192092896,24.482229232788086,6.408263683319092,7.800421237945557,0.393065482378006,0.5364944338798523,-0.0870741531252861 +0.30000001192092896,24.073549270629883,6.500981330871582,7.845418453216553,0.3300684690475464,0.492886483669281,-0.1009521484375 +0.30000001192092896,24.482229232788086,6.547340393066406,7.845418453216553,0.34724947810173035,0.5310434699058533,-0.16571614146232605 +0.30000001192092896,24.277889251708984,6.593699932098389,7.845418453216553,0.24416348338127136,0.5037884712219238,-0.1888461410999298 +0.30000001192092896,24.277889251708984,6.361904144287109,7.755424976348877,0.25561749935150146,0.5528474450111389,-0.1888461410999298 +0.30000001192092896,24.00543785095215,6.500981330871582,7.845418453216553,0.33579549193382263,0.4765334725379944,-0.23973214626312256 +0.30000001192092896,23.93732452392578,6.408263683319092,7.800421237945557,0.3644304871559143,0.5473964810371399,-0.15183815360069275 +0.30000001192092896,24.073549270629883,6.454622745513916,7.980409622192383,0.37015751004219055,0.5310434699058533,-0.1287081390619278 +0.30000001192092896,23.869211196899414,6.454622745513916,7.800421237945557,0.37015751004219055,0.5255924463272095,-0.17034214735031128 +0.30000001192092896,23.869211196899414,6.361904144287109,7.665430545806885,0.34724947810173035,0.44382745027542114,-0.11945614963769913 +0.30000001192092896,24.00543785095215,6.361904144287109,7.890415668487549,0.3873384892940521,0.4656314551830292,-0.1148301437497139 +0.30000001192092896,24.209775924682617,6.408263683319092,7.890415668487549,0.3243415057659149,0.4983374774456024,-0.16109015047550201 +0.30000001192092896,24.209775924682617,6.361904144287109,7.755424976348877,0.29570648074150085,0.44927847385406494,-0.15646414458751678 +0.30000001192092896,24.34600257873535,6.176468849182129,7.800421237945557,0.2498904913663864,0.44382745027542114,-0.08244814723730087 +0.30000001192092896,24.34600257873535,6.454622745513916,7.935412406921387,0.3816114664077759,0.46018049120903015,-0.1009521484375 +0.30000001192092896,24.277889251708984,6.500981330871582,7.890415668487549,0.39879247546195984,0.492886483669281,-0.13796015083789825 +0.30000001192092896,24.34600257873535,6.454622745513916,7.935412406921387,0.35870349407196045,0.44927847385406494,-0.15646414458751678 +0.30000001192092896,24.34600257873535,6.593699932098389,7.845418453216553,0.3243415057659149,0.4710824489593506,-0.14258615672588348 +0.30000001192092896,24.00543785095215,6.454622745513916,7.845418453216553,0.18116648495197296,0.4983374774456024,-0.1287081390619278 +0.30000001192092896,24.34600257873535,6.454622745513916,7.980409622192383,0.3873384892940521,0.6019064784049988,-0.09632615000009537 +0.30000001192092896,24.00543785095215,6.454622745513916,7.890415668487549,0.3758845031261444,0.4165724515914917,-0.16109015047550201 +0.30000001192092896,24.14166259765625,6.547340393066406,7.800421237945557,0.4274275004863739,0.4874354600906372,-0.06394414603710175 +0.30000001192092896,24.209775924682617,6.547340393066406,7.710427761077881,0.35870349407196045,0.5801025032997131,-0.09632615000009537 +0.30000001192092896,24.277889251708984,6.454622745513916,7.800421237945557,0.33579549193382263,0.5746514797210693,-0.1009521484375 +0.30000001192092896,24.482229232788086,6.408263683319092,7.935412406921387,0.33579549193382263,0.5364944338798523,-0.15183815360069275 +0.30000001192092896,24.41411590576172,6.593699932098389,7.800421237945557,0.3873384892940521,0.45472946763038635,-0.15183815360069275 +0.30000001192092896,24.41411590576172,6.408263683319092,7.665430545806885,0.30716049671173096,0.4656314551830292,-0.15183815360069275 +0.30000001192092896,24.55034065246582,6.500981330871582,7.845418453216553,0.289979487657547,0.4983374774456024,-0.17034214735031128 +0.30000001192092896,24.482229232788086,6.500981330871582,7.800421237945557,0.28425249457359314,0.5092394948005676,-0.17959414422512054 +0.30000001192092896,24.618453979492188,6.361904144287109,7.800421237945557,0.2785254716873169,0.4819844663143158,-0.2027241587638855 +0.30000001192092896,24.14166259765625,6.269186496734619,7.755424976348877,0.3128874897956848,0.4983374774456024,-0.13333414494991302 +0.30000001192092896,24.618453979492188,6.547340393066406,7.890415668487549,0.3644304871559143,0.43837645649909973,-0.2027241587638855 +0.30000001192092896,24.34600257873535,6.500981330871582,8.070404052734375,0.3300684690475464,0.5037884712219238,-0.08244814723730087 +0.30000001192092896,24.34600257873535,6.361904144287109,7.845418453216553,0.393065482378006,0.5582984685897827,-0.16571614146232605 +0.30000001192092896,24.14166259765625,6.315545558929443,7.935412406921387,0.3014335036277771,0.4765334725379944,-0.19809813797473907 +0.30000001192092896,24.209775924682617,6.500981330871582,7.935412406921387,0.3816114664077759,0.4874354600906372,-0.1009521484375 +0.30000001192092896,24.209775924682617,6.640058517456055,7.935412406921387,0.4388814866542816,0.5855534672737122,-0.013058149255812168 +0.30000001192092896,24.277889251708984,6.500981330871582,7.935412406921387,0.31861451268196106,0.45472946763038635,-0.1888461410999298 +0.30000001192092896,24.34600257873535,6.593699932098389,7.980409622192383,0.25561749935150146,0.4165724515914917,-0.12408214807510376 +0.30000001192092896,24.482229232788086,6.640058517456055,7.980409622192383,0.33579549193382263,0.5692004561424255,-0.1148301437497139 +0.30000001192092896,24.209775924682617,6.454622745513916,7.845418453216553,0.3758845031261444,0.5419455170631409,-0.08244814723730087 +0.30000001192092896,24.55034065246582,6.500981330871582,8.025406837463379,0.289979487657547,0.44927847385406494,-0.15183815360069275 +0.30000001192092896,24.686567306518555,6.500981330871582,7.890415668487549,0.4446084797382355,0.492886483669281,-0.11945614963769913 +0.30000001192092896,24.209775924682617,6.500981330871582,7.845418453216553,0.42170050740242004,0.4983374774456024,-0.013058149255812168 +0.30000001192092896,24.41411590576172,6.454622745513916,7.755424976348877,0.39879247546195984,0.4710824489593506,-0.13796015083789825 +0.30000001192092896,24.34600257873535,6.547340393066406,7.755424976348877,0.33579549193382263,0.4819844663143158,-0.17034214735031128 +0.30000001192092896,24.209775924682617,6.547340393066406,7.755424976348877,0.31861451268196106,0.4710824489593506,-0.12408214807510376 +0.30000001192092896,24.209775924682617,6.454622745513916,7.845418453216553,0.3243415057659149,0.5692004561424255,-0.17959414422512054 +0.30000001192092896,24.14166259765625,6.361904144287109,7.845418453216553,0.35870349407196045,0.4983374774456024,-0.14258615672588348 +0.30000001192092896,24.073549270629883,6.547340393066406,7.935412406921387,0.3014335036277771,0.4111214578151703,-0.09170015156269073 +0.30000001192092896,23.869211196899414,6.547340393066406,7.890415668487549,0.23270948231220245,0.5310434699058533,-0.19809813797473907 +0.30000001192092896,23.93732452392578,6.315545558929443,7.890415668487549,0.3415224850177765,0.44382745027542114,-0.18422015011310577 +0.30000001192092896,24.073549270629883,6.361904144287109,7.800421237945557,0.2785254716873169,0.4819844663143158,-0.13333414494991302 +0.30000001192092896,24.00543785095215,6.547340393066406,7.935412406921387,0.31861451268196106,0.4710824489593506,-0.11945614963769913 +0.30000001192092896,24.277889251708984,6.500981330871582,7.710427761077881,0.3644304871559143,0.4329254627227783,-0.15646414458751678 +0.30000001192092896,24.14166259765625,6.454622745513916,7.845418453216553,0.27279847860336304,0.44927847385406494,-0.16109015047550201 +0.30000001192092896,24.34600257873535,6.640058517456055,7.800421237945557,0.3873384892940521,0.43837645649909973,-0.1009521484375 +0.30000001192092896,24.55034065246582,6.500981330871582,7.710427761077881,0.39879247546195984,0.5582984685897827,-0.03618814796209335 +0.30000001192092896,24.41411590576172,6.454622745513916,7.845418453216553,0.3816114664077759,0.4765334725379944,-0.11020414531230927 +0.30000001192092896,24.34600257873535,6.500981330871582,7.935412406921387,0.3758845031261444,0.5201414823532104,-0.14721214771270752 +0.30000001192092896,24.14166259765625,6.500981330871582,7.935412406921387,0.26707151532173157,0.5746514797210693,-0.12408214807510376 +0.30000001192092896,24.277889251708984,6.454622745513916,7.890415668487549,0.3816114664077759,0.4765334725379944,-0.12408214807510376 +0.30000001192092896,24.14166259765625,6.454622745513916,8.025406837463379,0.2613444924354553,0.4819844663143158,-0.09170015156269073 +0.30000001192092896,24.277889251708984,6.547340393066406,7.935412406921387,0.35870349407196045,0.5746514797210693,-0.11945614963769913 +0.30000001192092896,24.277889251708984,6.547340393066406,7.935412406921387,0.3415224850177765,0.5637494325637817,-0.05006615072488785 +0.30000001192092896,24.00543785095215,6.315545558929443,7.800421237945557,0.3758845031261444,0.5364944338798523,-0.15183815360069275 +0.30000001192092896,24.209775924682617,6.408263683319092,7.890415668487549,0.289979487657547,0.5201414823532104,-0.16571614146232605 +0.30000001192092896,24.209775924682617,6.454622745513916,7.890415668487549,0.3128874897956848,0.4983374774456024,-0.17496813833713531 +0.30000001192092896,24.34600257873535,6.500981330871582,7.755424976348877,0.289979487657547,0.492886483669281,-0.17959414422512054 +0.30000001192092896,24.482229232788086,6.315545558929443,7.935412406921387,0.3644304871559143,0.43837645649909973,-0.14721214771270752 +0.30000001192092896,24.34600257873535,6.500981330871582,7.890415668487549,0.3415224850177765,0.5092394948005676,-0.13333414494991302 +0.30000001192092896,24.41411590576172,6.593699932098389,7.800421237945557,0.43315452337265015,0.5692004561424255,-0.13333414494991302 +0.30000001192092896,24.55034065246582,6.454622745513916,7.755424976348877,0.3415224850177765,0.4656314551830292,-0.1148301437497139 +0.30000001192092896,24.686567306518555,6.315545558929443,8.025406837463379,0.3873384892940521,0.46018049120903015,-0.18422015011310577 +0.30000001192092896,24.34600257873535,6.500981330871582,7.935412406921387,0.24416348338127136,0.492886483669281,-0.12408214807510376 +0.30000001192092896,24.14166259765625,6.640058517456055,7.890415668487549,0.30716049671173096,0.5092394948005676,-0.16109015047550201 +0.30000001192092896,24.55034065246582,6.315545558929443,7.935412406921387,0.3644304871559143,0.4819844663143158,-0.13796015083789825 +0.30000001192092896,24.277889251708984,6.454622745513916,8.070404052734375,0.43315452337265015,0.46018049120903015,-0.0870741531252861 +0.30000001192092896,24.209775924682617,6.408263683319092,7.800421237945557,0.37015751004219055,0.5801025032997131,-0.12408214807510376 +0.30000001192092896,24.14166259765625,6.454622745513916,7.800421237945557,0.34724947810173035,0.4765334725379944,-0.14258615672588348 +0.30000001192092896,24.14166259765625,6.547340393066406,7.935412406921387,0.41024649143218994,0.4819844663143158,-0.18422015011310577 +0.30000001192092896,24.618453979492188,6.454622745513916,7.890415668487549,0.3128874897956848,0.5092394948005676,-0.1009521484375 +0.30000001192092896,23.869211196899414,6.500981330871582,7.845418453216553,0.41024649143218994,0.5255924463272095,-0.17034214735031128 +0.30000001192092896,24.34600257873535,6.454622745513916,7.890415668487549,0.3758845031261444,0.5092394948005676,-0.1287081390619278 +0.30000001192092896,24.41411590576172,6.593699932098389,7.845418453216553,0.26707151532173157,0.5037884712219238,-0.08244814723730087 +0.30000001192092896,24.41411590576172,6.640058517456055,7.755424976348877,0.23270948231220245,0.5692004561424255,-0.10557814687490463 +0.30000001192092896,24.277889251708984,6.315545558929443,7.800421237945557,0.3529765009880066,0.6073575019836426,-0.11945614963769913 +0.30000001192092896,24.209775924682617,6.315545558929443,7.935412406921387,0.41024649143218994,0.5146905183792114,-0.1009521484375 +0.30000001192092896,24.41411590576172,6.500981330871582,7.890415668487549,0.3873384892940521,0.4874354600906372,-0.1287081390619278 +0.30000001192092896,24.209775924682617,6.547340393066406,7.755424976348877,0.2498904913663864,0.5419455170631409,-0.17959414422512054 +0.30000001192092896,24.00543785095215,6.361904144287109,7.710427761077881,0.289979487657547,0.46018049120903015,-0.17959414422512054 +0.30000001192092896,24.00543785095215,6.547340393066406,7.890415668487549,0.28425249457359314,0.4656314551830292,-0.14721214771270752 +0.30000001192092896,23.93732452392578,6.500981330871582,7.935412406921387,0.2384364902973175,0.5364944338798523,-0.0870741531252861 +0.30000001192092896,23.869211196899414,6.361904144287109,7.755424976348877,0.3644304871559143,0.4002194404602051,-0.17034214735031128 +0.30000001192092896,24.14166259765625,6.361904144287109,7.845418453216553,0.3415224850177765,0.4710824489593506,-0.14721214771270752 +0.30000001192092896,24.14166259765625,6.408263683319092,7.890415668487549,0.3300684690475464,0.4002194404602051,-0.11945614963769913 +0.30000001192092896,24.34600257873535,6.640058517456055,7.890415668487549,0.3816114664077759,0.5528474450111389,-0.1009521484375 +0.30000001192092896,24.073549270629883,6.454622745513916,7.935412406921387,0.37015751004219055,0.4983374774456024,-0.14721214771270752 +0.30000001192092896,24.34600257873535,6.593699932098389,7.980409622192383,0.4045194983482361,0.4656314551830292,-0.1287081390619278 +0.30000001192092896,24.34600257873535,6.454622745513916,7.890415668487549,0.2785254716873169,0.5255924463272095,-0.09632615000009537 +0.30000001192092896,24.55034065246582,6.500981330871582,7.890415668487549,0.31861451268196106,0.6128084659576416,-0.12408214807510376 +0.30000001192092896,24.41411590576172,6.500981330871582,7.800421237945557,0.5018784999847412,0.39476847648620605,-0.17034214735031128 +0.30000001192092896,24.34600257873535,6.500981330871582,8.025406837463379,0.26707151532173157,0.6128084659576416,-0.13796015083789825 diff --git a/results/Load 10 branch 1/results_CORE_duty40%_VHigh24.csv b/results/Load 10 branch 1/results_CORE_duty40%_VHigh24.csv new file mode 100644 index 0000000000000000000000000000000000000000..26fd43c4d247578c5c4f07bf8d07fbb53be22606 --- /dev/null +++ b/results/Load 10 branch 1/results_CORE_duty40%_VHigh24.csv @@ -0,0 +1,501 @@ +duty_cycle,Vhigh_value,V1_low_value,V2_low_value,Ihigh_value,I1_low_value,I2_low_value +0.10000000149011612,24.41411590576172,1.9577994346618652,3.2107274532318115,0.1639854907989502,0.07315945625305176,-0.11945614963769913 +0.20000000298023224,24.618453979492188,1.7723634243011475,2.9857423305511475,0.186893492937088,0.07861045002937317,-0.12408214807510376 +0.30000001192092896,24.209775924682617,4.553903102874756,5.415580749511719,0.35870349407196045,-0.024958552792668343,-0.14721214771270752 +0.4000000059604645,24.209775924682617,6.871853351593018,7.755424976348877,0.3529765009880066,0.013198448345065117,-0.08244814723730087 +0.4000000059604645,23.801097869873047,9.236162185668945,9.91528034210205,0.4904245138168335,0.20398345589637756,0.00544585008174181 +0.4000000059604645,24.14166259765625,8.818931579589844,10.185262680053711,0.49615147709846497,0.7817894816398621,-0.1888461410999298 +0.4000000059604645,24.073549270629883,8.77257251739502,10.095268249511719,0.5190595388412476,0.7545344829559326,-0.09170015156269073 +0.4000000059604645,23.93732452392578,8.818931579589844,10.3202543258667,0.4789704978466034,0.7545344829559326,-0.1148301437497139 +0.4000000059604645,23.801097869873047,8.726213455200195,10.095268249511719,0.47324350476264954,0.7109264731407166,-0.1888461410999298 +0.4000000059604645,24.14166259765625,8.77257251739502,10.140265464782715,0.43315452337265015,0.6891224980354309,-0.11020414531230927 +0.4000000059604645,24.209775924682617,8.818931579589844,10.230259895324707,0.4446084797382355,0.7054754495620728,-0.1888461410999298 +0.4000000059604645,24.00543785095215,8.865290641784668,10.230259895324707,0.4675165116786957,0.7163774967193604,-0.09632615000009537 +0.4000000059604645,24.073549270629883,8.77257251739502,10.230259895324707,0.49615147709846497,0.6564164757728577,-0.14721214771270752 +0.4000000059604645,24.34600257873535,8.726213455200195,10.230259895324707,0.47324350476264954,0.6564164757728577,-0.1009521484375 +0.4000000059604645,24.073549270629883,8.911649703979492,10.3202543258667,0.43315452337265015,0.6891224980354309,-0.09170015156269073 +0.4000000059604645,23.869211196899414,8.958008766174316,10.230259895324707,0.5247864723205566,0.7490835189819336,-0.1148301437497139 +0.4000000059604645,24.277889251708984,8.77257251739502,10.230259895324707,0.5648754835128784,0.6237104535102844,-0.23973214626312256 +0.4000000059604645,24.00543785095215,8.726213455200195,10.185262680053711,0.5476945042610168,0.7545344829559326,-0.08244814723730087 +0.4000000059604645,23.801097869873047,8.77257251739502,10.230259895324707,0.5247864723205566,0.7926914691925049,-0.09170015156269073 +0.4000000059604645,24.14166259765625,8.818931579589844,10.005274772644043,0.49615147709846497,0.8581034541130066,-0.05006615072488785 +0.4000000059604645,24.14166259765625,8.958008766174316,10.185262680053711,0.46178948879241943,0.6782204508781433,-0.14258615672588348 +0.4000000059604645,24.209775924682617,8.958008766174316,10.3202543258667,0.5018784999847412,0.6564164757728577,-0.12408214807510376 +0.4000000059604645,24.00543785095215,8.911649703979492,10.050271034240723,0.5534214973449707,0.743632435798645,-0.08244814723730087 +0.4000000059604645,24.277889251708984,8.726213455200195,10.095268249511719,0.5190595388412476,0.7272794842720032,-0.16571614146232605 +0.4000000059604645,24.41411590576172,8.911649703979492,10.050271034240723,0.541967511177063,0.776338517665863,-0.11945614963769913 +0.4000000059604645,24.277889251708984,8.958008766174316,10.275257110595703,0.4789704978466034,0.7109264731407166,-0.07782214879989624 +0.4000000059604645,24.34600257873535,8.865290641784668,10.185262680053711,0.46178948879241943,0.8253974318504333,-0.20735014975070953 +0.4000000059604645,24.41411590576172,8.77257251739502,9.91528034210205,0.48469752073287964,0.6782204508781433,-0.11945614963769913 +0.4000000059604645,24.618453979492188,9.004366874694824,10.410247802734375,0.48469752073287964,0.7218285202980042,-0.09632615000009537 +0.4000000059604645,24.41411590576172,8.911649703979492,10.140265464782715,0.541967511177063,0.7654364705085754,-0.09632615000009537 +0.4000000059604645,24.209775924682617,8.911649703979492,10.275257110595703,0.37015751004219055,0.6836714744567871,-0.16571614146232605 +0.4000000059604645,24.41411590576172,8.818931579589844,10.3202543258667,0.4675165116786957,0.7545344829559326,-0.16571614146232605 +0.4000000059604645,24.14166259765625,8.818931579589844,10.185262680053711,0.5247864723205566,0.6891224980354309,-0.07782214879989624 +0.4000000059604645,24.00543785095215,8.911649703979492,10.050271034240723,0.541967511177063,0.8417505025863647,-0.06394414603710175 +0.4000000059604645,24.073549270629883,8.77257251739502,10.410247802734375,0.5362404584884644,0.7545344829559326,-0.16109015047550201 +0.4000000059604645,24.14166259765625,8.818931579589844,10.230259895324707,0.4446084797382355,0.7272794842720032,-0.06857015192508698 +0.4000000059604645,24.277889251708984,8.679854393005371,10.3202543258667,0.5305134654045105,0.7708874344825745,-0.09632615000009537 +0.4000000059604645,24.00543785095215,8.679854393005371,10.230259895324707,0.5534214973449707,0.7872405052185059,-0.09632615000009537 +0.4000000059604645,24.277889251708984,8.77257251739502,10.3202543258667,0.4904245138168335,0.7817894816398621,-0.1009521484375 +0.4000000059604645,24.482229232788086,8.958008766174316,10.140265464782715,0.541967511177063,0.7599854469299316,-0.1148301437497139 +0.4000000059604645,24.00543785095215,8.865290641784668,10.275257110595703,0.5133325457572937,0.7545344829559326,-0.017684150487184525 +0.4000000059604645,24.209775924682617,8.818931579589844,10.185262680053711,0.5648754835128784,0.8417505025863647,-0.15183815360069275 +0.4000000059604645,24.34600257873535,8.911649703979492,10.185262680053711,0.4045194983482361,0.7327304482460022,-0.13796015083789825 +0.4000000059604645,24.209775924682617,8.911649703979492,10.230259895324707,0.4274275004863739,0.7872405052185059,-0.14721214771270752 +0.4000000059604645,24.14166259765625,8.818931579589844,10.140265464782715,0.49615147709846497,0.8090444803237915,-0.14721214771270752 +0.4000000059604645,24.00543785095215,8.726213455200195,10.185262680053711,0.5820565223693848,0.738181471824646,-0.1888461410999298 +0.4000000059604645,24.209775924682617,8.865290641784668,10.230259895324707,0.4159735143184662,0.7545344829559326,-0.19347214698791504 +0.4000000059604645,23.801097869873047,8.77257251739502,10.140265464782715,0.5018784999847412,0.7327304482460022,-0.12408214807510376 +0.4000000059604645,24.00543785095215,8.726213455200195,10.185262680053711,0.5018784999847412,0.7272794842720032,-0.22122815251350403 +0.4000000059604645,23.801097869873047,8.679854393005371,10.455245018005371,0.4388814866542816,0.738181471824646,-0.0870741531252861 +0.4000000059604645,24.00543785095215,8.958008766174316,10.3202543258667,0.46178948879241943,0.6945734620094299,-0.13333414494991302 +0.4000000059604645,24.00543785095215,8.818931579589844,10.140265464782715,0.5362404584884644,0.7872405052185059,-0.06857015192508698 +0.4000000059604645,24.14166259765625,8.865290641784668,10.275257110595703,0.5305134654045105,0.6618674993515015,-0.19347214698791504 +0.4000000059604645,24.073549270629883,8.865290641784668,10.230259895324707,0.5018784999847412,0.7817894816398621,-0.08244814723730087 +0.4000000059604645,24.277889251708984,8.911649703979492,10.095268249511719,0.4560624957084656,0.6509654521942139,-0.11945614963769913 +0.4000000059604645,24.209775924682617,8.865290641784668,10.185262680053711,0.46178948879241943,0.738181471824646,-0.022310150787234306 +0.4000000059604645,24.482229232788086,8.911649703979492,10.050271034240723,0.5305134654045105,0.738181471824646,-0.2027241587638855 +0.4000000059604645,24.277889251708984,8.818931579589844,10.275257110595703,0.41024649143218994,0.7654364705085754,-0.17959414422512054 +0.4000000059604645,24.55034065246582,8.911649703979492,10.140265464782715,0.43315452337265015,0.7872405052185059,-0.05006615072488785 +0.4000000059604645,24.482229232788086,8.77257251739502,10.095268249511719,0.5476945042610168,0.7872405052185059,-0.14258615672588348 +0.4000000059604645,24.209775924682617,8.633495330810547,10.095268249511719,0.48469752073287964,0.7490835189819336,-0.14721214771270752 +0.4000000059604645,24.55034065246582,8.818931579589844,10.3202543258667,0.5133325457572937,0.7599854469299316,-0.02693614922463894 +0.4000000059604645,24.00543785095215,8.77257251739502,10.230259895324707,0.4789704978466034,0.7163774967193604,-0.1888461410999298 +0.4000000059604645,24.00543785095215,8.726213455200195,10.050271034240723,0.4446084797382355,0.6945734620094299,-0.19347214698791504 +0.4000000059604645,24.073549270629883,8.865290641784668,10.230259895324707,0.5877835154533386,0.6891224980354309,-0.11945614963769913 +0.4000000059604645,24.00543785095215,8.77257251739502,10.230259895324707,0.4560624957084656,0.7981424331665039,-0.07319615036249161 +0.4000000059604645,24.14166259765625,8.726213455200195,10.185262680053711,0.4904245138168335,0.7218285202980042,-0.18422015011310577 +0.4000000059604645,24.14166259765625,8.77257251739502,10.140265464782715,0.4446084797382355,0.7272794842720032,-0.14721214771270752 +0.4000000059604645,24.209775924682617,8.865290641784668,10.230259895324707,0.5190595388412476,0.738181471824646,-0.09170015156269073 +0.4000000059604645,24.41411590576172,8.818931579589844,10.275257110595703,0.5935105085372925,0.743632435798645,-0.06857015192508698 +0.4000000059604645,24.277889251708984,8.865290641784668,10.275257110595703,0.5476945042610168,0.8417505025863647,-0.13796015083789825 +0.4000000059604645,24.686567306518555,8.911649703979492,10.140265464782715,0.5018784999847412,0.7708874344825745,-0.09170015156269073 +0.4000000059604645,24.55034065246582,8.818931579589844,10.275257110595703,0.4904245138168335,0.8308485150337219,-0.08244814723730087 +0.4000000059604645,23.93732452392578,8.726213455200195,10.140265464782715,0.47324350476264954,0.7599854469299316,-0.05469214916229248 +0.4000000059604645,24.34600257873535,8.865290641784668,10.185262680053711,0.6794155240058899,0.7000244855880737,-0.1009521484375 +0.4000000059604645,24.209775924682617,8.865290641784668,10.410247802734375,0.4904245138168335,0.8144955039024353,-0.08244814723730087 +0.4000000059604645,24.482229232788086,8.958008766174316,10.3202543258667,0.4446084797382355,0.7327304482460022,-0.022310150787234306 +0.4000000059604645,23.73298454284668,8.77257251739502,10.095268249511719,0.5877835154533386,0.743632435798645,-0.08244814723730087 +0.4000000059604645,24.00543785095215,8.679854393005371,10.185262680053711,0.48469752073287964,0.7545344829559326,-0.19809813797473907 +0.4000000059604645,23.801097869873047,8.865290641784668,10.230259895324707,0.4789704978466034,0.7163774967193604,-0.1009521484375 +0.4000000059604645,24.00543785095215,8.77257251739502,10.410247802734375,0.5133325457572937,0.8417505025863647,-0.09170015156269073 +0.4000000059604645,23.869211196899414,8.77257251739502,10.140265464782715,0.5534214973449707,0.7109264731407166,-0.15646414458751678 +0.4000000059604645,24.00543785095215,8.911649703979492,10.3202543258667,0.46178948879241943,0.6618674993515015,-0.14258615672588348 +0.4000000059604645,24.00543785095215,8.77257251739502,10.230259895324707,0.4904245138168335,0.7000244855880737,-0.05931815132498741 +0.4000000059604645,24.14166259765625,8.77257251739502,10.140265464782715,0.5133325457572937,0.7708874344825745,-0.10557814687490463 +0.4000000059604645,24.209775924682617,8.77257251739502,10.365250587463379,0.5648754835128784,0.7218285202980042,-0.14721214771270752 +0.4000000059604645,24.34600257873535,8.911649703979492,10.365250587463379,0.5534214973449707,0.6455144882202148,-0.07319615036249161 +0.4000000059604645,24.34600257873535,8.865290641784668,10.140265464782715,0.46178948879241943,0.8090444803237915,-0.09170015156269073 +0.4000000059604645,24.209775924682617,8.77257251739502,10.230259895324707,0.5706024765968323,0.7272794842720032,-0.15183815360069275 +0.4000000059604645,24.482229232788086,8.958008766174316,10.185262680053711,0.4560624957084656,0.6073575019836426,-0.07319615036249161 +0.4000000059604645,23.93732452392578,8.911649703979492,10.095268249511719,0.5247864723205566,0.743632435798645,-0.11945614963769913 +0.4000000059604645,24.277889251708984,8.911649703979492,10.185262680053711,0.645053505897522,0.7981424331665039,-0.06394414603710175 +0.4000000059604645,24.277889251708984,8.77257251739502,10.005274772644043,0.49615147709846497,0.7654364705085754,-0.13333414494991302 +0.4000000059604645,23.869211196899414,8.818931579589844,10.3202543258667,0.4675165116786957,0.7218285202980042,-0.13333414494991302 +0.4000000059604645,24.00543785095215,8.958008766174316,10.230259895324707,0.5706024765968323,0.7872405052185059,-0.14258615672588348 +0.4000000059604645,24.277889251708984,8.77257251739502,10.095268249511719,0.5247864723205566,0.836299479007721,-0.13333414494991302 +0.4000000059604645,24.209775924682617,8.679854393005371,10.095268249511719,0.5534214973449707,0.6727694869041443,-0.15183815360069275 +0.4000000059604645,24.14166259765625,8.865290641784668,10.3202543258667,0.5133325457572937,0.8199464678764343,-0.14258615672588348 +0.4000000059604645,24.277889251708984,8.865290641784668,10.140265464782715,0.5305134654045105,0.738181471824646,-0.14258615672588348 +0.4000000059604645,24.34600257873535,8.77257251739502,10.230259895324707,0.5133325457572937,0.6782204508781433,-0.1009521484375 +0.4000000059604645,24.209775924682617,8.726213455200195,10.275257110595703,0.6049644947052002,0.7000244855880737,-0.14721214771270752 +0.4000000059604645,24.482229232788086,8.865290641784668,10.185262680053711,0.39879247546195984,0.7327304482460022,-0.14258615672588348 +0.4000000059604645,24.55034065246582,8.865290641784668,10.185262680053711,0.4446084797382355,0.8417505025863647,-0.1287081390619278 +0.4000000059604645,24.482229232788086,8.726213455200195,10.3202543258667,0.5534214973449707,0.6237104535102844,-0.1287081390619278 +0.4000000059604645,24.618453979492188,8.958008766174316,10.3202543258667,0.5648754835128784,0.738181471824646,-0.1148301437497139 +0.4000000059604645,24.482229232788086,8.911649703979492,10.185262680053711,0.5362404584884644,0.7872405052185059,-0.05931815132498741 +0.4000000059604645,24.41411590576172,8.726213455200195,10.185262680053711,0.6335994601249695,0.8253974318504333,-0.09632615000009537 +0.4000000059604645,24.209775924682617,8.818931579589844,10.185262680053711,0.5648754835128784,0.634612500667572,-0.22585414350032806 +0.4000000059604645,24.34600257873535,8.865290641784668,10.365250587463379,0.4446084797382355,0.7872405052185059,-0.14721214771270752 +0.4000000059604645,23.93732452392578,8.77257251739502,10.275257110595703,0.541967511177063,0.7272794842720032,-0.07782214879989624 +0.4000000059604645,24.073549270629883,8.587136268615723,10.275257110595703,0.5076054930686951,0.7926914691925049,-0.15183815360069275 +0.4000000059604645,24.14166259765625,8.818931579589844,10.095268249511719,0.39879247546195984,0.7000244855880737,-0.14258615672588348 +0.4000000059604645,23.93732452392578,8.77257251739502,10.185262680053711,0.4904245138168335,0.7272794842720032,-0.2027241587638855 +0.4000000059604645,23.869211196899414,8.633495330810547,10.185262680053711,0.4904245138168335,0.8035935163497925,-0.12408214807510376 +0.4000000059604645,24.209775924682617,8.77257251739502,10.230259895324707,0.41024649143218994,0.6945734620094299,-0.14258615672588348 +0.4000000059604645,23.93732452392578,8.77257251739502,10.230259895324707,0.4560624957084656,0.7054754495620728,-0.15183815360069275 +0.4000000059604645,24.14166259765625,8.818931579589844,10.185262680053711,0.5190595388412476,0.7272794842720032,-0.1009521484375 +0.4000000059604645,24.41411590576172,8.818931579589844,10.275257110595703,0.5018784999847412,0.7327304482460022,-0.14258615672588348 +0.4000000059604645,24.34600257873535,8.679854393005371,10.275257110595703,0.49615147709846497,0.6891224980354309,-0.12408214807510376 +0.4000000059604645,24.34600257873535,8.77257251739502,10.230259895324707,0.48469752073287964,0.776338517665863,-0.017684150487184525 +0.4000000059604645,23.869211196899414,8.726213455200195,10.230259895324707,0.49615147709846497,0.836299479007721,-0.05469214916229248 +0.4000000059604645,24.209775924682617,8.726213455200195,10.185262680053711,0.5190595388412476,0.6455144882202148,-0.19347214698791504 +0.4000000059604645,24.209775924682617,8.958008766174316,10.230259895324707,0.5534214973449707,0.6618674993515015,-0.1148301437497139 +0.4000000059604645,24.209775924682617,8.77257251739502,10.230259895324707,0.5190595388412476,0.7218285202980042,-0.07782214879989624 +0.4000000059604645,24.277889251708984,8.818931579589844,10.140265464782715,0.5247864723205566,0.7708874344825745,-0.12408214807510376 +0.4000000059604645,23.93732452392578,8.958008766174316,10.3202543258667,0.5018784999847412,0.743632435798645,-0.1009521484375 +0.4000000059604645,24.073549270629883,9.050726890563965,10.230259895324707,0.3816114664077759,0.7109264731407166,-0.1148301437497139 +0.4000000059604645,24.277889251708984,8.911649703979492,10.230259895324707,0.3873384892940521,0.7872405052185059,-0.06394414603710175 +0.4000000059604645,24.209775924682617,8.865290641784668,10.050271034240723,0.5591484904289246,0.7545344829559326,-0.13333414494991302 +0.4000000059604645,24.209775924682617,8.911649703979492,10.3202543258667,0.46178948879241943,0.7490835189819336,-0.09632615000009537 +0.4000000059604645,24.277889251708984,8.958008766174316,10.275257110595703,0.4045194983482361,0.8144955039024353,-0.09632615000009537 +0.4000000059604645,24.41411590576172,8.818931579589844,10.140265464782715,0.4789704978466034,0.7327304482460022,-0.1148301437497139 +0.4000000059604645,24.34600257873535,8.726213455200195,10.140265464782715,0.5190595388412476,0.6727694869041443,-0.13333414494991302 +0.4000000059604645,24.34600257873535,8.679854393005371,10.410247802734375,0.35870349407196045,0.738181471824646,-0.14258615672588348 +0.4000000059604645,24.34600257873535,8.958008766174316,10.140265464782715,0.46178948879241943,0.6618674993515015,-0.08244814723730087 +0.4000000059604645,24.55034065246582,8.726213455200195,10.275257110595703,0.6507804989814758,0.6836714744567871,-0.12408214807510376 +0.4000000059604645,24.41411590576172,8.865290641784668,10.365250587463379,0.46178948879241943,0.6836714744567871,-0.13796015083789825 +0.4000000059604645,24.34600257873535,8.958008766174316,10.230259895324707,0.5018784999847412,0.7490835189819336,-0.15646414458751678 +0.4000000059604645,24.209775924682617,8.726213455200195,10.140265464782715,0.6106915473937988,0.7708874344825745,-0.09170015156269073 +0.4000000059604645,24.55034065246582,8.77257251739502,10.095268249511719,0.5305134654045105,0.6509654521942139,-0.15646414458751678 +0.4000000059604645,24.073549270629883,8.77257251739502,10.230259895324707,0.4904245138168335,0.6237104535102844,-0.0870741531252861 +0.4000000059604645,24.277889251708984,9.050726890563965,10.230259895324707,0.541967511177063,0.743632435798645,-0.11945614963769913 +0.4000000059604645,24.00543785095215,8.818931579589844,10.275257110595703,0.4274275004863739,0.8144955039024353,-0.07319615036249161 +0.4000000059604645,24.073549270629883,8.77257251739502,10.185262680053711,0.5877835154533386,0.776338517665863,-0.13796015083789825 +0.4000000059604645,24.14166259765625,8.818931579589844,10.230259895324707,0.5133325457572937,0.6836714744567871,-0.08244814723730087 +0.4000000059604645,23.93732452392578,8.958008766174316,10.230259895324707,0.4904245138168335,0.6564164757728577,-0.06857015192508698 +0.4000000059604645,23.869211196899414,8.726213455200195,10.185262680053711,0.5190595388412476,0.8199464678764343,-0.16109015047550201 +0.4000000059604645,24.277889251708984,8.818931579589844,10.140265464782715,0.4560624957084656,0.7654364705085754,-0.09170015156269073 +0.4000000059604645,24.073549270629883,8.818931579589844,10.365250587463379,0.3644304871559143,0.7163774967193604,-0.12408214807510376 +0.4000000059604645,24.277889251708984,8.679854393005371,10.185262680053711,0.5706024765968323,0.7981424331665039,-0.20735014975070953 +0.4000000059604645,24.209775924682617,8.587136268615723,10.050271034240723,0.49615147709846497,0.7054754495620728,-0.14258615672588348 +0.4000000059604645,24.277889251708984,8.679854393005371,10.230259895324707,0.49615147709846497,0.6891224980354309,-0.12408214807510376 +0.4000000059604645,24.073549270629883,8.818931579589844,10.185262680053711,0.5763295292854309,0.7163774967193604,-0.040814146399497986 +0.4000000059604645,24.209775924682617,8.818931579589844,10.185262680053711,0.5190595388412476,0.743632435798645,-0.14258615672588348 +0.4000000059604645,24.41411590576172,8.818931579589844,10.275257110595703,0.5305134654045105,0.6182594895362854,-0.1009521484375 +0.4000000059604645,24.00543785095215,8.865290641784668,10.185262680053711,0.49615147709846497,0.6945734620094299,-0.0870741531252861 +0.4000000059604645,23.869211196899414,8.818931579589844,10.230259895324707,0.5820565223693848,0.7490835189819336,-0.07319615036249161 +0.4000000059604645,24.209775924682617,8.818931579589844,10.365250587463379,0.5018784999847412,0.7599854469299316,-0.0870741531252861 +0.4000000059604645,24.209775924682617,8.818931579589844,10.140265464782715,0.5076054930686951,0.6836714744567871,-0.09170015156269073 +0.4000000059604645,24.14166259765625,8.911649703979492,10.230259895324707,0.4159735143184662,0.7545344829559326,-0.07319615036249161 +0.4000000059604645,24.073549270629883,8.818931579589844,10.185262680053711,0.4904245138168335,0.7872405052185059,-0.07782214879989624 +0.4000000059604645,24.209775924682617,8.633495330810547,10.3202543258667,0.49615147709846497,0.743632435798645,-0.1148301437497139 +0.4000000059604645,24.41411590576172,8.958008766174316,10.275257110595703,0.4675165116786957,0.776338517665863,-0.09170015156269073 +0.4000000059604645,24.073549270629883,8.865290641784668,10.230259895324707,0.43315452337265015,0.8199464678764343,-0.1009521484375 +0.4000000059604645,24.41411590576172,8.818931579589844,9.960277557373047,0.5476945042610168,0.7981424331665039,-0.13796015083789825 +0.4000000059604645,24.482229232788086,8.818931579589844,10.050271034240723,0.5018784999847412,0.743632435798645,-0.1009521484375 +0.4000000059604645,24.34600257873535,8.818931579589844,10.185262680053711,0.5018784999847412,0.7163774967193604,-0.1287081390619278 +0.4000000059604645,24.55034065246582,8.865290641784668,10.230259895324707,0.4446084797382355,0.836299479007721,-0.17034214735031128 +0.4000000059604645,24.00543785095215,8.679854393005371,10.095268249511719,0.4560624957084656,0.634612500667572,-0.09632615000009537 +0.4000000059604645,24.482229232788086,9.004366874694824,10.365250587463379,0.541967511177063,0.7490835189819336,-0.11945614963769913 +0.4000000059604645,24.209775924682617,8.818931579589844,10.3202543258667,0.5076054930686951,0.7654364705085754,-0.08244814723730087 +0.4000000059604645,24.073549270629883,8.911649703979492,10.275257110595703,0.4446084797382355,0.7926914691925049,-0.15183815360069275 +0.4000000059604645,24.209775924682617,8.633495330810547,10.230259895324707,0.5190595388412476,0.7872405052185059,-0.14258615672588348 +0.4000000059604645,24.277889251708984,8.911649703979492,10.3202543258667,0.5190595388412476,0.7817894816398621,-0.1148301437497139 +0.4000000059604645,24.277889251708984,8.818931579589844,10.095268249511719,0.42170050740242004,0.743632435798645,-0.05006615072488785 +0.4000000059604645,24.073549270629883,8.77257251739502,10.275257110595703,0.6221455335617065,0.7708874344825745,-0.04544014856219292 +0.4000000059604645,24.209775924682617,8.911649703979492,10.140265464782715,0.49615147709846497,0.7163774967193604,-0.1287081390619278 +0.4000000059604645,24.41411590576172,8.958008766174316,10.275257110595703,0.4446084797382355,0.7599854469299316,-0.0870741531252861 +0.4000000059604645,24.00543785095215,8.911649703979492,10.005274772644043,0.48469752073287964,0.7708874344825745,-0.040814146399497986 +0.4000000059604645,24.34600257873535,8.77257251739502,10.140265464782715,0.5362404584884644,0.776338517665863,-0.1009521484375 +0.4000000059604645,24.482229232788086,8.818931579589844,10.140265464782715,0.48469752073287964,0.6945734620094299,-0.10557814687490463 +0.4000000059604645,24.073549270629883,8.958008766174316,10.275257110595703,0.4904245138168335,0.8090444803237915,-0.008432149887084961 +0.4000000059604645,24.14166259765625,8.726213455200195,10.185262680053711,0.5305134654045105,0.885358452796936,-0.2027241587638855 +0.4000000059604645,24.073549270629883,8.726213455200195,10.230259895324707,0.4045194983482361,0.6673184633255005,-0.1287081390619278 +0.4000000059604645,24.277889251708984,8.726213455200195,10.275257110595703,0.3873384892940521,0.8035935163497925,-0.1009521484375 +0.4000000059604645,24.00543785095215,8.865290641784668,10.185262680053711,0.49615147709846497,0.7163774967193604,-0.1009521484375 +0.4000000059604645,23.801097869873047,8.77257251739502,10.185262680053711,0.39879247546195984,0.7327304482460022,-0.15183815360069275 +0.4000000059604645,23.93732452392578,8.77257251739502,10.275257110595703,0.4675165116786957,0.6509654521942139,-0.1148301437497139 +0.4000000059604645,23.93732452392578,8.726213455200195,10.365250587463379,0.4904245138168335,0.743632435798645,-0.0870741531252861 +0.4000000059604645,24.209775924682617,8.865290641784668,10.275257110595703,0.5476945042610168,0.7054754495620728,-0.09632615000009537 +0.4000000059604645,24.00543785095215,8.77257251739502,10.230259895324707,0.49615147709846497,0.7054754495620728,-0.2027241587638855 +0.4000000059604645,24.14166259765625,9.050726890563965,10.3202543258667,0.5190595388412476,0.6782204508781433,0.033201850950717926 +0.4000000059604645,24.209775924682617,8.818931579589844,10.185262680053711,0.5591484904289246,0.7872405052185059,-0.1009521484375 +0.4000000059604645,24.34600257873535,8.911649703979492,10.140265464782715,0.5476945042610168,0.7490835189819336,-0.16571614146232605 +0.4000000059604645,24.209775924682617,8.911649703979492,10.3202543258667,0.43315452337265015,0.738181471824646,-0.14721214771270752 +0.4000000059604645,24.209775924682617,8.77257251739502,10.050271034240723,0.5247864723205566,0.7327304482460022,-0.1148301437497139 +0.4000000059604645,24.41411590576172,8.865290641784668,10.095268249511719,0.5018784999847412,0.7272794842720032,-0.11020414531230927 +0.4000000059604645,24.277889251708984,8.77257251739502,10.275257110595703,0.4904245138168335,0.8090444803237915,-0.12408214807510376 +0.4000000059604645,24.00543785095215,8.77257251739502,10.230259895324707,0.4675165116786957,0.7054754495620728,-0.17959414422512054 +0.4000000059604645,24.209775924682617,8.77257251739502,10.275257110595703,0.5534214973449707,0.7926914691925049,-0.1287081390619278 +0.4000000059604645,24.277889251708984,8.911649703979492,10.230259895324707,0.541967511177063,0.7981424331665039,-0.15646414458751678 +0.4000000059604645,24.073549270629883,8.679854393005371,10.230259895324707,0.5247864723205566,0.7654364705085754,-0.1287081390619278 +0.4000000059604645,24.209775924682617,8.911649703979492,10.410247802734375,0.4789704978466034,0.7327304482460022,-0.11945614963769913 +0.4000000059604645,24.14166259765625,8.726213455200195,10.230259895324707,0.4446084797382355,0.6455144882202148,-0.05469214916229248 +0.4000000059604645,24.073549270629883,8.865290641784668,10.230259895324707,0.6106915473937988,0.7000244855880737,-0.1148301437497139 +0.4000000059604645,24.34600257873535,8.77257251739502,10.3202543258667,0.5648754835128784,0.6836714744567871,-0.16109015047550201 +0.4000000059604645,24.277889251708984,8.911649703979492,10.365250587463379,0.5877835154533386,0.7545344829559326,-0.11020414531230927 +0.4000000059604645,24.277889251708984,9.004366874694824,10.185262680053711,0.6221455335617065,0.7272794842720032,-0.11020414531230927 +0.4000000059604645,24.209775924682617,8.77257251739502,10.185262680053711,0.5247864723205566,0.6836714744567871,-0.15183815360069275 +0.4000000059604645,24.482229232788086,8.818931579589844,10.3202543258667,0.5935105085372925,0.738181471824646,-0.12408214807510376 +0.4000000059604645,24.482229232788086,8.818931579589844,10.230259895324707,0.42170050740242004,0.7654364705085754,-0.09170015156269073 +0.4000000059604645,24.34600257873535,8.865290641784668,10.230259895324707,0.5820565223693848,0.8635544776916504,-0.0870741531252861 +0.4000000059604645,24.482229232788086,8.818931579589844,10.3202543258667,0.5534214973449707,0.6564164757728577,-0.1009521484375 +0.4000000059604645,24.277889251708984,8.865290641784668,10.3202543258667,0.5133325457572937,0.7981424331665039,-0.04544014856219292 +0.4000000059604645,24.34600257873535,8.865290641784668,10.230259895324707,0.5076054930686951,0.738181471824646,-0.09170015156269073 +0.4000000059604645,24.073549270629883,8.77257251739502,10.050271034240723,0.5763295292854309,0.7708874344825745,-0.11945614963769913 +0.4000000059604645,24.209775924682617,8.865290641784668,10.140265464782715,0.4789704978466034,0.7054754495620728,-0.14258615672588348 +0.4000000059604645,24.00543785095215,8.865290641784668,10.095268249511719,0.4904245138168335,0.7272794842720032,-0.16109015047550201 +0.4000000059604645,23.869211196899414,8.911649703979492,10.3202543258667,0.3816114664077759,0.7545344829559326,-0.18422015011310577 +0.4000000059604645,24.00543785095215,8.587136268615723,10.185262680053711,0.41024649143218994,0.6237104535102844,-0.14258615672588348 +0.4000000059604645,23.93732452392578,8.818931579589844,10.230259895324707,0.5591484904289246,0.7272794842720032,-0.1009521484375 +0.4000000059604645,24.00543785095215,8.818931579589844,10.230259895324707,0.5133325457572937,0.7000244855880737,-0.05006615072488785 +0.4000000059604645,24.41411590576172,8.911649703979492,10.275257110595703,0.46178948879241943,0.7109264731407166,-0.17959414422512054 +0.4000000059604645,24.14166259765625,8.77257251739502,10.410247802734375,0.43315452337265015,0.743632435798645,-0.15646414458751678 +0.4000000059604645,24.34600257873535,9.004366874694824,10.275257110595703,0.49615147709846497,0.7599854469299316,-0.15183815360069275 +0.4000000059604645,24.277889251708984,8.911649703979492,10.275257110595703,0.5476945042610168,0.8144955039024353,-0.09632615000009537 +0.4000000059604645,24.277889251708984,8.77257251739502,10.365250587463379,0.4388814866542816,0.738181471824646,-0.15183815360069275 +0.4000000059604645,24.34600257873535,9.004366874694824,10.3202543258667,0.4159735143184662,0.7000244855880737,-0.10557814687490463 +0.4000000059604645,24.34600257873535,8.911649703979492,10.275257110595703,0.4274275004863739,0.7981424331665039,-0.04544014856219292 +0.4000000059604645,24.482229232788086,8.865290641784668,10.140265464782715,0.48469752073287964,0.7654364705085754,-0.1009521484375 +0.4000000059604645,24.073549270629883,8.726213455200195,10.140265464782715,0.5877835154533386,0.7163774967193604,-0.1148301437497139 +0.4000000059604645,24.14166259765625,8.77257251739502,10.230259895324707,0.5476945042610168,0.7654364705085754,-0.12408214807510376 +0.4000000059604645,24.34600257873535,8.726213455200195,10.140265464782715,0.46178948879241943,0.7708874344825745,-0.13333414494991302 +0.4000000059604645,24.00543785095215,8.587136268615723,10.095268249511719,0.49615147709846497,0.8144955039024353,-0.1287081390619278 +0.4000000059604645,24.00543785095215,8.726213455200195,10.095268249511719,0.5076054930686951,0.738181471824646,-0.17034214735031128 +0.4000000059604645,24.073549270629883,8.911649703979492,10.3202543258667,0.4503355026245117,0.738181471824646,-0.06394414603710175 +0.4000000059604645,24.209775924682617,8.818931579589844,10.095268249511719,0.3816114664077759,0.8308485150337219,-0.15646414458751678 +0.4000000059604645,24.277889251708984,8.77257251739502,10.095268249511719,0.6393264532089233,0.7000244855880737,-0.14721214771270752 +0.4000000059604645,24.073549270629883,8.958008766174316,10.455245018005371,0.5247864723205566,0.640063464641571,-0.15646414458751678 +0.4000000059604645,24.41411590576172,8.818931579589844,10.230259895324707,0.47324350476264954,0.7218285202980042,-0.1009521484375 +0.4000000059604645,24.686567306518555,8.726213455200195,10.140265464782715,0.5706024765968323,0.6782204508781433,-0.16571614146232605 +0.4000000059604645,24.482229232788086,8.77257251739502,10.365250587463379,0.48469752073287964,0.7545344829559326,-0.1148301437497139 +0.4000000059604645,24.754680633544922,8.818931579589844,10.365250587463379,0.39879247546195984,0.7000244855880737,-0.040814146399497986 +0.4000000059604645,24.277889251708984,8.77257251739502,10.185262680053711,0.6164185404777527,0.8308485150337219,-0.06394414603710175 +0.4000000059604645,24.41411590576172,8.818931579589844,10.365250587463379,0.5190595388412476,0.6945734620094299,-0.1009521484375 +0.4000000059604645,24.55034065246582,9.050726890563965,10.3202543258667,0.541967511177063,0.7054754495620728,-0.15183815360069275 +0.4000000059604645,24.209775924682617,9.004366874694824,10.365250587463379,0.4503355026245117,0.836299479007721,-0.05006615072488785 +0.4000000059604645,24.14166259765625,8.865290641784668,10.095268249511719,0.5018784999847412,0.7817894816398621,-0.06857015192508698 +0.4000000059604645,24.14166259765625,8.77257251739502,10.275257110595703,0.5820565223693848,0.7708874344825745,-0.14721214771270752 +0.4000000059604645,24.209775924682617,8.958008766174316,10.185262680053711,0.41024649143218994,0.7000244855880737,-0.12408214807510376 +0.4000000059604645,24.209775924682617,8.77257251739502,10.050271034240723,0.4789704978466034,0.738181471824646,-0.0870741531252861 +0.5,23.801097869873047,8.77257251739502,10.095268249511719,0.5190595388412476,0.7545344829559326,-0.16109015047550201 +0.5,24.277889251708984,11.5077543258667,12.525106430053711,0.7939555048942566,0.35116046667099,-0.05006615072488785 +0.5,23.93732452392578,11.461394309997559,12.525106430053711,0.6679614782333374,0.978025496006012,-0.1287081390619278 +0.5,24.14166259765625,11.044163703918457,12.34511947631836,0.6736884713172913,0.9889274835586548,-0.13796015083789825 +0.5,24.00543785095215,11.136881828308105,12.480109214782715,0.645053505897522,0.9235154986381531,-0.14721214771270752 +0.5,24.209775924682617,11.090522766113281,12.840085983276367,0.7023234963417053,0.9725744724273682,-0.15183815360069275 +0.5,24.209775924682617,11.275959014892578,12.705094337463379,0.645053505897522,0.9834765195846558,-0.1009521484375 +0.5,24.209775924682617,11.322317123413086,12.480109214782715,0.7653204798698425,0.9671234488487244,-0.14721214771270752 +0.5,24.34600257873535,11.275959014892578,12.795088768005371,0.6679614782333374,0.885358452796936,-0.14258615672588348 +0.5,24.073549270629883,11.322317123413086,12.615100860595703,0.6106915473937988,0.9344174861907959,-0.05931815132498741 +0.5,23.93732452392578,11.322317123413086,12.6600980758667,0.5992375016212463,0.9943785071372986,-0.05931815132498741 +0.5,24.55034065246582,11.183239936828613,12.6600980758667,0.7595934867858887,1.0434374809265137,-0.07319615036249161 +0.5,24.00543785095215,11.275959014892578,12.615100860595703,0.6393264532089233,0.8744564652442932,-0.13333414494991302 +0.5,23.869211196899414,11.368677139282227,12.750091552734375,0.7195045351982117,0.9725744724273682,-0.05931815132498741 +0.5,24.073549270629883,11.275959014892578,12.435111999511719,0.6908695101737976,1.037986397743225,-0.16109015047550201 +0.5,24.209775924682617,11.229599952697754,12.615100860595703,0.6622344851493835,0.9616724848747253,-0.1148301437497139 +0.5,24.34600257873535,11.229599952697754,12.525106430053711,0.6851425170898438,0.9180644750595093,-0.1009521484375 +0.5,24.073549270629883,11.229599952697754,12.615100860595703,0.7252315282821655,1.081594467163086,-0.07319615036249161 +0.5,24.209775924682617,11.183239936828613,12.570103645324707,0.6106915473937988,1.0870455503463745,-0.16109015047550201 +0.5,24.277889251708984,11.183239936828613,12.570103645324707,0.7710474729537964,0.9562215209007263,-0.17959414422512054 +0.5,24.482229232788086,11.275959014892578,12.750091552734375,0.645053505897522,0.9289664626121521,-0.07319615036249161 +0.5,24.482229232788086,11.136881828308105,12.390115737915039,0.6565074920654297,0.9834765195846558,-0.11020414531230927 +0.5,24.41411590576172,11.275959014892578,12.570103645324707,0.7252315282821655,0.9180644750595093,-0.14258615672588348 +0.5,24.482229232788086,11.229599952697754,12.615100860595703,0.5706024765968323,0.978025496006012,-0.16571614146232605 +0.5,24.41411590576172,11.183239936828613,12.705094337463379,0.645053505897522,0.879907488822937,-0.05469214916229248 +0.5,24.073549270629883,11.322317123413086,12.480109214782715,0.7023234963417053,1.0325355529785156,-0.07319615036249161 +0.5,24.34600257873535,11.275959014892578,12.615100860595703,0.7996824979782104,0.9398684501647949,-0.17959414422512054 +0.5,24.14166259765625,11.322317123413086,12.750091552734375,0.8111365437507629,0.9507704973220825,-0.11945614963769913 +0.5,24.073549270629883,11.229599952697754,12.705094337463379,0.776774525642395,1.0924965143203735,-0.15183815360069275 +0.5,24.14166259765625,11.136881828308105,12.525106430053711,0.7882285118103027,1.0488884449005127,-0.02693614922463894 +0.5,24.00543785095215,11.368677139282227,12.705094337463379,0.7538664937019348,0.9289664626121521,-0.0870741531252861 +0.5,24.41411590576172,11.322317123413086,12.615100860595703,0.6049644947052002,1.021633505821228,-0.1009521484375 +0.5,23.93732452392578,11.368677139282227,12.525106430053711,0.6278725266456604,1.0434374809265137,-0.03156214952468872 +0.5,24.00543785095215,11.183239936828613,12.525106430053711,0.7309585213661194,0.9616724848747253,-0.14258615672588348 +0.5,24.41411590576172,11.229599952697754,12.480109214782715,0.6106915473937988,1.037986397743225,-0.13796015083789825 +0.5,24.34600257873535,11.322317123413086,12.615100860595703,0.6736884713172913,0.9562215209007263,-0.0870741531252861 +0.5,24.277889251708984,11.136881828308105,12.615100860595703,0.6278725266456604,1.016182541847229,-0.17034214735031128 +0.5,24.073549270629883,11.090522766113281,12.435111999511719,0.6507804989814758,0.9453194737434387,-0.15183815360069275 +0.5,24.482229232788086,11.090522766113281,12.525106430053711,0.6278725266456604,1.0107314586639404,-0.11020414531230927 +0.5,24.073549270629883,11.229599952697754,12.570103645324707,0.645053505897522,1.0597904920578003,-0.09170015156269073 +0.5,24.073549270629883,11.368677139282227,12.435111999511719,0.7653204798698425,0.9889274835586548,-0.14258615672588348 +0.5,24.209775924682617,11.183239936828613,12.750091552734375,0.6794155240058899,0.9562215209007263,-0.17496813833713531 +0.5,24.209775924682617,11.275959014892578,12.615100860595703,0.7137775421142578,0.9453194737434387,-0.11020414531230927 +0.5,24.00543785095215,11.322317123413086,12.615100860595703,0.8512254953384399,1.0543395280838013,-0.1287081390619278 +0.5,24.00543785095215,11.044163703918457,12.750091552734375,0.7195045351982117,0.9725744724273682,-0.17034214735031128 +0.5,24.14166259765625,11.183239936828613,12.6600980758667,0.6622344851493835,0.8635544776916504,-0.2166021466255188 +0.5,24.41411590576172,11.275959014892578,12.750091552734375,0.6393264532089233,0.9344174861907959,-0.05006615072488785 +0.5,24.209775924682617,11.322317123413086,12.525106430053711,0.7195045351982117,1.081594467163086,-0.022310150787234306 +0.5,24.277889251708984,11.183239936828613,12.615100860595703,0.7653204798698425,1.0543395280838013,-0.1009521484375 +0.5,24.34600257873535,11.368677139282227,12.480109214782715,0.7023234963417053,0.9289664626121521,-0.07782214879989624 +0.4000000059604645,24.34600257873535,11.368677139282227,12.525106430053711,0.6965965032577515,1.0052804946899414,-0.1287081390619278 +0.4000000059604645,24.41411590576172,8.540777206420898,10.185262680053711,0.186893492937088,0.5801025032997131,-0.2027241587638855 +0.4000000059604645,24.41411590576172,8.818931579589844,10.050271034240723,0.49615147709846497,0.6727694869041443,-0.16571614146232605 +0.4000000059604645,24.55034065246582,8.865290641784668,10.185262680053711,0.5362404584884644,0.7708874344825745,-0.18422015011310577 +0.4000000059604645,24.209775924682617,8.77257251739502,10.3202543258667,0.48469752073287964,0.7708874344825745,-0.1009521484375 +0.4000000059604645,24.073549270629883,8.865290641784668,10.185262680053711,0.4446084797382355,0.6618674993515015,-0.17959414422512054 +0.4000000059604645,24.34600257873535,8.911649703979492,10.410247802734375,0.5133325457572937,0.6891224980354309,-0.14721214771270752 +0.4000000059604645,24.34600257873535,8.911649703979492,10.3202543258667,0.6106915473937988,0.8199464678764343,-0.09170015156269073 +0.4000000059604645,24.073549270629883,8.818931579589844,10.095268249511719,0.48469752073287964,0.7109264731407166,-0.13796015083789825 +0.4000000059604645,24.209775924682617,8.633495330810547,10.410247802734375,0.5935105085372925,0.7109264731407166,-0.23973214626312256 +0.4000000059604645,24.14166259765625,8.958008766174316,10.275257110595703,0.4503355026245117,0.6727694869041443,-0.1009521484375 +0.4000000059604645,24.41411590576172,8.911649703979492,10.230259895324707,0.5706024765968323,0.7817894816398621,-0.1009521484375 +0.4000000059604645,24.277889251708984,8.726213455200195,10.140265464782715,0.5247864723205566,0.7708874344825745,-0.11945614963769913 +0.4000000059604645,24.482229232788086,8.865290641784668,10.365250587463379,0.43315452337265015,0.6618674993515015,-0.1009521484375 +0.4000000059604645,24.618453979492188,8.818931579589844,10.140265464782715,0.41024649143218994,0.8035935163497925,-0.07319615036249161 +0.4000000059604645,24.00543785095215,8.911649703979492,10.095268249511719,0.48469752073287964,0.7545344829559326,-0.040814146399497986 +0.4000000059604645,24.34600257873535,8.726213455200195,10.275257110595703,0.5706024765968323,0.7490835189819336,-0.08244814723730087 +0.4000000059604645,24.34600257873535,8.911649703979492,10.275257110595703,0.42170050740242004,0.7000244855880737,-0.05931815132498741 +0.4000000059604645,24.209775924682617,8.865290641784668,10.185262680053711,0.4446084797382355,0.738181471824646,-0.07782214879989624 +0.4000000059604645,24.073549270629883,8.818931579589844,10.230259895324707,0.5992375016212463,0.8199464678764343,-0.15183815360069275 +0.4000000059604645,24.073549270629883,8.818931579589844,10.140265464782715,0.4503355026245117,0.7109264731407166,-0.15646414458751678 +0.4000000059604645,24.209775924682617,8.77257251739502,10.185262680053711,0.4560624957084656,0.6836714744567871,-0.20735014975070953 +0.4000000059604645,23.869211196899414,8.77257251739502,10.140265464782715,0.5133325457572937,0.8581034541130066,-0.17959414422512054 +0.4000000059604645,23.869211196899414,8.77257251739502,10.3202543258667,0.47324350476264954,0.6618674993515015,-0.17959414422512054 +0.4000000059604645,24.073549270629883,8.77257251739502,10.410247802734375,0.48469752073287964,0.7654364705085754,-0.1009521484375 +0.4000000059604645,23.869211196899414,8.865290641784668,10.140265464782715,0.5133325457572937,0.743632435798645,-0.0870741531252861 +0.4000000059604645,24.00543785095215,8.77257251739502,10.140265464782715,0.5018784999847412,0.7708874344825745,-0.09632615000009537 +0.4000000059604645,23.93732452392578,8.865290641784668,10.410247802734375,0.5763295292854309,0.7054754495620728,-0.2304801493883133 +0.4000000059604645,24.073549270629883,9.050726890563965,10.185262680053711,0.48469752073287964,0.6782204508781433,-0.11020414531230927 +0.4000000059604645,24.482229232788086,8.818931579589844,10.185262680053711,0.5763295292854309,0.8581034541130066,-0.08244814723730087 +0.4000000059604645,24.209775924682617,8.911649703979492,10.3202543258667,0.5133325457572937,0.8253974318504333,-0.09170015156269073 +0.4000000059604645,24.14166259765625,8.911649703979492,10.365250587463379,0.49615147709846497,0.7000244855880737,-0.0870741531252861 +0.4000000059604645,24.41411590576172,8.911649703979492,10.275257110595703,0.4446084797382355,0.8035935163497925,-0.11945614963769913 +0.4000000059604645,24.482229232788086,8.865290641784668,10.230259895324707,0.47324350476264954,0.738181471824646,-0.06394414603710175 +0.4000000059604645,24.482229232788086,8.726213455200195,10.095268249511719,0.4560624957084656,0.7272794842720032,-0.17496813833713531 +0.4000000059604645,24.00543785095215,8.726213455200195,10.140265464782715,0.3816114664077759,0.738181471824646,-0.12408214807510376 +0.4000000059604645,24.482229232788086,9.004366874694824,10.230259895324707,0.4446084797382355,0.7490835189819336,-0.07782214879989624 +0.4000000059604645,24.073549270629883,8.726213455200195,10.095268249511719,0.5133325457572937,0.7872405052185059,-0.2027241587638855 +0.4000000059604645,24.14166259765625,8.77257251739502,10.005274772644043,0.4388814866542816,0.738181471824646,-0.14258615672588348 +0.4000000059604645,24.34600257873535,8.958008766174316,10.095268249511719,0.4503355026245117,0.776338517665863,-0.15646414458751678 +0.4000000059604645,24.14166259765625,8.818931579589844,10.230259895324707,0.5018784999847412,0.7109264731407166,-0.05006615072488785 +0.4000000059604645,24.073549270629883,8.865290641784668,10.005274772644043,0.6221455335617065,0.6673184633255005,-0.1148301437497139 +0.4000000059604645,24.073549270629883,8.587136268615723,10.365250587463379,0.5133325457572937,0.743632435798645,-0.18422015011310577 +0.4000000059604645,24.277889251708984,8.818931579589844,10.3202543258667,0.46178948879241943,0.6727694869041443,-0.08244814723730087 +0.4000000059604645,24.34600257873535,8.818931579589844,10.3202543258667,0.5076054930686951,0.7981424331665039,-0.09170015156269073 +0.4000000059604645,24.00543785095215,8.818931579589844,10.230259895324707,0.49615147709846497,0.743632435798645,-0.19347214698791504 +0.4000000059604645,24.41411590576172,9.050726890563965,10.275257110595703,0.5190595388412476,0.7327304482460022,-0.07319615036249161 +0.4000000059604645,24.34600257873535,8.865290641784668,10.185262680053711,0.4503355026245117,0.7872405052185059,-0.07782214879989624 +0.4000000059604645,24.14166259765625,8.818931579589844,10.140265464782715,0.5133325457572937,0.7981424331665039,-0.1148301437497139 +0.4000000059604645,24.34600257873535,8.77257251739502,10.3202543258667,0.5133325457572937,0.7163774967193604,-0.15646414458751678 +0.4000000059604645,24.41411590576172,8.911649703979492,10.230259895324707,0.4675165116786957,0.7490835189819336,-0.14258615672588348 +0.4000000059604645,24.277889251708984,8.911649703979492,10.095268249511719,0.39879247546195984,0.8199464678764343,-0.05469214916229248 +0.4000000059604645,24.209775924682617,8.818931579589844,10.275257110595703,0.5018784999847412,0.7872405052185059,-0.14258615672588348 +0.4000000059604645,24.14166259765625,8.77257251739502,10.140265464782715,0.4274275004863739,0.7327304482460022,-0.1148301437497139 +0.4000000059604645,24.34600257873535,8.911649703979492,10.230259895324707,0.5476945042610168,0.7599854469299316,-0.1148301437497139 +0.4000000059604645,24.073549270629883,8.865290641784668,10.365250587463379,0.4274275004863739,0.7327304482460022,-0.15183815360069275 +0.4000000059604645,23.664871215820312,8.726213455200195,10.140265464782715,0.43315452337265015,0.738181471824646,-0.16571614146232605 +0.4000000059604645,24.073549270629883,8.911649703979492,10.275257110595703,0.5018784999847412,0.6945734620094299,-0.1148301437497139 +0.4000000059604645,23.869211196899414,8.911649703979492,10.3202543258667,0.43315452337265015,0.8035935163497925,-0.1009521484375 +0.4000000059604645,24.277889251708984,8.77257251739502,10.230259895324707,0.5076054930686951,0.6455144882202148,-0.15646414458751678 +0.4000000059604645,23.93732452392578,8.77257251739502,10.230259895324707,0.47324350476264954,0.6618674993515015,-0.1009521484375 +0.4000000059604645,24.209775924682617,9.004366874694824,10.230259895324707,0.5820565223693848,0.7327304482460022,-0.12408214807510376 +0.4000000059604645,24.209775924682617,8.865290641784668,10.3202543258667,0.4675165116786957,0.8744564652442932,-0.05006615072488785 +0.4000000059604645,24.00543785095215,8.726213455200195,10.275257110595703,0.4789704978466034,0.7327304482460022,-0.16109015047550201 +0.4000000059604645,24.41411590576172,9.004366874694824,10.275257110595703,0.5247864723205566,0.634612500667572,-0.08244814723730087 +0.4000000059604645,24.41411590576172,8.865290641784668,10.275257110595703,0.5877835154533386,0.836299479007721,-0.07319615036249161 +0.4000000059604645,24.482229232788086,8.911649703979492,10.140265464782715,0.541967511177063,0.8199464678764343,-0.09170015156269073 +0.4000000059604645,24.41411590576172,8.77257251739502,10.185262680053711,0.5648754835128784,0.738181471824646,-0.1009521484375 +0.4000000059604645,24.34600257873535,8.911649703979492,10.275257110595703,0.43315452337265015,0.743632435798645,-0.09632615000009537 +0.4000000059604645,24.55034065246582,8.865290641784668,10.185262680053711,0.3873384892940521,0.7327304482460022,-0.11945614963769913 +0.4000000059604645,24.14166259765625,8.726213455200195,10.230259895324707,0.6049644947052002,0.8090444803237915,-0.12408214807510376 +0.4000000059604645,23.869211196899414,8.865290641784668,10.230259895324707,0.4789704978466034,0.6673184633255005,-0.16571614146232605 +0.4000000059604645,24.34600257873535,8.958008766174316,10.230259895324707,0.4159735143184662,0.7109264731407166,-0.12408214807510376 +0.4000000059604645,24.277889251708984,8.865290641784668,10.230259895324707,0.49615147709846497,0.7872405052185059,-0.14258615672588348 +0.4000000059604645,23.869211196899414,8.679854393005371,10.005274772644043,0.41024649143218994,0.7054754495620728,-0.19809813797473907 +0.4000000059604645,24.34600257873535,8.77257251739502,10.365250587463379,0.46178948879241943,0.7327304482460022,-0.15646414458751678 +0.4000000059604645,23.93732452392578,8.77257251739502,10.230259895324707,0.48469752073287964,0.7654364705085754,-0.09632615000009537 +0.4000000059604645,24.277889251708984,8.818931579589844,10.275257110595703,0.5247864723205566,0.738181471824646,-0.16571614146232605 +0.4000000059604645,24.209775924682617,8.679854393005371,10.365250587463379,0.4789704978466034,0.6945734620094299,-0.09170015156269073 +0.4000000059604645,24.482229232788086,8.77257251739502,10.185262680053711,0.46178948879241943,0.7817894816398621,-0.03618814796209335 +0.4000000059604645,24.34600257873535,8.865290641784668,10.140265464782715,0.4904245138168335,0.7817894816398621,-0.11020414531230927 +0.4000000059604645,24.209775924682617,8.726213455200195,10.3202543258667,0.5877835154533386,0.776338517665863,-0.14258615672588348 +0.4000000059604645,24.482229232788086,9.004366874694824,10.275257110595703,0.5190595388412476,0.7000244855880737,-0.17496813833713531 +0.4000000059604645,24.482229232788086,8.865290641784668,10.185262680053711,0.5190595388412476,0.7654364705085754,-0.0870741531252861 +0.4000000059604645,24.14166259765625,8.77257251739502,10.185262680053711,0.5076054930686951,0.7490835189819336,-0.017684150487184525 +0.4000000059604645,24.482229232788086,8.77257251739502,10.185262680053711,0.5247864723205566,0.7163774967193604,-0.1148301437497139 +0.4000000059604645,24.073549270629883,8.865290641784668,10.3202543258667,0.4446084797382355,0.6618674993515015,-0.09170015156269073 +0.4000000059604645,24.41411590576172,8.911649703979492,10.230259895324707,0.5305134654045105,0.7708874344825745,-0.07782214879989624 +0.4000000059604645,23.869211196899414,8.77257251739502,10.005274772644043,0.4274275004863739,0.7981424331665039,-0.18422015011310577 +0.4000000059604645,24.073549270629883,8.679854393005371,10.050271034240723,0.5076054930686951,0.6509654521942139,-0.17034214735031128 +0.4000000059604645,24.14166259765625,8.818931579589844,10.275257110595703,0.41024649143218994,0.7545344829559326,-0.08244814723730087 +0.4000000059604645,24.00543785095215,8.726213455200195,10.230259895324707,0.48469752073287964,0.7654364705085754,-0.17034214735031128 +0.4000000059604645,23.93732452392578,8.865290641784668,10.050271034240723,0.5591484904289246,0.6673184633255005,-0.14258615672588348 +0.4000000059604645,23.869211196899414,8.540777206420898,10.230259895324707,0.5648754835128784,0.6455144882202148,-0.09170015156269073 +0.4000000059604645,23.93732452392578,8.77257251739502,10.275257110595703,0.5076054930686951,0.7109264731407166,-0.08244814723730087 +0.4000000059604645,24.00543785095215,8.818931579589844,10.275257110595703,0.3816114664077759,0.6945734620094299,-0.17959414422512054 +0.4000000059604645,24.00543785095215,8.958008766174316,10.095268249511719,0.5362404584884644,0.6455144882202148,-0.09632615000009537 +0.4000000059604645,24.41411590576172,8.911649703979492,10.185262680053711,0.5534214973449707,0.7654364705085754,-0.11020414531230927 +0.4000000059604645,24.14166259765625,8.911649703979492,10.095268249511719,0.4789704978466034,0.8144955039024353,-0.1148301437497139 +0.4000000059604645,24.41411590576172,8.679854393005371,10.185262680053711,0.49615147709846497,0.8144955039024353,-0.09170015156269073 +0.4000000059604645,24.209775924682617,8.911649703979492,10.230259895324707,0.5648754835128784,0.6237104535102844,-0.14721214771270752 +0.4000000059604645,24.482229232788086,8.865290641784668,10.095268249511719,0.42170050740242004,0.7218285202980042,-0.08244814723730087 +0.4000000059604645,24.277889251708984,9.004366874694824,10.140265464782715,0.5076054930686951,0.836299479007721,-0.14258615672588348 +0.4000000059604645,24.618453979492188,8.911649703979492,10.005274772644043,0.5648754835128784,0.7926914691925049,-0.17496813833713531 +0.4000000059604645,24.00543785095215,9.050726890563965,10.230259895324707,0.5076054930686951,0.7490835189819336,-0.11945614963769913 +0.4000000059604645,24.277889251708984,8.911649703979492,10.365250587463379,0.4789704978466034,0.7490835189819336,-0.14721214771270752 +0.4000000059604645,24.00543785095215,8.911649703979492,10.140265464782715,0.5534214973449707,0.7327304482460022,-0.17034214735031128 +0.4000000059604645,24.073549270629883,8.77257251739502,10.140265464782715,0.5706024765968323,0.7327304482460022,-0.19347214698791504 +0.4000000059604645,24.209775924682617,8.865290641784668,10.275257110595703,0.3873384892940521,0.738181471824646,-0.08244814723730087 +0.4000000059604645,24.073549270629883,8.818931579589844,10.050271034240723,0.5076054930686951,0.6891224980354309,-0.12408214807510376 +0.4000000059604645,24.34600257873535,8.726213455200195,10.185262680053711,0.5534214973449707,0.6455144882202148,-0.14258615672588348 +0.4000000059604645,24.34600257873535,8.77257251739502,10.275257110595703,0.5305134654045105,0.6782204508781433,-0.14258615672588348 +0.4000000059604645,24.34600257873535,8.77257251739502,10.230259895324707,0.4045194983482361,0.6455144882202148,-0.03618814796209335 +0.4000000059604645,24.618453979492188,8.726213455200195,10.275257110595703,0.4904245138168335,0.7872405052185059,-0.06394414603710175 +0.4000000059604645,24.41411590576172,8.865290641784668,10.3202543258667,0.42170050740242004,0.6945734620094299,-0.19809813797473907 +0.4000000059604645,24.41411590576172,8.865290641784668,10.410247802734375,0.46178948879241943,0.738181471824646,-0.1009521484375 +0.4000000059604645,24.277889251708984,9.004366874694824,10.095268249511719,0.4560624957084656,0.7981424331665039,-0.14258615672588348 +0.4000000059604645,24.41411590576172,8.77257251739502,10.3202543258667,0.541967511177063,0.7872405052185059,-0.09170015156269073 +0.4000000059604645,24.34600257873535,8.818931579589844,10.230259895324707,0.5305134654045105,0.7054754495620728,-0.07782214879989624 +0.4000000059604645,24.073549270629883,8.958008766174316,10.185262680053711,0.4560624957084656,0.7490835189819336,-0.09632615000009537 +0.4000000059604645,24.34600257873535,8.865290641784668,10.050271034240723,0.4675165116786957,0.7708874344825745,-0.13796015083789825 +0.4000000059604645,24.209775924682617,8.865290641784668,10.365250587463379,0.46178948879241943,0.8526524901390076,-0.13333414494991302 +0.4000000059604645,24.073549270629883,8.958008766174316,10.140265464782715,0.46178948879241943,0.7109264731407166,-0.040814146399497986 +0.4000000059604645,23.869211196899414,8.958008766174316,10.3202543258667,0.5305134654045105,0.6836714744567871,-0.07319615036249161 +0.4000000059604645,24.00543785095215,8.818931579589844,10.275257110595703,0.46178948879241943,0.7218285202980042,-0.15183815360069275 +0.4000000059604645,23.869211196899414,8.77257251739502,10.185262680053711,0.4675165116786957,0.634612500667572,-0.15646414458751678 +0.4000000059604645,23.93732452392578,8.818931579589844,10.095268249511719,0.4560624957084656,0.7109264731407166,-0.09170015156269073 +0.4000000059604645,23.801097869873047,8.77257251739502,10.095268249511719,0.43315452337265015,0.7545344829559326,-0.11020414531230927 +0.4000000059604645,24.34600257873535,8.726213455200195,10.095268249511719,0.48469752073287964,0.7654364705085754,-0.19347214698791504 +0.4000000059604645,23.93732452392578,8.679854393005371,10.3202543258667,0.5476945042610168,0.6727694869041443,-0.14258615672588348 +0.4000000059604645,24.073549270629883,8.679854393005371,10.140265464782715,0.41024649143218994,0.6836714744567871,-0.03618814796209335 +0.4000000059604645,24.073549270629883,8.726213455200195,10.275257110595703,0.4904245138168335,0.8472014665603638,-0.09170015156269073 +0.4000000059604645,23.93732452392578,8.818931579589844,10.230259895324707,0.5534214973449707,0.7163774967193604,-0.15183815360069275 +0.4000000059604645,24.277889251708984,8.865290641784668,10.365250587463379,0.48469752073287964,0.6564164757728577,-0.11020414531230927 +0.4000000059604645,24.073549270629883,8.818931579589844,10.365250587463379,0.49615147709846497,0.8090444803237915,-0.11945614963769913 +0.4000000059604645,24.34600257873535,8.818931579589844,10.095268249511719,0.5476945042610168,0.8144955039024353,-0.05469214916229248 +0.4000000059604645,24.41411590576172,8.818931579589844,10.230259895324707,0.5362404584884644,0.7981424331665039,-0.13796015083789825 +0.4000000059604645,24.277889251708984,9.050726890563965,10.3202543258667,0.46178948879241943,0.7054754495620728,-0.11945614963769913 +0.4000000059604645,24.34600257873535,8.958008766174316,10.230259895324707,0.46178948879241943,0.7708874344825745,-0.09632615000009537 +0.4000000059604645,24.14166259765625,8.679854393005371,10.050271034240723,0.5076054930686951,0.7708874344825745,-0.16571614146232605 +0.4000000059604645,24.277889251708984,8.77257251739502,10.140265464782715,0.4045194983482361,0.776338517665863,-0.13796015083789825 +0.4000000059604645,24.55034065246582,8.911649703979492,10.275257110595703,0.34724947810173035,0.7109264731407166,-0.1287081390619278 +0.4000000059604645,24.209775924682617,8.818931579589844,10.3202543258667,0.4675165116786957,0.6945734620094299,-0.09632615000009537 +0.4000000059604645,23.869211196899414,8.726213455200195,10.050271034240723,0.4904245138168335,0.6945734620094299,-0.22585414350032806 +0.4000000059604645,24.34600257873535,8.679854393005371,10.275257110595703,0.46178948879241943,0.6673184633255005,-0.16109015047550201 +0.4000000059604645,24.00543785095215,8.911649703979492,10.230259895324707,0.4159735143184662,0.8090444803237915,-0.07319615036249161 +0.4000000059604645,24.209775924682617,8.726213455200195,10.275257110595703,0.5476945042610168,0.738181471824646,-0.17034214735031128 +0.4000000059604645,24.00543785095215,8.679854393005371,10.275257110595703,0.5591484904289246,0.743632435798645,-0.18422015011310577 +0.4000000059604645,24.34600257873535,8.633495330810547,10.275257110595703,0.48469752073287964,0.6237104535102844,-0.06394414603710175 +0.4000000059604645,24.482229232788086,8.77257251739502,10.230259895324707,0.48469752073287964,0.7545344829559326,-0.040814146399497986 +0.4000000059604645,24.277889251708984,8.726213455200195,10.275257110595703,0.5648754835128784,0.8144955039024353,-0.1009521484375 +0.4000000059604645,24.41411590576172,8.865290641784668,10.230259895324707,0.5190595388412476,0.6836714744567871,-0.09632615000009537 +0.4000000059604645,24.277889251708984,8.911649703979492,10.185262680053711,0.5591484904289246,0.7490835189819336,-0.1148301437497139 +0.4000000059604645,24.073549270629883,8.77257251739502,10.050271034240723,0.5133325457572937,0.776338517665863,-0.05469214916229248 +0.4000000059604645,24.34600257873535,8.77257251739502,10.185262680053711,0.541967511177063,0.7599854469299316,-0.16571614146232605 +0.4000000059604645,24.209775924682617,8.911649703979492,10.140265464782715,0.4560624957084656,0.6891224980354309,-0.14258615672588348 +0.4000000059604645,24.34600257873535,9.004366874694824,10.365250587463379,0.47324350476264954,0.7490835189819336,-0.05931815132498741 +0.4000000059604645,24.073549270629883,8.818931579589844,10.185262680053711,0.5190595388412476,0.7490835189819336,-0.1287081390619278 +0.4000000059604645,24.14166259765625,8.818931579589844,10.185262680053711,0.4904245138168335,0.6836714744567871,-0.16109015047550201 +0.4000000059604645,23.801097869873047,8.77257251739502,10.275257110595703,0.4904245138168335,0.743632435798645,-0.15183815360069275 +0.4000000059604645,24.00543785095215,8.818931579589844,10.185262680053711,0.5018784999847412,0.8090444803237915,-0.15183815360069275 +0.4000000059604645,23.73298454284668,8.633495330810547,10.230259895324707,0.5534214973449707,0.6891224980354309,-0.17034214735031128 +0.4000000059604645,24.073549270629883,8.77257251739502,10.3202543258667,0.4789704978466034,0.7054754495620728,-0.07782214879989624 +0.4000000059604645,24.073549270629883,8.818931579589844,10.365250587463379,0.5534214973449707,0.7327304482460022,-0.1009521484375 +0.4000000059604645,24.14166259765625,8.679854393005371,10.275257110595703,0.5534214973449707,0.7981424331665039,-0.14258615672588348 +0.4000000059604645,24.14166259765625,8.865290641784668,10.365250587463379,0.4388814866542816,0.7490835189819336,-0.11020414531230927 +0.4000000059604645,24.277889251708984,8.911649703979492,10.140265464782715,0.4446084797382355,0.6945734620094299,-0.07319615036249161 +0.4000000059604645,24.14166259765625,8.77257251739502,10.095268249511719,0.5591484904289246,0.7218285202980042,-0.05469214916229248 +0.4000000059604645,24.482229232788086,8.911649703979492,10.230259895324707,0.4789704978466034,0.7926914691925049,-0.11945614963769913 +0.4000000059604645,24.41411590576172,9.004366874694824,10.230259895324707,0.49615147709846497,0.6891224980354309,-0.14721214771270752 +0.4000000059604645,24.14166259765625,8.911649703979492,10.230259895324707,0.5591484904289246,0.743632435798645,-0.06394414603710175 +0.4000000059604645,24.277889251708984,8.865290641784668,10.185262680053711,0.43315452337265015,0.8035935163497925,-0.15183815360069275 +0.4000000059604645,24.482229232788086,8.818931579589844,10.140265464782715,0.5133325457572937,0.776338517665863,-0.16571614146232605 +0.4000000059604645,24.00543785095215,8.726213455200195,10.275257110595703,0.4904245138168335,0.7545344829559326,-0.13796015083789825 +0.4000000059604645,24.34600257873535,8.911649703979492,10.3202543258667,0.5247864723205566,0.7545344829559326,-0.20735014975070953 +0.4000000059604645,24.073549270629883,8.726213455200195,10.275257110595703,0.5591484904289246,0.8035935163497925,-0.2166021466255188 +0.4000000059604645,24.209775924682617,8.679854393005371,10.140265464782715,0.5476945042610168,0.6618674993515015,-0.14258615672588348 +0.4000000059604645,24.073549270629883,8.865290641784668,10.365250587463379,0.4904245138168335,0.6945734620094299,-0.1287081390619278 +0.4000000059604645,24.14166259765625,8.726213455200195,10.275257110595703,0.43315452337265015,0.8090444803237915,-0.12408214807510376 +0.4000000059604645,24.482229232788086,8.679854393005371,10.230259895324707,0.6049644947052002,0.6455144882202148,-0.17496813833713531 +0.4000000059604645,24.277889251708984,8.77257251739502,10.275257110595703,0.5648754835128784,0.7218285202980042,-0.15183815360069275 +0.4000000059604645,24.209775924682617,8.865290641784668,10.185262680053711,0.49615147709846497,0.7490835189819336,-0.04544014856219292 +0.4000000059604645,24.41411590576172,8.818931579589844,10.230259895324707,0.41024649143218994,0.7599854469299316,-0.13796015083789825 +0.4000000059604645,24.073549270629883,8.865290641784668,10.3202543258667,0.48469752073287964,0.738181471824646,-0.1287081390619278 +0.4000000059604645,24.482229232788086,8.77257251739502,10.230259895324707,0.4159735143184662,0.6945734620094299,-0.15646414458751678 +0.4000000059604645,24.41411590576172,8.865290641784668,10.275257110595703,0.4904245138168335,0.7545344829559326,-0.1009521484375 +0.4000000059604645,24.34600257873535,8.77257251739502,10.185262680053711,0.48469752073287964,0.8308485150337219,-0.040814146399497986 +0.4000000059604645,24.618453979492188,8.865290641784668,10.275257110595703,0.5190595388412476,0.7218285202980042,-0.1148301437497139 +0.4000000059604645,24.34600257873535,8.818931579589844,10.230259895324707,0.4560624957084656,0.8035935163497925,-0.14258615672588348 +0.4000000059604645,24.14166259765625,8.958008766174316,10.275257110595703,0.5820565223693848,0.7654364705085754,-0.13333414494991302 +0.4000000059604645,24.073549270629883,8.679854393005371,10.005274772644043,0.4045194983482361,0.7872405052185059,-0.12408214807510376 +0.4000000059604645,24.277889251708984,8.77257251739502,10.185262680053711,0.4904245138168335,0.7054754495620728,-0.12408214807510376 +0.4000000059604645,24.073549270629883,8.958008766174316,10.3202543258667,0.5763295292854309,0.7327304482460022,-0.13333414494991302 +0.4000000059604645,24.00543785095215,8.679854393005371,10.185262680053711,0.4388814866542816,0.7327304482460022,-0.20735014975070953 +0.4000000059604645,23.93732452392578,8.865290641784668,10.050271034240723,0.43315452337265015,0.7654364705085754,-0.15183815360069275 +0.4000000059604645,24.14166259765625,8.679854393005371,10.365250587463379,0.5362404584884644,0.7872405052185059,-0.1148301437497139 +0.4000000059604645,24.00543785095215,8.865290641784668,10.365250587463379,0.4388814866542816,0.7545344829559326,-0.0870741531252861 +0.4000000059604645,24.41411590576172,8.77257251739502,10.140265464782715,0.49615147709846497,0.743632435798645,-0.19809813797473907 +0.4000000059604645,24.073549270629883,8.679854393005371,10.275257110595703,0.4789704978466034,0.738181471824646,-0.17959414422512054 diff --git a/results/Load 10 branch 1/results_CORE_duty50%_VHigh24.csv b/results/Load 10 branch 1/results_CORE_duty50%_VHigh24.csv new file mode 100644 index 0000000000000000000000000000000000000000..b7ebda17fec61f88723dde43a5321dbc846d9e3b --- /dev/null +++ b/results/Load 10 branch 1/results_CORE_duty50%_VHigh24.csv @@ -0,0 +1,501 @@ +duty_cycle,Vhigh_value,V1_low_value,V2_low_value,Ihigh_value,I1_low_value,I2_low_value +0.10000000149011612,24.41411590576172,1.9577994346618652,2.9857423305511475,0.2155284881591797,0.11676745861768723,-0.09170015156269073 +0.20000000298023224,24.55034065246582,1.8650814294815063,2.9857423305511475,0.3014335036277771,0.12221845239400864,-0.22122815251350403 +0.30000001192092896,24.41411590576172,4.553903102874756,5.280589580535889,0.23270948231220245,-0.12852755188941956,-0.14258615672588348 +0.4000000059604645,24.34600257873535,7.01093053817749,7.845418453216553,0.4045194983482361,-0.03040955401957035,-0.11945614963769913 +0.5,24.41411590576172,9.467958450317383,10.230259895324707,0.49615147709846497,0.13312044739723206,-0.06394414603710175 +0.5,24.073549270629883,11.554112434387207,12.480109214782715,0.8512254953384399,0.24759146571159363,-0.1009521484375 +0.5,24.277889251708984,11.275959014892578,12.615100860595703,0.7996824979782104,0.8417505025863647,-0.13796015083789825 +0.5,24.00543785095215,11.136881828308105,12.300122261047363,0.5877835154533386,0.9235154986381531,-0.13333414494991302 +0.5,24.209775924682617,11.275959014892578,12.435111999511719,0.7882285118103027,1.0107314586639404,-0.12408214807510376 +0.5,24.073549270629883,11.090522766113281,12.480109214782715,0.6908695101737976,0.9889274835586548,-0.1287081390619278 +0.5,24.073549270629883,11.322317123413086,12.525106430053711,0.5706024765968323,0.9834765195846558,-0.03156214952468872 +0.5,24.14166259765625,11.229599952697754,12.525106430053711,0.8397715091705322,1.021633505821228,-0.09170015156269073 +0.5,24.00543785095215,11.090522766113281,12.615100860595703,0.7366855144500732,1.016182541847229,-0.09170015156269073 +0.5,24.482229232788086,11.368677139282227,12.615100860595703,0.7424125075340271,0.9071624875068665,-0.15646414458751678 +0.5,24.41411590576172,11.275959014892578,12.615100860595703,0.6393264532089233,1.0107314586639404,-0.06394414603710175 +0.5,24.00543785095215,11.41503620147705,12.6600980758667,0.7309585213661194,0.9998294711112976,-0.03618814796209335 +0.5,24.482229232788086,11.229599952697754,12.570103645324707,0.7825015187263489,1.027084469795227,-0.15183815360069275 +0.5,24.34600257873535,11.41503620147705,12.6600980758667,0.6736884713172913,0.978025496006012,-0.04544014856219292 +0.5,24.34600257873535,11.322317123413086,12.6600980758667,0.6851425170898438,0.9834765195846558,-0.1009521484375 +0.5,24.277889251708984,11.275959014892578,12.615100860595703,0.748139500617981,1.0597904920578003,-0.16109015047550201 +0.5,23.93732452392578,11.275959014892578,12.525106430053711,0.6622344851493835,0.9289664626121521,-0.16109015047550201 +0.5,24.073549270629883,11.322317123413086,12.750091552734375,0.6565074920654297,0.9398684501647949,-0.14258615672588348 +0.5,23.93732452392578,11.229599952697754,12.615100860595703,0.7195045351982117,0.9289664626121521,-0.15646414458751678 +0.5,24.00543785095215,11.136881828308105,12.705094337463379,0.708050549030304,0.9344174861907959,-0.15183815360069275 +0.5,24.00543785095215,11.183239936828613,12.615100860595703,0.6507804989814758,0.9453194737434387,-0.12408214807510376 +0.5,23.93732452392578,11.368677139282227,12.6600980758667,0.748139500617981,0.9017114639282227,-0.06857015192508698 +0.5,24.00543785095215,11.275959014892578,12.615100860595703,0.8054094910621643,0.9834765195846558,-0.05006615072488785 +0.5,24.209775924682617,11.275959014892578,12.525106430053711,0.7882285118103027,1.081594467163086,-0.17959414422512054 +0.5,24.14166259765625,11.229599952697754,12.570103645324707,0.7309585213661194,0.9180644750595093,-0.07319615036249161 +0.5,24.209775924682617,11.322317123413086,12.615100860595703,0.6393264532089233,0.9998294711112976,-0.05469214916229248 +0.5,24.277889251708984,11.183239936828613,12.525106430053711,0.776774525642395,1.016182541847229,-0.03618814796209335 +0.5,24.209775924682617,11.275959014892578,12.615100860595703,0.6794155240058899,1.0052804946899414,-0.11945614963769913 +0.5,24.073549270629883,11.275959014892578,12.615100860595703,0.5992375016212463,1.0052804946899414,-0.12408214807510376 +0.5,24.34600257873535,11.322317123413086,12.6600980758667,0.645053505897522,1.016182541847229,-0.040814146399497986 +0.5,24.00543785095215,11.044163703918457,12.480109214782715,0.645053505897522,1.0052804946899414,-0.1009521484375 +0.5,24.00543785095215,11.275959014892578,12.435111999511719,0.6851425170898438,1.0052804946899414,-0.14258615672588348 +0.5,24.00543785095215,11.41503620147705,12.570103645324707,0.776774525642395,0.9943785071372986,-0.15183815360069275 +0.5,24.073549270629883,11.229599952697754,12.6600980758667,0.6335994601249695,1.027084469795227,-0.14258615672588348 +0.5,24.00543785095215,11.183239936828613,12.435111999511719,0.6908695101737976,0.9344174861907959,-0.14258615672588348 +0.5,24.209775924682617,11.183239936828613,12.795088768005371,0.645053505897522,0.9398684501647949,-0.1009521484375 +0.5,24.41411590576172,11.183239936828613,12.390115737915039,0.7366855144500732,0.9725744724273682,-0.09170015156269073 +0.5,24.14166259765625,11.183239936828613,12.6600980758667,0.6393264532089233,0.9943785071372986,-0.14721214771270752 +0.5,24.41411590576172,11.183239936828613,12.6600980758667,0.7366855144500732,0.8962604999542236,-0.14258615672588348 +0.5,24.55034065246582,11.229599952697754,12.750091552734375,0.7366855144500732,0.9616724848747253,-0.1287081390619278 +0.5,24.618453979492188,11.229599952697754,12.750091552734375,0.7653204798698425,1.0597904920578003,-0.04544014856219292 +0.5,24.482229232788086,11.183239936828613,12.750091552734375,0.7366855144500732,1.037986397743225,-0.07319615036249161 +0.5,24.209775924682617,11.322317123413086,12.750091552734375,0.7195045351982117,0.9453194737434387,-0.17034214735031128 +0.5,24.34600257873535,11.41503620147705,12.6600980758667,0.7309585213661194,1.0434374809265137,-0.04544014856219292 +0.5,24.00543785095215,11.368677139282227,12.525106430053711,0.5820565223693848,1.0052804946899414,-0.09170015156269073 +0.5,23.73298454284668,11.322317123413086,12.480109214782715,0.6908695101737976,1.0543395280838013,-0.14721214771270752 +0.5,24.14166259765625,11.368677139282227,12.570103645324707,0.6393264532089233,0.9616724848747253,-0.08244814723730087 +0.5,23.93732452392578,11.275959014892578,12.705094337463379,0.6908695101737976,1.0052804946899414,-0.17034214735031128 +0.5,23.73298454284668,11.183239936828613,12.750091552734375,0.8225905299186707,1.027084469795227,-0.19347214698791504 +0.5,24.34600257873535,10.997804641723633,12.435111999511719,0.6507804989814758,0.8690055012702942,-0.1287081390619278 +0.5,24.00543785095215,11.275959014892578,12.750091552734375,0.6965965032577515,0.9235154986381531,-0.16109015047550201 +0.5,24.073549270629883,11.229599952697754,12.615100860595703,0.7309585213661194,1.027084469795227,-0.017684150487184525 +0.5,24.41411590576172,11.183239936828613,12.570103645324707,0.708050549030304,0.9235154986381531,-0.1888461410999298 +0.5,24.209775924682617,11.229599952697754,12.615100860595703,0.7366855144500732,0.8417505025863647,-0.14721214771270752 +0.5,24.34600257873535,11.229599952697754,12.570103645324707,0.6736884713172913,0.9453194737434387,-0.03156214952468872 +0.5,24.14166259765625,11.275959014892578,12.615100860595703,0.8054094910621643,1.016182541847229,-0.017684150487184525 +0.5,24.34600257873535,11.368677139282227,12.615100860595703,0.7653204798698425,0.9834765195846558,-0.11945614963769913 +0.5,24.209775924682617,11.275959014892578,12.615100860595703,0.7195045351982117,0.8962604999542236,-0.09170015156269073 +0.5,24.073549270629883,11.5077543258667,12.750091552734375,0.7195045351982117,1.037986397743225,-0.06857015192508698 +0.5,24.277889251708984,11.322317123413086,12.435111999511719,0.7366855144500732,0.978025496006012,-0.040814146399497986 +0.5,24.209775924682617,11.322317123413086,12.435111999511719,0.7710474729537964,0.9998294711112976,-0.1148301437497139 +0.5,24.073549270629883,11.322317123413086,12.570103645324707,0.6622344851493835,0.9344174861907959,-0.1009521484375 +0.5,24.14166259765625,11.322317123413086,12.570103645324707,0.6965965032577515,1.0652414560317993,-0.09170015156269073 +0.5,24.073549270629883,11.229599952697754,12.480109214782715,0.7252315282821655,1.016182541847229,-0.14721214771270752 +0.5,24.34600257873535,11.229599952697754,12.525106430053711,0.7023234963417053,0.9235154986381531,-0.16109015047550201 +0.5,24.00543785095215,11.183239936828613,12.750091552734375,0.7252315282821655,1.0107314586639404,-0.1148301437497139 +0.5,24.41411590576172,11.461394309997559,12.435111999511719,0.7825015187263489,0.9725744724273682,-0.1148301437497139 +0.5,24.482229232788086,11.275959014892578,12.480109214782715,0.7424125075340271,0.9235154986381531,-0.1148301437497139 +0.5,24.618453979492188,10.997804641723633,12.750091552734375,0.5763295292854309,0.9398684501647949,-0.10557814687490463 +0.5,24.618453979492188,11.229599952697754,12.705094337463379,0.6965965032577515,0.9616724848747253,-0.06394414603710175 +0.5,24.209775924682617,11.229599952697754,12.570103645324707,0.7424125075340271,1.0924965143203735,-0.04544014856219292 +0.5,24.482229232788086,11.275959014892578,12.615100860595703,0.6851425170898438,0.9507704973220825,-0.1287081390619278 +0.5,24.277889251708984,11.275959014892578,12.750091552734375,0.6393264532089233,0.9889274835586548,-0.09632615000009537 +0.5,24.34600257873535,11.322317123413086,12.615100860595703,0.7137775421142578,1.0597904920578003,-0.08244814723730087 +0.5,24.14166259765625,11.275959014892578,12.525106430053711,0.7710474729537964,1.037986397743225,-0.040814146399497986 +0.5,24.277889251708984,11.322317123413086,12.750091552734375,0.7195045351982117,0.9725744724273682,-0.0870741531252861 +0.5,24.277889251708984,11.368677139282227,12.615100860595703,0.6965965032577515,0.9725744724273682,-0.09170015156269073 +0.5,24.00543785095215,11.322317123413086,12.615100860595703,0.5992375016212463,1.0107314586639404,-0.13796015083789825 +0.5,23.869211196899414,11.41503620147705,12.6600980758667,0.7996824979782104,1.0107314586639404,-0.17034214735031128 +0.5,24.41411590576172,10.997804641723633,12.615100860595703,0.5935105085372925,0.9289664626121521,-0.12408214807510376 +0.5,24.14166259765625,11.275959014892578,12.6600980758667,0.6335994601249695,1.0052804946899414,-0.1009521484375 +0.5,24.34600257873535,11.229599952697754,12.480109214782715,0.6794155240058899,0.978025496006012,-0.16571614146232605 +0.5,24.073549270629883,11.229599952697754,12.525106430053711,0.7653204798698425,0.9507704973220825,-0.16571614146232605 +0.5,24.14166259765625,11.136881828308105,12.885083198547363,0.6736884713172913,0.9453194737434387,-0.07782214879989624 +0.5,24.00543785095215,11.275959014892578,12.6600980758667,0.6622344851493835,0.9507704973220825,-0.04544014856219292 +0.5,23.869211196899414,11.275959014892578,12.525106430053711,0.7252315282821655,0.978025496006012,-0.1287081390619278 +0.5,24.209775924682617,11.229599952697754,12.795088768005371,0.7825015187263489,0.8908095359802246,-0.1287081390619278 +0.5,24.073549270629883,11.322317123413086,12.750091552734375,0.6794155240058899,0.9180644750595093,-0.1009521484375 +0.5,24.00543785095215,11.275959014892578,12.6600980758667,0.748139500617981,1.0325355529785156,-0.08244814723730087 +0.5,24.14166259765625,11.229599952697754,12.480109214782715,0.7424125075340271,0.9562215209007263,-0.11020414531230927 +0.5,24.073549270629883,11.275959014892578,12.6600980758667,0.6736884713172913,0.8635544776916504,-0.10557814687490463 +0.5,24.277889251708984,11.322317123413086,12.6600980758667,0.5534214973449707,0.9725744724273682,-0.12408214807510376 +0.5,24.00543785095215,11.322317123413086,12.480109214782715,0.6908695101737976,1.0434374809265137,-0.06394414603710175 +0.5,24.41411590576172,11.183239936828613,12.480109214782715,0.6736884713172913,1.037986397743225,-0.1148301437497139 +0.5,24.073549270629883,11.275959014892578,12.480109214782715,0.6106915473937988,0.9725744724273682,-0.1287081390619278 +0.5,24.482229232788086,11.229599952697754,12.6600980758667,0.7882285118103027,0.9562215209007263,-0.10557814687490463 +0.5,24.41411590576172,11.229599952697754,12.705094337463379,0.6736884713172913,1.016182541847229,-0.16109015047550201 +0.5,24.209775924682617,11.275959014892578,12.6600980758667,0.7366855144500732,0.9562215209007263,-0.1009521484375 +0.5,24.41411590576172,11.322317123413086,12.570103645324707,0.6851425170898438,0.9180644750595093,-0.09170015156269073 +0.5,24.482229232788086,11.275959014892578,12.570103645324707,0.7424125075340271,1.0107314586639404,-0.022310150787234306 +0.5,24.14166259765625,11.229599952697754,12.570103645324707,0.6106915473937988,0.9943785071372986,-0.15183815360069275 +0.5,24.618453979492188,11.275959014892578,12.750091552734375,0.7424125075340271,0.8581034541130066,-0.1888461410999298 +0.5,24.277889251708984,11.322317123413086,12.750091552734375,0.8111365437507629,0.9616724848747253,-0.09632615000009537 +0.5,23.801097869873047,11.136881828308105,12.435111999511719,0.7939555048942566,1.0597904920578003,-0.0870741531252861 +0.5,24.277889251708984,11.275959014892578,12.750091552734375,0.7195045351982117,0.8908095359802246,-0.11020414531230927 +0.5,24.277889251708984,11.275959014892578,12.6600980758667,0.7137775421142578,0.9017114639282227,-0.07782214879989624 +0.5,24.482229232788086,11.183239936828613,12.525106430053711,0.7195045351982117,0.978025496006012,-0.1287081390619278 +0.5,24.00543785095215,11.136881828308105,12.750091552734375,0.7996824979782104,1.021633505821228,0.0008198499563150108 +0.5,24.34600257873535,11.183239936828613,12.525106430053711,0.7137775421142578,0.9725744724273682,-0.15646414458751678 +0.5,24.618453979492188,11.322317123413086,12.6600980758667,0.6565074920654297,0.9126134514808655,-0.06394414603710175 +0.5,24.073549270629883,11.41503620147705,12.615100860595703,0.776774525642395,1.0052804946899414,-0.06857015192508698 +0.5,24.14166259765625,11.183239936828613,12.480109214782715,0.6679614782333374,1.037986397743225,-0.17959414422512054 +0.5,24.34600257873535,11.322317123413086,12.480109214782715,0.6794155240058899,0.9725744724273682,-0.17959414422512054 +0.5,24.277889251708984,11.229599952697754,12.840085983276367,0.6393264532089233,1.0107314586639404,-0.11020414531230927 +0.5,24.14166259765625,11.229599952697754,12.435111999511719,0.7424125075340271,0.9834765195846558,-0.18422015011310577 +0.5,23.93732452392578,11.368677139282227,12.435111999511719,0.7252315282821655,0.978025496006012,-0.15183815360069275 +0.5,24.00543785095215,11.090522766113281,12.615100860595703,0.6851425170898438,0.9889274835586548,-0.1148301437497139 +0.5,24.073549270629883,11.322317123413086,12.615100860595703,0.6278725266456604,1.0107314586639404,-0.05469214916229248 +0.5,24.073549270629883,11.183239936828613,12.615100860595703,0.7424125075340271,1.0107314586639404,-0.06394414603710175 +0.5,23.93732452392578,11.183239936828613,12.750091552734375,0.7996824979782104,0.8962604999542236,-0.09632615000009537 +0.5,24.00543785095215,11.368677139282227,12.6600980758667,0.6908695101737976,0.9180644750595093,-0.09170015156269073 +0.5,24.482229232788086,11.275959014892578,12.6600980758667,0.7882285118103027,1.070692539215088,-0.05006615072488785 +0.5,24.209775924682617,11.368677139282227,12.525106430053711,0.7653204798698425,1.021633505821228,-0.07319615036249161 +0.5,24.209775924682617,11.183239936828613,12.6600980758667,0.7710474729537964,0.9398684501647949,-0.13796015083789825 +0.5,24.55034065246582,11.322317123413086,12.6600980758667,0.6736884713172913,1.0052804946899414,-0.05006615072488785 +0.5,24.34600257873535,11.275959014892578,12.525106430053711,0.748139500617981,1.037986397743225,-0.07319615036249161 +0.5,24.277889251708984,11.183239936828613,12.570103645324707,0.748139500617981,1.0597904920578003,-0.16109015047550201 +0.5,24.277889251708984,11.183239936828613,12.525106430053711,0.708050549030304,0.9671234488487244,-0.14721214771270752 +0.5,24.277889251708984,11.322317123413086,12.705094337463379,0.6965965032577515,0.9834765195846558,-0.1009521484375 +0.5,24.14166259765625,11.183239936828613,12.525106430053711,0.6794155240058899,1.0325355529785156,-0.17496813833713531 +0.5,24.00543785095215,11.090522766113281,12.435111999511719,0.7424125075340271,0.9943785071372986,-0.16109015047550201 +0.5,24.209775924682617,11.322317123413086,12.6600980758667,0.5877835154533386,0.9671234488487244,-0.1148301437497139 +0.5,24.00543785095215,11.183239936828613,12.615100860595703,0.6679614782333374,0.9834765195846558,-0.0870741531252861 +0.5,24.277889251708984,11.183239936828613,12.570103645324707,0.7309585213661194,0.9616724848747253,-0.18422015011310577 +0.5,24.14166259765625,11.275959014892578,12.615100860595703,0.7710474729537964,0.9398684501647949,-0.15646414458751678 +0.5,24.41411590576172,11.41503620147705,12.6600980758667,0.7195045351982117,1.0052804946899414,-0.06394414603710175 +0.5,24.209775924682617,11.136881828308105,12.435111999511719,0.7825015187263489,1.0107314586639404,-0.1287081390619278 +0.5,24.209775924682617,11.136881828308105,12.705094337463379,0.7939555048942566,1.016182541847229,-0.17496813833713531 +0.5,24.277889251708984,11.368677139282227,12.705094337463379,0.7023234963417053,0.9453194737434387,-0.09632615000009537 +0.5,24.34600257873535,11.229599952697754,12.615100860595703,0.7309585213661194,1.0488884449005127,-0.1009521484375 +0.5,24.209775924682617,11.229599952697754,12.6600980758667,0.7595934867858887,1.0761433839797974,-0.09170015156269073 +0.5,24.41411590576172,11.183239936828613,12.750091552734375,0.708050549030304,0.9616724848747253,-0.1148301437497139 +0.5,24.277889251708984,11.368677139282227,12.6600980758667,0.7252315282821655,0.9889274835586548,-0.1287081390619278 +0.5,24.34600257873535,11.41503620147705,12.615100860595703,0.6049644947052002,0.9453194737434387,-0.08244814723730087 +0.5,23.93732452392578,11.275959014892578,12.570103645324707,0.7653204798698425,0.9943785071372986,-0.2027241587638855 +0.5,24.00543785095215,11.183239936828613,12.525106430053711,0.6679614782333374,0.9344174861907959,-0.12408214807510376 +0.5,23.869211196899414,11.322317123413086,12.615100860595703,0.6507804989814758,0.9725744724273682,-0.14721214771270752 +0.5,24.00543785095215,11.229599952697754,12.615100860595703,0.5648754835128784,0.978025496006012,-0.1287081390619278 +0.5,24.209775924682617,11.275959014892578,12.480109214782715,0.7252315282821655,0.9671234488487244,-0.15183815360069275 +0.5,24.209775924682617,11.090522766113281,12.6600980758667,0.6965965032577515,0.9889274835586548,-0.13333414494991302 +0.5,24.209775924682617,11.322317123413086,12.6600980758667,0.6221455335617065,0.9998294711112976,-0.06857015192508698 +0.5,24.41411590576172,11.275959014892578,12.525106430053711,0.7653204798698425,0.9998294711112976,-0.09632615000009537 +0.5,24.34600257873535,11.136881828308105,12.615100860595703,0.6049644947052002,0.9398684501647949,-0.17496813833713531 +0.5,24.277889251708984,11.368677139282227,12.750091552734375,0.748139500617981,0.9998294711112976,-0.1148301437497139 +0.5,24.34600257873535,11.322317123413086,12.570103645324707,0.7252315282821655,0.9562215209007263,-0.17959414422512054 +0.5,24.209775924682617,11.229599952697754,12.525106430053711,0.8168635368347168,1.0488884449005127,-0.1009521484375 +0.5,24.14166259765625,11.41503620147705,12.525106430053711,0.7195045351982117,0.9834765195846558,-0.07782214879989624 +0.5,24.00543785095215,11.41503620147705,12.6600980758667,0.5362404584884644,0.9834765195846558,-0.1287081390619278 +0.5,24.209775924682617,11.275959014892578,12.705094337463379,0.6393264532089233,0.9889274835586548,-0.11020414531230927 +0.5,23.93732452392578,11.183239936828613,12.390115737915039,0.6908695101737976,1.0434374809265137,-0.16109015047550201 +0.5,24.34600257873535,11.136881828308105,12.6600980758667,0.7653204798698425,0.9289664626121521,-0.09632615000009537 +0.5,24.209775924682617,11.322317123413086,12.525106430053711,0.7137775421142578,0.9616724848747253,-0.14258615672588348 +0.5,24.277889251708984,11.275959014892578,12.615100860595703,0.6908695101737976,0.9616724848747253,-0.1888461410999298 +0.5,24.34600257873535,11.136881828308105,12.570103645324707,0.708050549030304,0.9671234488487244,-0.1009521484375 +0.5,24.34600257873535,11.229599952697754,12.705094337463379,0.7023234963417053,0.9943785071372986,-0.05931815132498741 +0.5,24.55034065246582,11.322317123413086,12.705094337463379,0.6106915473937988,0.9725744724273682,-0.09170015156269073 +0.5,24.41411590576172,11.229599952697754,12.615100860595703,0.7653204798698425,1.016182541847229,-0.14721214771270752 +0.5,24.482229232788086,11.183239936828613,12.615100860595703,0.7538664937019348,0.9180644750595093,-0.20735014975070953 +0.5,24.41411590576172,11.275959014892578,12.615100860595703,0.7710474729537964,0.9616724848747253,-0.07782214879989624 +0.5,24.209775924682617,11.183239936828613,12.480109214782715,0.7939555048942566,1.016182541847229,-0.03156214952468872 +0.5,24.482229232788086,11.229599952697754,12.480109214782715,0.8970414996147156,1.037986397743225,-0.07319615036249161 +0.5,24.073549270629883,11.41503620147705,12.750091552734375,0.7252315282821655,0.9453194737434387,-0.13333414494991302 +0.5,24.00543785095215,11.322317123413086,12.750091552734375,0.7710474729537964,0.9453194737434387,-0.08244814723730087 +0.5,23.801097869873047,11.275959014892578,12.615100860595703,0.6908695101737976,1.037986397743225,-0.13333414494991302 +0.5,24.00543785095215,11.090522766113281,12.390115737915039,0.748139500617981,1.0652414560317993,-0.13333414494991302 +0.5,24.41411590576172,11.322317123413086,12.6600980758667,0.708050549030304,0.9616724848747253,-0.16109015047550201 +0.5,24.00543785095215,11.41503620147705,12.480109214782715,0.7366855144500732,0.9507704973220825,-0.12408214807510376 +0.5,24.277889251708984,11.229599952697754,12.570103645324707,0.7939555048942566,1.0543395280838013,-0.19347214698791504 +0.5,24.00543785095215,11.229599952697754,12.435111999511719,0.6965965032577515,0.9671234488487244,-0.15646414458751678 +0.5,24.14166259765625,11.183239936828613,12.705094337463379,0.6164185404777527,0.9562215209007263,-0.17034214735031128 +0.5,24.00543785095215,11.368677139282227,12.615100860595703,0.708050549030304,0.9889274835586548,-0.04544014856219292 +0.5,24.34600257873535,11.275959014892578,12.525106430053711,0.7137775421142578,0.9616724848747253,-0.18422015011310577 +0.5,24.277889251708984,11.229599952697754,12.6600980758667,0.8168635368347168,0.9725744724273682,-0.17034214735031128 +0.5,24.209775924682617,11.41503620147705,12.705094337463379,0.5877835154533386,0.9943785071372986,-0.09632615000009537 +0.5,23.93732452392578,11.41503620147705,12.480109214782715,0.748139500617981,1.0325355529785156,-0.07782214879989624 +0.5,24.34600257873535,11.275959014892578,12.750091552734375,0.7137775421142578,1.0488884449005127,-0.11945614963769913 +0.5,24.073549270629883,11.322317123413086,12.615100860595703,0.5877835154533386,0.9126134514808655,-0.08244814723730087 +0.5,23.801097869873047,11.275959014892578,12.6600980758667,0.7195045351982117,0.9671234488487244,-0.07319615036249161 +0.5,23.93732452392578,11.368677139282227,12.34511947631836,0.7252315282821655,1.0325355529785156,-0.0870741531252861 +0.5,24.277889251708984,11.368677139282227,12.525106430053711,0.7195045351982117,1.070692539215088,-0.12408214807510376 +0.5,24.277889251708984,11.368677139282227,12.435111999511719,0.7309585213661194,0.9889274835586548,-0.12408214807510376 +0.5,24.277889251708984,11.322317123413086,12.615100860595703,0.6736884713172913,0.978025496006012,-0.1009521484375 +0.5,24.34600257873535,11.275959014892578,12.705094337463379,0.7710474729537964,0.9507704973220825,-0.19347214698791504 +0.5,24.34600257873535,11.229599952697754,12.525106430053711,0.776774525642395,0.9507704973220825,-0.16109015047550201 +0.5,24.277889251708984,11.41503620147705,12.615100860595703,0.6278725266456604,1.016182541847229,-0.1148301437497139 +0.5,24.41411590576172,11.41503620147705,12.525106430053711,0.6736884713172913,0.9344174861907959,-0.15646414458751678 +0.5,24.14166259765625,11.183239936828613,12.6600980758667,0.748139500617981,0.8908095359802246,-0.14721214771270752 +0.5,24.482229232788086,11.090522766113281,12.705094337463379,0.6736884713172913,0.9071624875068665,-0.13333414494991302 +0.5,24.209775924682617,11.41503620147705,12.705094337463379,0.6221455335617065,0.9344174861907959,-0.07319615036249161 +0.5,24.14166259765625,11.229599952697754,12.525106430053711,0.7882285118103027,1.0652414560317993,-0.09170015156269073 +0.5,24.073549270629883,11.229599952697754,12.705094337463379,0.6736884713172913,0.9943785071372986,-0.09170015156269073 +0.5,24.14166259765625,11.136881828308105,12.615100860595703,0.7023234963417053,0.9398684501647949,-0.04544014856219292 +0.5,24.41411590576172,11.229599952697754,12.615100860595703,0.7882285118103027,0.9725744724273682,-0.05006615072488785 +0.5,24.073549270629883,11.229599952697754,12.615100860595703,0.7939555048942566,1.0434374809265137,-0.04544014856219292 +0.5,24.41411590576172,11.275959014892578,12.750091552734375,0.8168635368347168,0.9507704973220825,-0.1009521484375 +0.5,24.482229232788086,11.322317123413086,12.615100860595703,0.5820565223693848,1.0325355529785156,-0.14258615672588348 +0.5,24.209775924682617,11.229599952697754,12.570103645324707,0.7195045351982117,1.037986397743225,-0.1009521484375 +0.5,24.14166259765625,11.136881828308105,12.390115737915039,0.6736884713172913,1.070692539215088,-0.1009521484375 +0.5,24.209775924682617,11.229599952697754,12.525106430053711,0.6164185404777527,0.9671234488487244,-0.16109015047550201 +0.5,24.277889251708984,11.183239936828613,12.525106430053711,0.6794155240058899,0.9616724848747253,-0.1148301437497139 +0.5,24.073549270629883,11.322317123413086,12.6600980758667,0.6679614782333374,0.9998294711112976,-0.1009521484375 +0.5,23.869211196899414,11.136881828308105,12.34511947631836,0.6393264532089233,0.9344174861907959,-0.13796015083789825 +0.5,23.869211196899414,11.183239936828613,12.840085983276367,0.6965965032577515,1.0107314586639404,-0.12408214807510376 +0.5,24.00543785095215,11.461394309997559,12.6600980758667,0.7939555048942566,1.037986397743225,-0.07782214879989624 +0.5,24.14166259765625,11.275959014892578,12.570103645324707,0.7366855144500732,0.9834765195846558,-0.12408214807510376 +0.5,24.073549270629883,11.229599952697754,12.750091552734375,0.6679614782333374,1.016182541847229,-0.14721214771270752 +0.5,24.209775924682617,11.368677139282227,12.615100860595703,0.7309585213661194,0.9889274835586548,-0.1148301437497139 +0.5,24.209775924682617,11.41503620147705,12.705094337463379,0.748139500617981,0.9943785071372986,-0.03618814796209335 +0.5,24.277889251708984,11.41503620147705,12.480109214782715,0.7137775421142578,1.016182541847229,-0.11945614963769913 +0.5,24.34600257873535,11.275959014892578,12.6600980758667,0.7882285118103027,0.9562215209007263,-0.14258615672588348 +0.5,24.14166259765625,11.368677139282227,12.6600980758667,0.6106915473937988,0.9017114639282227,-0.06857015192508698 +0.5,24.41411590576172,11.322317123413086,12.705094337463379,0.7252315282821655,1.0761433839797974,-0.1009521484375 +0.5,24.34600257873535,11.136881828308105,12.525106430053711,0.7825015187263489,0.9453194737434387,-0.15646414458751678 +0.5,24.073549270629883,11.322317123413086,12.570103645324707,0.6908695101737976,0.9398684501647949,-0.09170015156269073 +0.5,24.277889251708984,11.229599952697754,12.615100860595703,0.5706024765968323,1.037986397743225,-0.04544014856219292 +0.5,24.14166259765625,11.229599952697754,12.525106430053711,0.6565074920654297,1.0107314586639404,-0.16109015047550201 +0.5,24.073549270629883,11.229599952697754,12.525106430053711,0.7252315282821655,0.9289664626121521,-0.18422015011310577 +0.5,24.209775924682617,11.229599952697754,12.750091552734375,0.708050549030304,0.9344174861907959,-0.13333414494991302 +0.5,24.277889251708984,11.368677139282227,12.615100860595703,0.7424125075340271,0.9834765195846558,-0.11020414531230927 +0.5,24.34600257873535,11.229599952697754,12.480109214782715,0.7710474729537964,0.9344174861907959,-0.14721214771270752 +0.5,24.209775924682617,11.183239936828613,12.6600980758667,0.7595934867858887,0.8962604999542236,-0.14258615672588348 +0.5,24.482229232788086,11.322317123413086,12.840085983276367,0.7252315282821655,0.836299479007721,-0.05469214916229248 +0.5,24.277889251708984,11.368677139282227,12.615100860595703,0.6393264532089233,1.0761433839797974,-0.05469214916229248 +0.5,24.41411590576172,11.183239936828613,12.570103645324707,0.776774525642395,1.016182541847229,-0.08244814723730087 +0.5,24.482229232788086,11.322317123413086,12.750091552734375,0.6221455335617065,0.9289664626121521,-0.16109015047550201 +0.5,24.14166259765625,11.41503620147705,12.705094337463379,0.7825015187263489,1.021633505821228,-0.10557814687490463 +0.5,24.209775924682617,11.322317123413086,12.480109214782715,0.6965965032577515,1.0597904920578003,-0.05006615072488785 +0.5,24.14166259765625,11.322317123413086,12.750091552734375,0.6908695101737976,0.9943785071372986,-0.1148301437497139 +0.5,24.14166259765625,11.229599952697754,12.615100860595703,0.6507804989814758,0.9616724848747253,-0.16109015047550201 +0.5,24.00543785095215,11.275959014892578,12.750091552734375,0.7195045351982117,1.027084469795227,-0.08244814723730087 +0.5,23.664871215820312,11.183239936828613,12.525106430053711,0.6965965032577515,1.027084469795227,-0.14721214771270752 +0.5,24.277889251708984,11.090522766113281,12.570103645324707,0.7023234963417053,0.9017114639282227,-0.07782214879989624 +0.5,23.93732452392578,11.275959014892578,12.615100860595703,0.6393264532089233,0.9398684501647949,-0.09170015156269073 +0.5,24.14166259765625,11.183239936828613,12.570103645324707,0.708050549030304,0.9507704973220825,-0.12408214807510376 +0.5,24.277889251708984,11.229599952697754,12.525106430053711,0.6622344851493835,0.8962604999542236,-0.14258615672588348 +0.5,24.277889251708984,11.090522766113281,12.750091552734375,0.776774525642395,0.9562215209007263,-0.1009521484375 +0.5,24.34600257873535,11.368677139282227,12.615100860595703,0.6908695101737976,1.0052804946899414,-0.03618814796209335 +0.6000000238418579,24.00543785095215,11.322317123413086,12.615100860595703,0.6794155240058899,1.0597904920578003,-0.09632615000009537 +0.6000000238418579,24.618453979492188,13.9647798538208,14.95494556427002,1.0974866151809692,0.43837645649909973,-0.02693614922463894 +0.6000000238418579,24.073549270629883,13.872062683105469,14.864951133728027,0.9027684926986694,1.037986397743225,-0.13333414494991302 +0.6000000238418579,23.869211196899414,13.872062683105469,14.819953918457031,0.9027684926986694,1.2069674730300903,-0.07782214879989624 +0.6000000238418579,24.073549270629883,13.59390926361084,14.819953918457031,1.080305576324463,1.2124184370040894,-0.06857015192508698 +0.6000000238418579,24.00543785095215,13.77934455871582,14.819953918457031,1.011581540107727,1.174261450767517,-0.06857015192508698 +0.6000000238418579,24.00543785095215,13.77934455871582,15.179929733276367,0.9371305108070374,1.2233206033706665,-0.1287081390619278 +0.6000000238418579,24.209775924682617,13.686627388000488,14.9999418258667,0.879860520362854,1.2451244592666626,-0.05469214916229248 +0.6000000238418579,24.073549270629883,13.362112998962402,14.774956703186035,1.0001275539398193,1.3050854206085205,-0.12408214807510376 +0.6000000238418579,24.482229232788086,13.59390926361084,14.864951133728027,0.9772195219993591,1.1579084396362305,-0.13796015083789825 +0.6000000238418579,24.14166259765625,13.732985496520996,14.9999418258667,0.8913145065307617,1.2451244592666626,-0.1009521484375 +0.6000000238418579,24.482229232788086,13.59390926361084,14.9999418258667,0.9944005012512207,1.2233206033706665,-0.18422015011310577 +0.6000000238418579,24.34600257873535,13.59390926361084,14.909948348999023,0.8225905299186707,1.1688106060028076,-0.15183815360069275 +0.6000000238418579,24.618453979492188,13.732985496520996,15.089935302734375,0.942857563495636,1.163359522819519,-0.14721214771270752 +0.6000000238418579,24.482229232788086,13.732985496520996,14.95494556427002,0.9543115496635437,1.2124184370040894,-0.04544014856219292 +0.6000000238418579,24.073549270629883,13.686627388000488,14.95494556427002,0.9485845565795898,1.228771448135376,-0.12408214807510376 +0.6000000238418579,24.34600257873535,13.59390926361084,15.179929733276367,0.982946515083313,1.1033984422683716,-0.15183815360069275 +0.6000000238418579,24.209775924682617,13.59390926361084,15.134932518005371,0.8741335272789001,1.0924965143203735,-0.09632615000009537 +0.6000000238418579,24.073549270629883,13.686627388000488,14.9999418258667,0.9543115496635437,1.1906144618988037,-0.017684150487184525 +0.6000000238418579,24.209775924682617,13.686627388000488,14.9999418258667,1.0974866151809692,1.2614775896072388,-0.05006615072488785 +0.6000000238418579,24.073549270629883,13.732985496520996,14.95494556427002,1.0573976039886475,1.217869520187378,-0.16109015047550201 +0.6000000238418579,24.277889251708984,13.59390926361084,15.044938087463379,0.9714924693107605,1.2669284343719482,-0.10557814687490463 +0.6000000238418579,24.073549270629883,13.640267372131348,15.089935302734375,1.0001275539398193,1.2342225313186646,-0.0870741531252861 +0.6000000238418579,24.277889251708984,13.686627388000488,14.9999418258667,1.080305576324463,1.2723795175552368,-0.09632615000009537 +0.6000000238418579,24.41411590576172,13.732985496520996,14.909948348999023,1.0230355262756348,1.1579084396362305,-0.16109015047550201 +0.6000000238418579,24.209775924682617,13.77934455871582,14.95494556427002,1.0058544874191284,1.2451244592666626,-0.17496813833713531 +0.6000000238418579,24.34600257873535,13.547550201416016,15.044938087463379,0.9714924693107605,1.2342225313186646,-0.15183815360069275 +0.6000000238418579,24.073549270629883,13.547550201416016,14.819953918457031,0.9027684926986694,1.1579084396362305,-0.13333414494991302 +0.6000000238418579,24.55034065246582,13.501190185546875,15.134932518005371,1.0230355262756348,1.1797125339508057,-0.15646414458751678 +0.6000000238418579,24.41411590576172,13.686627388000488,14.95494556427002,0.8454985618591309,1.2451244592666626,-0.06857015192508698 +0.6000000238418579,24.00543785095215,13.732985496520996,14.95494556427002,0.9944005012512207,1.228771448135376,-0.15646414458751678 +0.6000000238418579,24.209775924682617,13.686627388000488,15.134932518005371,0.9600385427474976,1.163359522819519,-0.19809813797473907 +0.6000000238418579,24.14166259765625,13.77934455871582,15.044938087463379,1.011581540107727,1.1143004894256592,-0.06394414603710175 +0.6000000238418579,23.93732452392578,13.77934455871582,14.864951133728027,1.0344895124435425,1.2778304815292358,-0.1148301437497139 +0.6000000238418579,24.277889251708984,13.686627388000488,14.95494556427002,0.9600385427474976,1.2669284343719482,-0.04544014856219292 +0.6000000238418579,24.00543785095215,13.77934455871582,14.95494556427002,1.0631245374679565,1.2069674730300903,-0.15646414458751678 +0.6000000238418579,24.34600257873535,13.686627388000488,14.95494556427002,0.8569524884223938,1.228771448135376,-0.09170015156269073 +0.6000000238418579,24.209775924682617,13.732985496520996,14.95494556427002,0.9371305108070374,1.2505754232406616,-0.09170015156269073 +0.6000000238418579,24.277889251708984,13.59390926361084,14.95494556427002,0.9886735081672668,1.2832814455032349,-0.12408214807510376 +0.6000000238418579,24.34600257873535,13.547550201416016,15.134932518005371,0.9600385427474976,1.1361044645309448,-0.13333414494991302 +0.6000000238418579,24.277889251708984,13.77934455871582,15.044938087463379,0.9371305108070374,1.1851634979248047,-0.11020414531230927 +0.6000000238418579,24.55034065246582,13.501190185546875,14.95494556427002,1.1318484544754028,1.2723795175552368,-0.08244814723730087 +0.6000000238418579,24.34600257873535,13.547550201416016,14.819953918457031,0.9714924693107605,1.2233206033706665,-0.14721214771270752 +0.6000000238418579,24.55034065246582,13.501190185546875,15.179929733276367,0.9600385427474976,1.1415555477142334,-0.17034214735031128 +0.6000000238418579,24.55034065246582,13.59390926361084,14.909948348999023,0.9657654762268066,1.217869520187378,-0.03618814796209335 +0.6000000238418579,24.277889251708984,13.547550201416016,14.9999418258667,1.1203945875167847,1.2451244592666626,-0.12408214807510376 +0.6000000238418579,24.34600257873535,13.547550201416016,14.9999418258667,0.9256765246391296,1.1851634979248047,-0.1009521484375 +0.6000000238418579,24.14166259765625,13.77934455871582,15.044938087463379,0.9657654762268066,1.1960655450820923,-0.11020414531230927 +0.6000000238418579,24.073549270629883,13.640267372131348,14.9999418258667,1.0173084735870361,1.217869520187378,-0.09170015156269073 +0.6000000238418579,24.14166259765625,13.59390926361084,14.95494556427002,0.9256765246391296,1.1960655450820923,-0.0870741531252861 +0.5,24.00543785095215,13.686627388000488,15.089935302734375,0.982946515083313,1.174261450767517,-0.16571614146232605 +0.5,24.482229232788086,11.090522766113281,12.6600980758667,0.4159735143184662,0.9180644750595093,-0.19347214698791504 +0.5,24.073549270629883,11.461394309997559,12.6600980758667,0.7595934867858887,0.9398684501647949,-0.1009521484375 +0.5,24.34600257873535,11.275959014892578,12.615100860595703,0.8168635368347168,1.0870455503463745,-0.14258615672588348 +0.5,24.41411590576172,11.322317123413086,12.570103645324707,0.7309585213661194,0.9071624875068665,-0.14258615672588348 +0.5,24.482229232788086,11.322317123413086,12.6600980758667,0.6164185404777527,0.9398684501647949,-0.13333414494991302 +0.5,24.277889251708984,11.229599952697754,12.615100860595703,0.7309585213661194,1.016182541847229,-0.14721214771270752 +0.5,24.14166259765625,11.229599952697754,12.615100860595703,0.6851425170898438,0.9616724848747253,-0.15646414458751678 +0.5,24.34600257873535,11.183239936828613,12.885083198547363,0.6965965032577515,0.9671234488487244,-0.18422015011310577 +0.5,23.869211196899414,11.322317123413086,12.615100860595703,0.6622344851493835,0.9725744724273682,-0.1009521484375 +0.5,24.277889251708984,11.044163703918457,12.570103645324707,0.7023234963417053,0.8308485150337219,-0.18422015011310577 +0.5,24.073549270629883,11.090522766113281,12.525106430053711,0.7309585213661194,0.8526524901390076,-0.13333414494991302 +0.5,23.869211196899414,11.41503620147705,12.570103645324707,0.7195045351982117,0.8908095359802246,-0.12408214807510376 +0.5,24.073549270629883,11.368677139282227,12.705094337463379,0.748139500617981,1.081594467163086,-0.07319615036249161 +0.5,24.073549270629883,11.136881828308105,12.480109214782715,0.6736884713172913,1.037986397743225,-0.14721214771270752 +0.5,24.00543785095215,11.322317123413086,12.570103645324707,0.6736884713172913,0.8526524901390076,-0.12408214807510376 +0.5,24.14166259765625,11.368677139282227,12.705094337463379,0.6736884713172913,0.9725744724273682,-0.09170015156269073 +0.5,24.073549270629883,11.368677139282227,12.480109214782715,0.7939555048942566,1.016182541847229,-0.040814146399497986 +0.5,24.618453979492188,11.368677139282227,12.6600980758667,0.6908695101737976,1.0597904920578003,-0.12408214807510376 +0.5,24.277889251708984,11.368677139282227,12.615100860595703,0.7595934867858887,0.9562215209007263,-0.13333414494991302 +0.5,24.277889251708984,11.275959014892578,12.525106430053711,0.645053505897522,1.027084469795227,-0.06394414603710175 +0.5,24.277889251708984,11.275959014892578,12.435111999511719,0.7996824979782104,0.9834765195846558,-0.2304801493883133 +0.5,24.00543785095215,11.090522766113281,12.34511947631836,0.7023234963417053,1.0325355529785156,-0.1009521484375 +0.5,24.482229232788086,11.275959014892578,12.750091552734375,0.7309585213661194,0.9453194737434387,-0.15646414458751678 +0.5,24.209775924682617,11.322317123413086,12.570103645324707,0.7137775421142578,0.9998294711112976,-0.05469214916229248 +0.5,24.073549270629883,11.183239936828613,12.615100860595703,0.708050549030304,0.9235154986381531,-0.15183815360069275 +0.5,24.34600257873535,11.044163703918457,12.750091552734375,0.6164185404777527,0.9344174861907959,-0.15646414458751678 +0.5,24.482229232788086,11.183239936828613,12.795088768005371,0.7195045351982117,0.9834765195846558,-0.05469214916229248 +0.5,24.209775924682617,11.136881828308105,12.6600980758667,0.7137775421142578,0.9562215209007263,-0.06857015192508698 +0.5,24.14166259765625,11.275959014892578,12.6600980758667,0.7252315282821655,1.0761433839797974,-0.18422015011310577 +0.5,24.209775924682617,11.368677139282227,12.525106430053711,0.7023234963417053,0.9289664626121521,-0.11020414531230927 +0.5,24.34600257873535,11.183239936828613,12.570103645324707,0.7309585213661194,0.9943785071372986,-0.07319615036249161 +0.5,24.277889251708984,11.183239936828613,12.570103645324707,0.776774525642395,1.0488884449005127,-0.07782214879989624 +0.5,24.34600257873535,11.090522766113281,12.615100860595703,0.7653204798698425,0.9834765195846558,-0.1009521484375 +0.5,24.482229232788086,11.461394309997559,12.750091552734375,0.7195045351982117,1.0107314586639404,-0.10557814687490463 +0.5,24.34600257873535,11.229599952697754,12.6600980758667,0.708050549030304,0.9725744724273682,-0.1009521484375 +0.5,24.209775924682617,11.044163703918457,12.435111999511719,0.8454985618591309,0.9943785071372986,-0.19809813797473907 +0.5,24.277889251708984,11.275959014892578,12.480109214782715,0.708050549030304,1.0107314586639404,-0.13333414494991302 +0.5,24.277889251708984,11.229599952697754,12.840085983276367,0.7137775421142578,0.978025496006012,-0.09632615000009537 +0.5,24.00543785095215,11.322317123413086,12.615100860595703,0.6106915473937988,0.9725744724273682,-0.16109015047550201 +0.5,23.801097869873047,11.136881828308105,12.525106430053711,0.7023234963417053,0.9180644750595093,-0.22585414350032806 +0.5,24.14166259765625,11.136881828308105,12.6600980758667,0.6965965032577515,0.9126134514808655,-0.1287081390619278 +0.5,23.93732452392578,11.183239936828613,12.750091552734375,0.6679614782333374,0.978025496006012,-0.05006615072488785 +0.5,24.34600257873535,11.229599952697754,12.390115737915039,0.7195045351982117,0.9235154986381531,-0.1287081390619278 +0.5,24.14166259765625,11.275959014892578,12.615100860595703,0.6851425170898438,0.9180644750595093,-0.16571614146232605 +0.5,24.14166259765625,11.229599952697754,12.615100860595703,0.5935105085372925,0.9507704973220825,-0.14258615672588348 +0.5,24.34600257873535,11.183239936828613,12.6600980758667,0.7309585213661194,1.0597904920578003,-0.1009521484375 +0.5,24.55034065246582,11.368677139282227,12.525106430053711,0.6965965032577515,0.9562215209007263,-0.08244814723730087 +0.5,24.34600257873535,11.136881828308105,12.6600980758667,0.645053505897522,0.9889274835586548,-0.11945614963769913 +0.5,24.073549270629883,11.322317123413086,12.615100860595703,0.5992375016212463,1.016182541847229,-0.06394414603710175 +0.5,24.34600257873535,11.322317123413086,12.615100860595703,0.6794155240058899,1.037986397743225,-0.06394414603710175 +0.5,24.14166259765625,11.229599952697754,12.570103645324707,0.7309585213661194,1.0325355529785156,-0.13796015083789825 +0.5,24.00543785095215,11.229599952697754,12.6600980758667,0.7710474729537964,0.9071624875068665,-0.11020414531230927 +0.5,24.277889251708984,11.322317123413086,12.615100860595703,0.6278725266456604,0.9725744724273682,-0.13333414494991302 +0.5,24.209775924682617,11.275959014892578,12.570103645324707,0.645053505897522,1.0870455503463745,-0.21197615563869476 +0.5,24.00543785095215,11.090522766113281,12.34511947631836,0.6565074920654297,0.9017114639282227,-0.17959414422512054 +0.5,24.277889251708984,11.368677139282227,12.750091552734375,0.6507804989814758,0.9834765195846558,-0.09170015156269073 +0.5,24.14166259765625,11.229599952697754,12.615100860595703,0.7710474729537964,0.9562215209007263,-0.040814146399497986 +0.5,24.482229232788086,11.183239936828613,12.480109214782715,0.5820565223693848,0.9725744724273682,-0.13333414494991302 +0.5,24.277889251708984,11.275959014892578,12.705094337463379,0.6794155240058899,0.9616724848747253,-0.17959414422512054 +0.5,24.277889251708984,11.275959014892578,12.750091552734375,0.708050549030304,0.9562215209007263,-0.10557814687490463 +0.5,24.34600257873535,11.322317123413086,12.480109214782715,0.7710474729537964,1.0107314586639404,-0.07319615036249161 +0.5,24.41411590576172,11.183239936828613,12.6600980758667,0.7195045351982117,0.9671234488487244,-0.19347214698791504 +0.5,24.41411590576172,11.183239936828613,12.750091552734375,0.7996824979782104,0.9126134514808655,-0.07782214879989624 +0.5,24.14166259765625,11.322317123413086,12.435111999511719,0.6908695101737976,1.027084469795227,-0.013058149255812168 +0.5,24.14166259765625,11.322317123413086,12.525106430053711,0.776774525642395,1.0870455503463745,-0.0038061500526964664 +0.5,24.14166259765625,11.183239936828613,12.615100860595703,0.7424125075340271,1.0107314586639404,-0.13796015083789825 +0.5,24.14166259765625,11.368677139282227,12.570103645324707,0.6164185404777527,0.9998294711112976,-0.11945614963769913 +0.5,24.00543785095215,11.41503620147705,12.615100860595703,0.6565074920654297,1.0107314586639404,-0.14721214771270752 +0.5,23.869211196899414,11.183239936828613,12.525106430053711,0.6794155240058899,1.0325355529785156,-0.13333414494991302 +0.5,24.14166259765625,11.183239936828613,12.525106430053711,0.7023234963417053,0.9071624875068665,-0.16571614146232605 +0.5,23.93732452392578,11.229599952697754,12.795088768005371,0.7538664937019348,0.9562215209007263,-0.13796015083789825 +0.5,24.073549270629883,11.183239936828613,12.615100860595703,0.6736884713172913,1.037986397743225,-0.05006615072488785 +0.5,24.277889251708984,11.322317123413086,12.525106430053711,0.7023234963417053,0.8472014665603638,-0.20735014975070953 +0.5,24.14166259765625,11.183239936828613,12.840085983276367,0.6908695101737976,0.8581034541130066,-0.13333414494991302 +0.5,24.14166259765625,11.229599952697754,12.615100860595703,0.7710474729537964,0.9289664626121521,-0.09170015156269073 +0.5,24.00543785095215,11.368677139282227,12.525106430053711,0.776774525642395,0.9998294711112976,-0.08244814723730087 +0.5,24.209775924682617,11.322317123413086,12.615100860595703,0.7882285118103027,0.9671234488487244,-0.15183815360069275 +0.5,24.277889251708984,11.322317123413086,12.615100860595703,0.708050549030304,0.9289664626121521,-0.12408214807510376 +0.5,24.073549270629883,11.368677139282227,12.6600980758667,0.6965965032577515,1.0434374809265137,-0.09170015156269073 +0.5,24.34600257873535,11.275959014892578,12.615100860595703,0.7538664937019348,1.0597904920578003,-0.09632615000009537 +0.5,24.00543785095215,11.368677139282227,12.525106430053711,0.7023234963417053,0.9998294711112976,-0.1148301437497139 +0.5,24.073549270629883,11.275959014892578,12.6600980758667,0.6049644947052002,0.9289664626121521,-0.12408214807510376 +0.5,24.277889251708984,11.322317123413086,12.615100860595703,0.6622344851493835,0.9889274835586548,-0.09170015156269073 +0.5,24.209775924682617,11.229599952697754,12.525106430053711,0.7996824979782104,1.037986397743225,-0.1009521484375 +0.5,24.277889251708984,11.183239936828613,12.435111999511719,0.708050549030304,0.879907488822937,-0.09170015156269073 +0.5,24.00543785095215,11.183239936828613,12.615100860595703,0.8054094910621643,0.9616724848747253,-0.04544014856219292 +0.5,24.209775924682617,11.229599952697754,12.525106430053711,0.7023234963417053,1.0434374809265137,-0.07319615036249161 +0.5,24.482229232788086,11.136881828308105,12.480109214782715,0.6679614782333374,0.9289664626121521,-0.09170015156269073 +0.5,24.618453979492188,11.044163703918457,12.6600980758667,0.7653204798698425,0.9889274835586548,-0.18422015011310577 +0.5,24.618453979492188,11.41503620147705,12.615100860595703,0.7195045351982117,0.9889274835586548,-0.02693614922463894 +0.5,24.482229232788086,11.322317123413086,12.435111999511719,0.7195045351982117,0.9889274835586548,-0.1009521484375 +0.5,24.482229232788086,11.136881828308105,12.525106430053711,0.7366855144500732,0.879907488822937,-0.1009521484375 +0.5,24.482229232788086,11.461394309997559,12.615100860595703,0.6965965032577515,0.9562215209007263,-0.14258615672588348 +0.5,24.209775924682617,11.322317123413086,12.615100860595703,0.7252315282821655,0.978025496006012,-0.06857015192508698 +0.5,24.209775924682617,11.275959014892578,12.615100860595703,0.8225905299186707,1.0107314586639404,-0.040814146399497986 +0.5,24.482229232788086,11.368677139282227,12.750091552734375,0.6965965032577515,0.9398684501647949,-0.11945614963769913 +0.5,24.14166259765625,11.41503620147705,12.615100860595703,0.708050549030304,0.9889274835586548,-0.14258615672588348 +0.5,23.869211196899414,11.368677139282227,12.615100860595703,0.7366855144500732,1.037986397743225,-0.15183815360069275 +0.5,23.93732452392578,11.044163703918457,12.480109214782715,0.7366855144500732,0.9398684501647949,-0.11945614963769913 +0.5,24.209775924682617,11.275959014892578,12.750091552734375,0.6851425170898438,0.978025496006012,-0.11945614963769913 +0.5,23.93732452392578,11.368677139282227,12.705094337463379,0.6565074920654297,0.9943785071372986,-0.07782214879989624 +0.5,24.073549270629883,11.275959014892578,12.615100860595703,0.6278725266456604,0.978025496006012,-0.13333414494991302 +0.5,24.209775924682617,11.136881828308105,12.435111999511719,0.5877835154533386,0.9235154986381531,-0.15183815360069275 +0.5,24.00543785095215,11.136881828308105,12.525106430053711,0.6507804989814758,0.9834765195846558,-0.13333414494991302 +0.5,24.209775924682617,11.136881828308105,12.525106430053711,0.5877835154533386,1.027084469795227,-0.05931815132498741 +0.5,24.277889251708984,11.275959014892578,12.570103645324707,0.7195045351982117,1.0052804946899414,-0.16571614146232605 +0.5,24.55034065246582,11.136881828308105,12.750091552734375,0.7309585213661194,0.9834765195846558,-0.13796015083789825 +0.5,24.209775924682617,11.5077543258667,12.795088768005371,0.7366855144500732,0.9289664626121521,-0.0870741531252861 +0.5,24.073549270629883,11.322317123413086,12.615100860595703,0.6965965032577515,0.9834765195846558,-0.11020414531230927 +0.5,24.34600257873535,11.275959014892578,12.615100860595703,0.6736884713172913,0.9289664626121521,-0.16571614146232605 +0.5,24.00543785095215,11.368677139282227,12.795088768005371,0.7252315282821655,0.9344174861907959,-0.16571614146232605 +0.5,24.00543785095215,11.368677139282227,12.6600980758667,0.7252315282821655,0.9453194737434387,-0.07319615036249161 +0.5,24.14166259765625,11.322317123413086,12.570103645324707,0.6908695101737976,0.9943785071372986,-0.15183815360069275 +0.5,24.209775924682617,11.136881828308105,12.615100860595703,0.7424125075340271,1.0652414560317993,-0.13333414494991302 +0.5,24.14166259765625,11.183239936828613,12.570103645324707,0.6679614782333374,0.9289664626121521,-0.1009521484375 +0.5,24.073549270629883,11.229599952697754,12.705094337463379,0.7595934867858887,1.0488884449005127,-0.07782214879989624 +0.5,24.34600257873535,11.275959014892578,12.525106430053711,0.6164185404777527,0.9834765195846558,-0.18422015011310577 +0.5,24.277889251708984,11.136881828308105,12.570103645324707,0.7137775421142578,0.9126134514808655,-0.0870741531252861 +0.5,24.277889251708984,11.275959014892578,12.615100860595703,0.5706024765968323,0.9344174861907959,-0.11945614963769913 +0.5,24.277889251708984,11.229599952697754,12.615100860595703,0.645053505897522,1.027084469795227,-0.05931815132498741 +0.5,24.482229232788086,11.183239936828613,12.615100860595703,0.7996824979782104,0.9289664626121521,-0.16571614146232605 +0.5,24.34600257873535,11.136881828308105,12.570103645324707,0.7023234963417053,0.8908095359802246,-0.16571614146232605 +0.5,24.41411590576172,11.322317123413086,12.6600980758667,0.6679614782333374,0.9289664626121521,-0.04544014856219292 +0.5,24.00543785095215,11.183239936828613,12.615100860595703,0.8168635368347168,1.0597904920578003,-0.07319615036249161 +0.5,24.34600257873535,11.136881828308105,12.615100860595703,0.6221455335617065,1.016182541847229,-0.15646414458751678 +0.5,24.14166259765625,11.322317123413086,12.615100860595703,0.6164185404777527,0.9616724848747253,-0.1009521484375 +0.5,24.209775924682617,11.368677139282227,12.795088768005371,0.7023234963417053,0.9453194737434387,-0.09170015156269073 +0.5,24.00543785095215,11.275959014892578,12.570103645324707,0.6221455335617065,0.9671234488487244,-0.06394414603710175 +0.5,24.00543785095215,11.322317123413086,12.525106430053711,0.7595934867858887,0.9725744724273682,-0.14258615672588348 +0.5,24.41411590576172,11.183239936828613,12.570103645324707,0.6736884713172913,1.016182541847229,-0.05469214916229248 +0.5,23.801097869873047,11.322317123413086,12.525106430053711,0.6908695101737976,1.0052804946899414,-0.0870741531252861 +0.5,24.14166259765625,11.183239936828613,12.480109214782715,0.7023234963417053,0.978025496006012,-0.13796015083789825 +0.5,24.482229232788086,11.368677139282227,12.750091552734375,0.7137775421142578,0.9616724848747253,-0.17959414422512054 +0.5,24.209775924682617,11.275959014892578,12.525106430053711,0.6278725266456604,1.027084469795227,-0.07782214879989624 +0.5,24.209775924682617,11.229599952697754,12.525106430053711,0.7252315282821655,0.9998294711112976,-0.17034214735031128 +0.5,23.869211196899414,11.229599952697754,12.570103645324707,0.7882285118103027,0.9071624875068665,-0.15183815360069275 +0.5,24.277889251708984,11.275959014892578,12.6600980758667,0.7137775421142578,0.9889274835586548,-0.13333414494991302 +0.5,24.00543785095215,11.183239936828613,12.615100860595703,0.6393264532089233,0.9507704973220825,-0.09170015156269073 +0.5,24.00543785095215,11.229599952697754,12.615100860595703,0.748139500617981,0.9998294711112976,-0.14721214771270752 +0.5,24.00543785095215,11.183239936828613,12.795088768005371,0.7424125075340271,0.8962604999542236,-0.07319615036249161 +0.5,24.209775924682617,11.322317123413086,12.525106430053711,0.748139500617981,1.0325355529785156,-0.1009521484375 +0.5,24.209775924682617,11.41503620147705,12.750091552734375,0.748139500617981,0.9562215209007263,-0.06857015192508698 +0.5,24.00543785095215,11.41503620147705,12.525106430053711,0.7882285118103027,1.1088495254516602,-0.1009521484375 +0.5,24.14166259765625,11.229599952697754,12.6600980758667,0.7595934867858887,0.9180644750595093,-0.17496813833713531 +0.5,24.41411590576172,11.322317123413086,12.705094337463379,0.7023234963417053,0.9616724848747253,-0.1009521484375 +0.5,24.55034065246582,11.322317123413086,12.705094337463379,0.6221455335617065,1.021633505821228,-0.08244814723730087 +0.5,24.34600257873535,11.090522766113281,12.570103645324707,0.748139500617981,1.0543395280838013,-0.19347214698791504 +0.5,24.14166259765625,11.229599952697754,12.525106430053711,0.6049644947052002,0.9344174861907959,-0.1148301437497139 +0.5,24.482229232788086,11.136881828308105,12.615100860595703,0.7366855144500732,0.9289664626121521,-0.09632615000009537 +0.5,24.34600257873535,11.275959014892578,12.705094337463379,0.7366855144500732,0.9889274835586548,-0.17959414422512054 +0.5,24.14166259765625,11.183239936828613,12.435111999511719,0.7137775421142578,0.9235154986381531,-0.14258615672588348 +0.5,24.14166259765625,11.322317123413086,12.525106430053711,0.6736884713172913,1.0052804946899414,-0.17034214735031128 +0.5,24.073549270629883,11.368677139282227,12.750091552734375,0.5877835154533386,0.9671234488487244,-0.08244814723730087 +0.5,24.482229232788086,11.136881828308105,12.525106430053711,0.7309585213661194,0.9889274835586548,-0.11945614963769913 +0.5,24.073549270629883,11.183239936828613,12.795088768005371,0.7710474729537964,0.9453194737434387,-0.12408214807510376 +0.5,24.482229232788086,11.322317123413086,12.570103645324707,0.7424125075340271,0.9507704973220825,-0.09632615000009537 +0.5,24.41411590576172,11.183239936828613,12.750091552734375,0.6794155240058899,1.027084469795227,-0.05931815132498741 +0.5,24.34600257873535,11.183239936828613,12.570103645324707,0.7595934867858887,0.9943785071372986,-0.06394414603710175 +0.5,24.55034065246582,11.183239936828613,12.750091552734375,0.7137775421142578,0.9453194737434387,-0.1009521484375 +0.5,24.34600257873535,11.368677139282227,12.705094337463379,0.7023234963417053,0.9562215209007263,-0.15183815360069275 +0.5,24.209775924682617,11.368677139282227,12.615100860595703,0.8111365437507629,1.0325355529785156,-0.07319615036249161 +0.5,24.073549270629883,11.183239936828613,12.615100860595703,0.7309585213661194,1.0652414560317993,-0.13333414494991302 +0.5,24.209775924682617,11.275959014892578,12.525106430053711,0.6736884713172913,0.9725744724273682,-0.08244814723730087 +0.5,24.14166259765625,11.368677139282227,12.615100860595703,0.6049644947052002,0.9671234488487244,-0.1888461410999298 +0.5,23.93732452392578,11.183239936828613,12.525106430053711,0.7595934867858887,0.9889274835586548,-0.14721214771270752 +0.5,24.14166259765625,11.275959014892578,12.525106430053711,0.6565074920654297,0.9671234488487244,-0.1148301437497139 +0.5,24.00543785095215,11.183239936828613,12.750091552734375,0.6622344851493835,0.9725744724273682,-0.13333414494991302 +0.5,24.209775924682617,11.229599952697754,12.750091552734375,0.7137775421142578,1.037986397743225,-0.13333414494991302 +0.5,24.34600257873535,11.322317123413086,12.615100860595703,0.6965965032577515,0.9453194737434387,-0.18422015011310577 +0.5,24.277889251708984,11.275959014892578,12.750091552734375,0.7023234963417053,0.9344174861907959,-0.17959414422512054 +0.5,24.209775924682617,11.5077543258667,12.6600980758667,0.5648754835128784,0.9071624875068665,-0.022310150787234306 +0.5,24.073549270629883,11.275959014892578,12.570103645324707,0.7023234963417053,1.1415555477142334,-0.09170015156269073 +0.5,24.277889251708984,11.183239936828613,12.750091552734375,0.7023234963417053,0.9235154986381531,-0.1888461410999298 +0.5,24.277889251708984,11.275959014892578,12.570103645324707,0.7252315282821655,1.0052804946899414,-0.1148301437497139 +0.5,24.00543785095215,11.322317123413086,12.615100860595703,0.6278725266456604,0.9725744724273682,-0.1148301437497139 +0.5,24.00543785095215,11.322317123413086,12.525106430053711,0.7653204798698425,0.9834765195846558,-0.1009521484375 +0.5,24.209775924682617,11.275959014892578,12.570103645324707,0.6794155240058899,1.0107314586639404,-0.18422015011310577 +0.5,24.209775924682617,11.229599952697754,12.6600980758667,0.6106915473937988,0.9616724848747253,-0.17034214735031128 +0.5,24.34600257873535,11.275959014892578,12.615100860595703,0.6736884713172913,0.9235154986381531,-0.04544014856219292 +0.5,24.277889251708984,11.183239936828613,12.390115737915039,0.708050549030304,1.016182541847229,-0.19809813797473907 +0.5,24.482229232788086,11.229599952697754,12.615100860595703,0.6164185404777527,0.9453194737434387,-0.0870741531252861 +0.5,24.34600257873535,11.229599952697754,12.525106430053711,0.8340445160865784,0.9671234488487244,-0.09170015156269073 +0.5,24.277889251708984,11.275959014892578,12.570103645324707,0.7653204798698425,0.9725744724273682,-0.20735014975070953 +0.5,24.34600257873535,11.322317123413086,12.570103645324707,0.6851425170898438,0.9289664626121521,-0.17496813833713531 +0.5,24.55034065246582,11.136881828308105,12.705094337463379,0.6851425170898438,0.9453194737434387,-0.13796015083789825 +0.5,24.34600257873535,11.368677139282227,12.705094337463379,0.7710474729537964,0.9180644750595093,-0.08244814723730087 +0.5,24.277889251708984,11.322317123413086,12.750091552734375,0.708050549030304,0.9725744724273682,-0.1009521484375 +0.5,24.277889251708984,11.41503620147705,12.705094337463379,0.6393264532089233,0.9235154986381531,-0.09632615000009537 +0.5,24.14166259765625,11.275959014892578,12.750091552734375,0.5992375016212463,0.9344174861907959,-0.11945614963769913 +0.5,24.209775924682617,11.322317123413086,12.615100860595703,0.6507804989814758,1.027084469795227,-0.08244814723730087 +0.5,23.93732452392578,11.183239936828613,12.6600980758667,0.7538664937019348,1.0434374809265137,-0.09170015156269073 +0.5,24.209775924682617,11.322317123413086,12.570103645324707,0.7710474729537964,0.9998294711112976,-0.12408214807510376 +0.5,24.34600257873535,11.368677139282227,12.570103645324707,0.748139500617981,0.9507704973220825,-0.1148301437497139 +0.5,24.14166259765625,11.275959014892578,12.570103645324707,0.7023234963417053,1.0052804946899414,-0.1009521484375 +0.5,24.209775924682617,11.044163703918457,12.570103645324707,0.7252315282821655,0.9889274835586548,-0.15646414458751678 +0.5,24.34600257873535,11.368677139282227,12.615100860595703,0.6278725266456604,0.9889274835586548,-0.13796015083789825 +0.5,24.41411590576172,11.368677139282227,12.615100860595703,0.7595934867858887,0.9889274835586548,-0.06857015192508698 +0.5,24.209775924682617,11.183239936828613,12.615100860595703,0.6507804989814758,0.9671234488487244,-0.15183815360069275 diff --git a/results/Load 10 branch 1/results_CORE_duty60%_VHigh24.csv b/results/Load 10 branch 1/results_CORE_duty60%_VHigh24.csv new file mode 100644 index 0000000000000000000000000000000000000000..5195b8a44fa2f53c91d0314e83d0a90b372d87a8 --- /dev/null +++ b/results/Load 10 branch 1/results_CORE_duty60%_VHigh24.csv @@ -0,0 +1,501 @@ +duty_cycle,Vhigh_value,V1_low_value,V2_low_value,Ihigh_value,I1_low_value,I2_low_value +0.10000000149011612,24.209775924682617,2.0505173206329346,2.9857423305511475,0.11244247853755951,0.04590445011854172,-0.16571614146232605 +0.20000000298023224,24.55034065246582,1.9577994346618652,3.0307395458221436,0.06662648171186447,0.08951245248317719,-0.17959414422512054 +0.30000001192092896,24.41411590576172,4.553903102874756,5.415580749511719,0.4388814866542816,-0.16668455302715302,-0.1148301437497139 +0.4000000059604645,24.41411590576172,6.825494766235352,7.800421237945557,0.43315452337265015,0.056806448847055435,-0.04544014856219292 +0.5,24.618453979492188,9.421598434448242,10.3202543258667,0.5190595388412476,0.1549244523048401,-0.0870741531252861 +0.6000000238418579,24.14166259765625,11.739548683166504,12.390115737915039,0.9027684926986694,0.3620624840259552,-0.02693614922463894 +0.6000000238418579,24.482229232788086,13.9647798538208,14.729959487915039,1.0917595624923706,0.46018049120903015,-0.06394414603710175 +0.6000000238418579,24.00543785095215,13.59390926361084,14.864951133728027,0.8684064745903015,0.9998294711112976,-0.12408214807510376 +0.6000000238418579,24.277889251708984,13.686627388000488,14.639966011047363,0.9485845565795898,1.2669284343719482,-0.1148301437497139 +0.6000000238418579,23.801097869873047,13.547550201416016,14.729959487915039,1.0344895124435425,1.2505754232406616,-0.1287081390619278 +0.6000000238418579,23.869211196899414,13.408473014831543,14.909948348999023,1.0974866151809692,1.2015165090560913,-0.14721214771270752 +0.6000000238418579,24.073549270629883,13.501190185546875,14.774956703186035,1.0230355262756348,1.1960655450820923,-0.17959414422512054 +0.6000000238418579,23.73298454284668,13.59390926361084,14.68496322631836,0.9371305108070374,1.174261450767517,-0.1287081390619278 +0.6000000238418579,24.34600257873535,13.59390926361084,14.774956703186035,0.9142225384712219,1.1851634979248047,-0.16109015047550201 +0.6000000238418579,24.14166259765625,13.59390926361084,14.909948348999023,0.8454985618591309,1.1906144618988037,-0.16109015047550201 +0.6000000238418579,24.34600257873535,13.501190185546875,14.864951133728027,1.011581540107727,1.2233206033706665,-0.15183815360069275 +0.6000000238418579,24.14166259765625,13.640267372131348,14.9999418258667,1.0230355262756348,1.1470065116882324,-0.05006615072488785 +0.6000000238418579,23.801097869873047,13.686627388000488,14.864951133728027,1.0287625789642334,1.2124184370040894,-0.06394414603710175 +0.6000000238418579,24.209775924682617,13.732985496520996,14.95494556427002,1.0287625789642334,1.1579084396362305,-0.16109015047550201 +0.6000000238418579,24.00543785095215,13.686627388000488,14.819953918457031,0.9772195219993591,1.1361044645309448,-0.09632615000009537 +0.6000000238418579,24.00543785095215,13.686627388000488,14.95494556427002,0.9944005012512207,1.228771448135376,-0.09632615000009537 +0.6000000238418579,24.073549270629883,13.686627388000488,14.909948348999023,0.8626794815063477,1.1851634979248047,-0.08244814723730087 +0.6000000238418579,24.073549270629883,13.59390926361084,14.774956703186035,0.9772195219993591,1.228771448135376,-0.11945614963769913 +0.6000000238418579,24.55034065246582,13.59390926361084,14.774956703186035,0.9657654762268066,1.2124184370040894,-0.09170015156269073 +0.6000000238418579,24.34600257873535,13.686627388000488,14.9999418258667,0.9772195219993591,1.2015165090560913,-0.15183815360069275 +0.6000000238418579,24.34600257873535,13.640267372131348,14.95494556427002,0.9657654762268066,1.2560265064239502,-0.12408214807510376 +0.6000000238418579,24.34600257873535,13.640267372131348,14.864951133728027,1.0001275539398193,1.1143004894256592,-0.15183815360069275 +0.6000000238418579,24.482229232788086,13.315754890441895,15.089935302734375,1.011581540107727,1.1906144618988037,-0.13796015083789825 +0.6000000238418579,24.482229232788086,13.686627388000488,14.95494556427002,1.0287625789642334,1.1524574756622314,-0.1009521484375 +0.6000000238418579,24.00543785095215,13.686627388000488,14.95494556427002,1.0459434986114502,1.2124184370040894,-0.022310150787234306 +0.6000000238418579,24.277889251708984,13.686627388000488,14.9999418258667,1.0459434986114502,1.2396734952926636,-0.17496813833713531 +0.6000000238418579,24.073549270629883,13.732985496520996,14.9999418258667,0.9772195219993591,1.1252025365829468,-0.1287081390619278 +0.6000000238418579,24.209775924682617,13.77934455871582,15.044938087463379,0.9600385427474976,1.2124184370040894,-0.17959414422512054 +0.6000000238418579,23.869211196899414,13.686627388000488,14.864951133728027,0.9371305108070374,1.2342225313186646,-0.11020414531230927 +0.6000000238418579,24.073549270629883,13.501190185546875,14.774956703186035,1.0459434986114502,1.2505754232406616,-0.14258615672588348 +0.6000000238418579,24.41411590576172,13.547550201416016,14.819953918457031,0.879860520362854,1.1033984422683716,-0.17496813833713531 +0.6000000238418579,24.14166259765625,13.686627388000488,15.044938087463379,0.8684064745903015,1.2887325286865234,-0.11020414531230927 +0.6000000238418579,24.073549270629883,13.640267372131348,14.95494556427002,0.8340445160865784,1.2941834926605225,-0.15183815360069275 +0.6000000238418579,24.14166259765625,13.501190185546875,14.864951133728027,0.9543115496635437,1.1252025365829468,-0.19809813797473907 +0.6000000238418579,24.482229232788086,13.454832077026367,15.089935302734375,0.942857563495636,1.1143004894256592,-0.17959414422512054 +0.6000000238418579,24.073549270629883,13.686627388000488,15.134932518005371,1.0230355262756348,1.163359522819519,-0.0870741531252861 +0.6000000238418579,23.93732452392578,13.686627388000488,14.819953918457031,1.0287625789642334,1.2778304815292358,-0.13333414494991302 +0.6000000238418579,24.073549270629883,13.686627388000488,14.909948348999023,0.982946515083313,1.2015165090560913,-0.15183815360069275 +0.6000000238418579,24.073549270629883,13.732985496520996,14.909948348999023,0.9142225384712219,1.1252025365829468,-0.14258615672588348 +0.6000000238418579,24.073549270629883,13.872062683105469,14.95494556427002,0.9714924693107605,1.2560265064239502,-0.08244814723730087 +0.6000000238418579,24.073549270629883,13.732985496520996,14.864951133728027,0.9657654762268066,1.2614775896072388,-0.02693614922463894 +0.6000000238418579,24.34600257873535,13.547550201416016,14.909948348999023,1.0230355262756348,1.2342225313186646,-0.11020414531230927 +0.6000000238418579,24.55034065246582,13.547550201416016,14.774956703186035,1.011581540107727,1.1143004894256592,-0.15183815360069275 +0.6000000238418579,24.34600257873535,13.732985496520996,15.044938087463379,0.9256765246391296,1.1906144618988037,-0.14258615672588348 +0.6000000238418579,24.41411590576172,13.732985496520996,14.9999418258667,0.9314035177230835,1.2778304815292358,-0.09170015156269073 +0.6000000238418579,24.277889251708984,13.77934455871582,14.864951133728027,0.982946515083313,1.1143004894256592,-0.11020414531230927 +0.6000000238418579,24.209775924682617,13.501190185546875,14.864951133728027,0.9485845565795898,1.217869520187378,-0.17034214735031128 +0.6000000238418579,24.277889251708984,13.686627388000488,15.134932518005371,0.9657654762268066,1.1688106060028076,-0.0870741531252861 +0.6000000238418579,24.073549270629883,13.640267372131348,14.9999418258667,1.0516705513000488,1.2669284343719482,-0.03618814796209335 +0.6000000238418579,23.869211196899414,13.59390926361084,14.9999418258667,0.9199495315551758,1.2505754232406616,-0.1287081390619278 +0.6000000238418579,23.93732452392578,13.686627388000488,14.819953918457031,1.0173084735870361,1.2614775896072388,-0.14258615672588348 +0.6000000238418579,24.55034065246582,13.686627388000488,14.9999418258667,0.8569524884223938,1.2941834926605225,-0.022310150787234306 +0.6000000238418579,24.00543785095215,13.686627388000488,14.95494556427002,0.9485845565795898,1.2723795175552368,-0.040814146399497986 +0.6000000238418579,24.14166259765625,13.59390926361084,14.774956703186035,0.9886735081672668,1.2887325286865234,-0.22585414350032806 +0.6000000238418579,24.55034065246582,13.686627388000488,14.819953918457031,1.011581540107727,1.1688106060028076,-0.15646414458751678 +0.6000000238418579,24.34600257873535,13.59390926361084,14.95494556427002,1.0631245374679565,1.2614775896072388,-0.13333414494991302 +0.6000000238418579,24.34600257873535,13.501190185546875,15.044938087463379,0.9371305108070374,1.2069674730300903,-0.13333414494991302 +0.6000000238418579,24.00543785095215,13.686627388000488,14.909948348999023,1.0344895124435425,1.2015165090560913,-0.19809813797473907 +0.6000000238418579,24.14166259765625,13.547550201416016,15.044938087463379,1.0287625789642334,1.1470065116882324,-0.18422015011310577 +0.6000000238418579,23.93732452392578,13.77934455871582,15.044938087463379,0.9543115496635437,1.2233206033706665,-0.09170015156269073 +0.6000000238418579,23.93732452392578,13.640267372131348,14.9999418258667,0.9944005012512207,1.2614775896072388,-0.06394414603710175 +0.6000000238418579,24.277889251708984,13.77934455871582,14.9999418258667,0.982946515083313,1.2832814455032349,-0.09170015156269073 +0.6000000238418579,24.14166259765625,13.547550201416016,14.909948348999023,1.0344895124435425,1.1688106060028076,-0.15646414458751678 +0.6000000238418579,24.41411590576172,13.732985496520996,14.95494556427002,0.9714924693107605,1.2560265064239502,-0.12408214807510376 +0.6000000238418579,24.209775924682617,13.872062683105469,15.044938087463379,0.9485845565795898,1.2233206033706665,-0.05469214916229248 +0.6000000238418579,24.277889251708984,13.501190185546875,14.639966011047363,0.9027684926986694,1.2723795175552368,-0.14258615672588348 +0.6000000238418579,24.209775924682617,13.59390926361084,14.95494556427002,0.9886735081672668,1.174261450767517,-0.13796015083789825 +0.6000000238418579,24.482229232788086,13.77934455871582,15.044938087463379,0.8454985618591309,1.174261450767517,-0.15183815360069275 +0.6000000238418579,24.14166259765625,13.547550201416016,14.819953918457031,1.0058544874191284,1.2233206033706665,-0.1148301437497139 +0.6000000238418579,24.209775924682617,13.547550201416016,14.864951133728027,0.9485845565795898,1.1252025365829468,-0.13796015083789825 +0.6000000238418579,24.277889251708984,13.408473014831543,14.95494556427002,1.0173084735870361,1.1470065116882324,-0.13333414494991302 +0.6000000238418579,24.073549270629883,13.732985496520996,14.95494556427002,0.8454985618591309,1.1851634979248047,-0.16109015047550201 +0.6000000238418579,24.14166259765625,13.732985496520996,14.864951133728027,1.080305576324463,1.3050854206085205,-0.07319615036249161 +0.6000000238418579,24.14166259765625,13.732985496520996,15.044938087463379,0.9886735081672668,1.1906144618988037,-0.09170015156269073 +0.6000000238418579,24.482229232788086,13.77934455871582,14.95494556427002,0.9543115496635437,1.0924965143203735,-0.13333414494991302 +0.6000000238418579,24.55034065246582,13.732985496520996,14.909948348999023,0.9657654762268066,1.163359522819519,-0.11945614963769913 +0.6000000238418579,24.34600257873535,13.732985496520996,14.909948348999023,0.9886735081672668,1.310536503791809,-0.07319615036249161 +0.6000000238418579,24.14166259765625,13.547550201416016,14.864951133728027,0.9256765246391296,1.2941834926605225,-0.16571614146232605 +0.6000000238418579,24.277889251708984,13.454832077026367,14.95494556427002,0.9886735081672668,1.2451244592666626,-0.13796015083789825 +0.6000000238418579,24.277889251708984,13.77934455871582,15.089935302734375,0.9256765246391296,1.2233206033706665,-0.1287081390619278 +0.6000000238418579,23.801097869873047,13.59390926361084,14.909948348999023,1.0001275539398193,1.174261450767517,-0.017684150487184525 +0.6000000238418579,24.00543785095215,13.686627388000488,14.819953918457031,0.9714924693107605,1.2124184370040894,-0.14721214771270752 +0.6000000238418579,23.93732452392578,13.59390926361084,15.134932518005371,0.9371305108070374,1.1960655450820923,-0.16109015047550201 +0.6000000238418579,23.73298454284668,13.686627388000488,14.909948348999023,0.9084955453872681,1.1688106060028076,-0.15646414458751678 +0.6000000238418579,24.34600257873535,13.686627388000488,14.95494556427002,0.9027684926986694,1.228771448135376,-0.09632615000009537 +0.6000000238418579,24.00543785095215,13.732985496520996,14.864951133728027,0.9772195219993591,1.310536503791809,-0.0870741531252861 +0.6000000238418579,24.277889251708984,13.59390926361084,14.9999418258667,0.9886735081672668,1.1688106060028076,-0.1888461410999298 +0.6000000238418579,24.34600257873535,13.732985496520996,14.95494556427002,1.0001275539398193,1.2669284343719482,-0.17496813833713531 +0.6000000238418579,24.482229232788086,13.59390926361084,15.089935302734375,0.9142225384712219,1.1797125339508057,-0.05006615072488785 +0.6000000238418579,24.34600257873535,13.501190185546875,14.774956703186035,0.9485845565795898,1.2233206033706665,-0.14258615672588348 +0.6000000238418579,24.14166259765625,13.59390926361084,15.044938087463379,0.9657654762268066,1.1851634979248047,-0.15183815360069275 +0.6000000238418579,24.482229232788086,13.77934455871582,15.179929733276367,0.9027684926986694,1.1361044645309448,-0.0870741531252861 +0.6000000238418579,24.14166259765625,13.640267372131348,14.95494556427002,0.982946515083313,1.2342225313186646,-0.08244814723730087 +0.6000000238418579,24.209775924682617,13.686627388000488,14.864951133728027,0.982946515083313,1.0979474782943726,-0.1888461410999298 +0.6000000238418579,24.14166259765625,13.59390926361084,14.95494556427002,1.0344895124435425,1.1470065116882324,-0.16571614146232605 +0.6000000238418579,24.14166259765625,13.686627388000488,15.044938087463379,0.8626794815063477,1.1797125339508057,-0.02693614922463894 +0.6000000238418579,24.686567306518555,13.732985496520996,14.95494556427002,0.9485845565795898,1.228771448135376,-0.05006615072488785 +0.6000000238418579,24.34600257873535,13.686627388000488,15.044938087463379,1.0402165651321411,1.2342225313186646,-0.1009521484375 +0.6000000238418579,24.482229232788086,13.640267372131348,14.95494556427002,1.0287625789642334,1.174261450767517,-0.14258615672588348 +0.6000000238418579,24.41411590576172,13.686627388000488,14.864951133728027,1.0573976039886475,1.2124184370040894,-0.1009521484375 +0.6000000238418579,24.34600257873535,13.686627388000488,14.95494556427002,0.982946515083313,1.2069674730300903,-0.06394414603710175 +0.6000000238418579,23.93732452392578,13.640267372131348,14.864951133728027,0.9142225384712219,1.35414457321167,-0.18422015011310577 +0.6000000238418579,23.93732452392578,13.547550201416016,14.774956703186035,0.9084955453872681,1.1797125339508057,-0.17959414422512054 +0.6000000238418579,24.277889251708984,13.640267372131348,14.9999418258667,1.0173084735870361,1.1851634979248047,-0.18422015011310577 +0.6000000238418579,23.93732452392578,13.732985496520996,14.864951133728027,0.9027684926986694,1.2069674730300903,-0.05931815132498741 +0.6000000238418579,24.073549270629883,13.686627388000488,14.909948348999023,0.9600385427474976,1.1797125339508057,-0.17959414422512054 +0.6000000238418579,24.00543785095215,13.59390926361084,15.089935302734375,0.9314035177230835,1.1470065116882324,-0.16109015047550201 +0.6000000238418579,24.209775924682617,13.732985496520996,14.9999418258667,0.8913145065307617,1.1252025365829468,-0.05931815132498741 +0.6000000238418579,24.277889251708984,13.686627388000488,14.95494556427002,0.9772195219993591,1.2778304815292358,-0.08244814723730087 +0.6000000238418579,24.277889251708984,13.686627388000488,14.909948348999023,1.0173084735870361,1.1688106060028076,-0.10557814687490463 +0.6000000238418579,24.209775924682617,13.501190185546875,15.089935302734375,0.9485845565795898,1.1851634979248047,-0.06394414603710175 +0.6000000238418579,24.073549270629883,13.686627388000488,14.95494556427002,1.0459434986114502,1.2015165090560913,-0.14721214771270752 +0.6000000238418579,24.277889251708984,13.686627388000488,14.909948348999023,0.9371305108070374,1.2342225313186646,-0.14721214771270752 +0.6000000238418579,23.93732452392578,13.640267372131348,14.774956703186035,1.0058544874191284,1.2233206033706665,-0.14258615672588348 +0.6000000238418579,24.00543785095215,13.454832077026367,14.9999418258667,0.9199495315551758,1.163359522819519,-0.18422015011310577 +0.6000000238418579,24.14166259765625,13.686627388000488,15.044938087463379,0.9084955453872681,1.1361044645309448,-0.14721214771270752 +0.6000000238418579,24.14166259765625,13.640267372131348,14.864951133728027,0.8626794815063477,1.1470065116882324,-0.07782214879989624 +0.6000000238418579,24.34600257873535,13.454832077026367,14.864951133728027,1.0344895124435425,1.2342225313186646,-0.15183815360069275 +0.6000000238418579,24.41411590576172,13.501190185546875,14.9999418258667,0.8684064745903015,1.163359522819519,-0.2304801493883133 +0.6000000238418579,24.34600257873535,13.825704574584961,14.95494556427002,1.0173084735870361,1.1361044645309448,-0.14258615672588348 +0.6000000238418579,24.482229232788086,13.686627388000488,14.909948348999023,1.0230355262756348,1.2669284343719482,-0.14258615672588348 +0.6000000238418579,24.34600257873535,13.59390926361084,14.909948348999023,0.982946515083313,1.2505754232406616,-0.03156214952468872 +0.6000000238418579,24.41411590576172,13.825704574584961,14.909948348999023,0.9142225384712219,1.1960655450820923,-0.13333414494991302 +0.6000000238418579,24.209775924682617,13.59390926361084,14.95494556427002,0.9485845565795898,1.2342225313186646,-0.09632615000009537 +0.6000000238418579,24.277889251708984,13.686627388000488,14.909948348999023,0.9199495315551758,1.2015165090560913,-0.07319615036249161 +0.6000000238418579,23.869211196899414,13.732985496520996,14.819953918457031,0.9142225384712219,1.2124184370040894,-0.16571614146232605 +0.6000000238418579,24.00543785095215,13.640267372131348,14.909948348999023,1.011581540107727,1.1415555477142334,-0.1148301437497139 +0.6000000238418579,23.801097869873047,13.686627388000488,14.909948348999023,0.982946515083313,1.1851634979248047,-0.14721214771270752 +0.6000000238418579,23.93732452392578,13.640267372131348,14.95494556427002,0.9714924693107605,1.1197514533996582,-0.09170015156269073 +0.6000000238418579,24.277889251708984,13.686627388000488,14.909948348999023,0.9772195219993591,1.1197514533996582,-0.18422015011310577 +0.6000000238418579,24.41411590576172,13.686627388000488,15.134932518005371,0.9371305108070374,1.2069674730300903,-0.17959414422512054 +0.6000000238418579,24.482229232788086,13.77934455871582,14.9999418258667,0.982946515083313,1.1906144618988037,-0.05931815132498741 +0.6000000238418579,24.209775924682617,13.732985496520996,14.864951133728027,0.982946515083313,1.174261450767517,-0.17034214735031128 +0.6000000238418579,24.482229232788086,13.686627388000488,14.9999418258667,0.9772195219993591,1.2124184370040894,0.023949850350618362 +0.6000000238418579,24.00543785095215,13.640267372131348,14.95494556427002,1.0230355262756348,1.174261450767517,-0.1287081390619278 +0.6000000238418579,24.00543785095215,13.732985496520996,15.044938087463379,0.9199495315551758,1.2451244592666626,-0.07319615036249161 +0.6000000238418579,24.209775924682617,13.77934455871582,14.864951133728027,0.9314035177230835,1.2451244592666626,-0.08244814723730087 +0.6000000238418579,23.869211196899414,13.77934455871582,14.864951133728027,0.8569524884223938,1.299634575843811,-0.2027241587638855 +0.6000000238418579,24.209775924682617,13.640267372131348,14.909948348999023,0.9772195219993591,1.174261450767517,-0.16109015047550201 +0.6000000238418579,24.34600257873535,13.732985496520996,15.089935302734375,1.0173084735870361,1.1579084396362305,-0.12408214807510376 +0.6000000238418579,24.34600257873535,13.686627388000488,14.909948348999023,1.0688515901565552,1.2015165090560913,-0.05931815132498741 +0.6000000238418579,24.41411590576172,13.454832077026367,14.774956703186035,1.086032509803772,1.2505754232406616,-0.06394414603710175 +0.6000000238418579,24.55034065246582,13.547550201416016,15.044938087463379,1.0344895124435425,1.1851634979248047,-0.15646414458751678 +0.6000000238418579,24.34600257873535,13.686627388000488,15.089935302734375,0.9027684926986694,1.1252025365829468,-0.05469214916229248 +0.6000000238418579,24.277889251708984,13.59390926361084,15.044938087463379,0.9714924693107605,1.2723795175552368,-0.1148301437497139 +0.6000000238418579,24.00543785095215,13.686627388000488,15.044938087463379,1.011581540107727,1.2614775896072388,-0.1009521484375 +0.6000000238418579,24.209775924682617,13.59390926361084,14.95494556427002,1.0516705513000488,1.2451244592666626,-0.1287081390619278 +0.6000000238418579,24.277889251708984,13.732985496520996,14.95494556427002,1.0344895124435425,1.2342225313186646,-0.12408214807510376 +0.6000000238418579,23.869211196899414,13.77934455871582,14.864951133728027,0.9657654762268066,1.2124184370040894,-0.05469214916229248 +0.6000000238418579,23.869211196899414,13.77934455871582,15.044938087463379,0.9714924693107605,1.2124184370040894,-0.19347214698791504 +0.6000000238418579,24.00543785095215,13.501190185546875,14.864951133728027,97.51153564453125,1.1306535005569458,97.00804138183594 +0.6000000238418579,24.34600257873535,13.732985496520996,14.864951133728027,0.9256765246391296,1.1851634979248047,-0.09632615000009537 +0.6000000238418579,24.41411590576172,13.686627388000488,14.95494556427002,0.9944005012512207,1.217869520187378,-0.05469214916229248 +0.6000000238418579,23.93732452392578,13.547550201416016,14.909948348999023,1.0516705513000488,1.2233206033706665,-0.06857015192508698 +0.6000000238418579,24.41411590576172,13.686627388000488,14.909948348999023,1.0001275539398193,1.2233206033706665,-0.1287081390619278 +0.6000000238418579,24.00543785095215,13.59390926361084,15.134932518005371,0.8111365437507629,1.2069674730300903,-0.09632615000009537 +0.6000000238418579,24.209775924682617,13.732985496520996,14.95494556427002,0.9600385427474976,1.2015165090560913,-0.08244814723730087 +0.6000000238418579,24.073549270629883,13.686627388000488,14.864951133728027,0.982946515083313,1.2832814455032349,-0.05006615072488785 +0.6000000238418579,23.869211196899414,13.501190185546875,14.774956703186035,0.9371305108070374,1.2505754232406616,-0.16571614146232605 +0.6000000238418579,24.277889251708984,13.686627388000488,14.864951133728027,0.879860520362854,1.217869520187378,-0.12408214807510376 +0.6000000238418579,24.14166259765625,13.732985496520996,14.909948348999023,0.9027684926986694,1.2124184370040894,-0.09632615000009537 +0.6000000238418579,24.482229232788086,13.59390926361084,15.044938087463379,0.9657654762268066,1.2069674730300903,-0.10557814687490463 +0.6000000238418579,24.34600257873535,13.547550201416016,14.864951133728027,0.9314035177230835,1.1960655450820923,-0.1287081390619278 +0.6000000238418579,24.277889251708984,13.640267372131348,15.089935302734375,1.0573976039886475,1.1197514533996582,-0.18422015011310577 +0.6000000238418579,24.618453979492188,13.640267372131348,15.044938087463379,0.8626794815063477,1.1960655450820923,-0.05931815132498741 +0.6000000238418579,24.277889251708984,13.59390926361084,15.044938087463379,0.9944005012512207,1.163359522819519,-0.15646414458751678 +0.6000000238418579,24.754680633544922,13.732985496520996,14.9999418258667,0.9886735081672668,1.1361044645309448,-0.18422015011310577 +0.6000000238418579,24.277889251708984,13.547550201416016,14.864951133728027,1.011581540107727,1.1688106060028076,-0.11020414531230927 +0.6000000238418579,24.277889251708984,13.59390926361084,14.9999418258667,0.9485845565795898,1.2015165090560913,-0.05006615072488785 +0.6000000238418579,23.93732452392578,13.686627388000488,14.819953918457031,0.9543115496635437,1.2723795175552368,-0.09170015156269073 +0.6000000238418579,24.00543785095215,13.547550201416016,15.089935302734375,1.0516705513000488,1.2778304815292358,-0.17959414422512054 +0.6000000238418579,24.41411590576172,13.640267372131348,14.9999418258667,1.0058544874191284,1.1361044645309448,-0.13333414494991302 +0.6000000238418579,23.93732452392578,13.732985496520996,14.774956703186035,0.9142225384712219,1.2560265064239502,-0.09170015156269073 +0.6000000238418579,24.34600257873535,13.640267372131348,14.95494556427002,0.9543115496635437,1.2233206033706665,-0.16109015047550201 +0.6000000238418579,24.14166259765625,13.640267372131348,14.729959487915039,0.942857563495636,1.1470065116882324,-0.13333414494991302 +0.6000000238418579,24.277889251708984,13.825704574584961,15.134932518005371,0.9485845565795898,1.228771448135376,-0.12408214807510376 +0.6000000238418579,24.209775924682617,13.686627388000488,14.95494556427002,0.8454985618591309,1.1524574756622314,-0.03156214952468872 +0.6000000238418579,23.93732452392578,13.686627388000488,14.9999418258667,0.982946515083313,1.2451244592666626,-0.10557814687490463 +0.6000000238418579,24.34600257873535,13.640267372131348,15.044938087463379,0.9314035177230835,1.1361044645309448,-0.15183815360069275 +0.6000000238418579,24.14166259765625,13.77934455871582,14.909948348999023,0.9543115496635437,1.1579084396362305,-0.13796015083789825 +0.6000000238418579,24.14166259765625,13.732985496520996,14.9999418258667,0.9944005012512207,1.365046501159668,-0.12408214807510376 +0.6000000238418579,24.073549270629883,13.732985496520996,14.95494556427002,1.0173084735870361,1.2778304815292358,-0.09170015156269073 +0.6000000238418579,24.14166259765625,13.686627388000488,15.044938087463379,0.9543115496635437,1.2505754232406616,-0.1888461410999298 +0.6000000238418579,24.34600257873535,13.640267372131348,14.9999418258667,0.9142225384712219,1.174261450767517,-0.14258615672588348 +0.6000000238418579,24.34600257873535,13.77934455871582,14.9999418258667,0.982946515083313,1.2505754232406616,-0.10557814687490463 +0.6000000238418579,24.41411590576172,13.686627388000488,15.044938087463379,0.8913145065307617,1.2233206033706665,-0.1287081390619278 +0.6000000238418579,24.277889251708984,13.454832077026367,14.729959487915039,0.9371305108070374,1.1906144618988037,-0.14721214771270752 +0.6000000238418579,24.618453979492188,13.59390926361084,15.179929733276367,0.9714924693107605,1.2124184370040894,-0.15646414458751678 +0.6000000238418579,24.14166259765625,13.547550201416016,14.819953918457031,1.0001275539398193,1.1906144618988037,-0.07782214879989624 +0.6000000238418579,24.073549270629883,13.501190185546875,14.9999418258667,1.080305576324463,1.2669284343719482,-0.06857015192508698 +0.6000000238418579,24.209775924682617,13.59390926361084,14.909948348999023,1.0287625789642334,1.1470065116882324,-0.0870741531252861 +0.6000000238418579,24.14166259765625,13.686627388000488,15.089935302734375,0.9371305108070374,1.1197514533996582,-0.14258615672588348 +0.6000000238418579,24.482229232788086,13.640267372131348,14.864951133728027,0.9314035177230835,1.2124184370040894,-0.1287081390619278 +0.6000000238418579,23.93732452392578,13.686627388000488,14.729959487915039,1.0573976039886475,1.2560265064239502,-0.1148301437497139 +0.6000000238418579,24.41411590576172,13.547550201416016,14.819953918457031,1.0287625789642334,1.2396734952926636,-0.1287081390619278 +0.6000000238418579,24.482229232788086,13.547550201416016,15.044938087463379,0.9600385427474976,1.2396734952926636,-0.09632615000009537 +0.6000000238418579,24.482229232788086,13.640267372131348,15.089935302734375,0.8913145065307617,1.1688106060028076,-0.09632615000009537 +0.6000000238418579,24.41411590576172,13.686627388000488,14.95494556427002,0.8626794815063477,1.217869520187378,-0.15646414458751678 +0.6000000238418579,23.869211196899414,13.59390926361084,14.9999418258667,0.9543115496635437,1.163359522819519,-0.21197615563869476 +0.6000000238418579,24.209775924682617,13.547550201416016,14.9999418258667,1.0058544874191284,1.1851634979248047,-0.14258615672588348 +0.6000000238418579,24.00543785095215,13.732985496520996,14.909948348999023,0.8569524884223938,1.1688106060028076,-0.040814146399497986 +0.6000000238418579,23.93732452392578,13.640267372131348,14.774956703186035,0.9485845565795898,1.2233206033706665,-0.1148301437497139 +0.6000000238418579,24.14166259765625,13.686627388000488,14.95494556427002,1.0058544874191284,1.163359522819519,-0.09170015156269073 +0.6000000238418579,24.073549270629883,13.640267372131348,14.95494556427002,0.9772195219993591,1.2069674730300903,-0.13796015083789825 +0.6000000238418579,24.34600257873535,13.686627388000488,14.95494556427002,0.9199495315551758,1.2560265064239502,-0.11945614963769913 +0.6000000238418579,24.073549270629883,13.59390926361084,14.864951133728027,1.0001275539398193,1.2451244592666626,-0.040814146399497986 +0.6000000238418579,24.482229232788086,13.547550201416016,14.864951133728027,1.0287625789642334,1.1415555477142334,-0.1148301437497139 +0.6000000238418579,24.34600257873535,13.686627388000488,14.9999418258667,0.9256765246391296,1.2015165090560913,-0.12408214807510376 +0.6000000238418579,24.209775924682617,13.77934455871582,14.819953918457031,0.9657654762268066,1.2941834926605225,-0.05006615072488785 +0.6000000238418579,24.34600257873535,13.547550201416016,14.909948348999023,0.9485845565795898,1.2451244592666626,-0.14258615672588348 +0.6000000238418579,24.073549270629883,13.547550201416016,14.68496322631836,1.0001275539398193,1.0870455503463745,-0.15183815360069275 +0.6000000238418579,24.55034065246582,13.59390926361084,15.179929733276367,0.9485845565795898,1.1361044645309448,-0.1287081390619278 +0.6000000238418579,23.869211196899414,13.59390926361084,14.95494556427002,1.0344895124435425,1.1960655450820923,-0.12408214807510376 +0.6000000238418579,24.209775924682617,13.547550201416016,14.9999418258667,0.9657654762268066,1.2614775896072388,-0.07319615036249161 +0.6000000238418579,24.14166259765625,13.547550201416016,15.089935302734375,1.0459434986114502,1.163359522819519,-0.14258615672588348 +0.6000000238418579,24.209775924682617,13.732985496520996,14.9999418258667,1.0001275539398193,1.1688106060028076,-0.13333414494991302 +0.6000000238418579,24.41411590576172,13.77934455871582,14.9999418258667,1.0001275539398193,1.2069674730300903,-0.1009521484375 +0.6000000238418579,24.073549270629883,13.59390926361084,14.909948348999023,0.9256765246391296,1.299634575843811,-0.1009521484375 +0.6000000238418579,24.41411590576172,13.732985496520996,14.95494556427002,1.0402165651321411,1.2778304815292358,-0.07782214879989624 +0.6000000238418579,24.482229232788086,13.77934455871582,14.909948348999023,0.9543115496635437,1.1033984422683716,-0.14721214771270752 +0.6000000238418579,24.34600257873535,13.732985496520996,14.9999418258667,0.8397715091705322,1.1960655450820923,-0.11945614963769913 +0.6000000238418579,24.34600257873535,13.640267372131348,14.95494556427002,0.9944005012512207,1.2069674730300903,-0.21197615563869476 +0.6000000238418579,23.869211196899414,13.59390926361084,14.9999418258667,0.9142225384712219,1.1033984422683716,-0.14721214771270752 +0.6000000238418579,24.14166259765625,13.686627388000488,14.95494556427002,0.9199495315551758,1.1851634979248047,-0.15646414458751678 +0.6000000238418579,24.073549270629883,13.732985496520996,14.9999418258667,0.8741335272789001,1.2015165090560913,-0.06394414603710175 +0.6000000238418579,23.869211196899414,13.640267372131348,14.864951133728027,0.9543115496635437,1.2723795175552368,-0.040814146399497986 +0.6000000238418579,24.209775924682617,13.686627388000488,15.044938087463379,0.9142225384712219,1.1524574756622314,-0.14258615672588348 +0.6000000238418579,24.277889251708984,13.732985496520996,14.909948348999023,0.9371305108070374,1.1361044645309448,-0.07319615036249161 +0.6000000238418579,24.34600257873535,13.872062683105469,14.9999418258667,1.0516705513000488,1.2342225313186646,-0.07782214879989624 +0.6000000238418579,24.073549270629883,13.77934455871582,14.95494556427002,0.9886735081672668,1.2832814455032349,-0.11945614963769913 +0.6000000238418579,24.277889251708984,13.547550201416016,14.774956703186035,1.0402165651321411,1.2941834926605225,-0.16571614146232605 +0.6000000238418579,24.482229232788086,13.686627388000488,14.9999418258667,1.0058544874191284,1.2233206033706665,-0.11945614963769913 +0.6000000238418579,24.55034065246582,13.640267372131348,15.044938087463379,1.0402165651321411,1.1960655450820923,-0.1287081390619278 +0.6000000238418579,24.55034065246582,13.640267372131348,14.909948348999023,0.9371305108070374,1.1851634979248047,-0.16109015047550201 +0.6000000238418579,24.073549270629883,13.59390926361084,14.95494556427002,0.9371305108070374,1.0870455503463745,-0.1888461410999298 +0.6000000238418579,24.34600257873535,13.59390926361084,15.044938087463379,1.0631245374679565,1.1415555477142334,-0.16109015047550201 +0.6000000238418579,24.209775924682617,13.825704574584961,14.95494556427002,0.9485845565795898,1.1797125339508057,-0.022310150787234306 +0.6000000238418579,24.209775924682617,13.732985496520996,14.909948348999023,1.080305576324463,1.217869520187378,0.014697848819196224 +0.6000000238418579,24.209775924682617,13.547550201416016,14.9999418258667,1.0344895124435425,1.2887325286865234,-0.09170015156269073 +0.6000000238418579,24.34600257873535,13.825704574584961,15.044938087463379,0.942857563495636,1.1033984422683716,-0.1148301437497139 +0.6000000238418579,24.14166259765625,13.59390926361084,14.95494556427002,0.9084955453872681,1.2669284343719482,-0.05931815132498741 +0.6000000238418579,24.277889251708984,13.872062683105469,14.9999418258667,0.9142225384712219,1.174261450767517,-0.1009521484375 +0.6000000238418579,24.34600257873535,13.59390926361084,14.909948348999023,0.9371305108070374,1.217869520187378,-0.14258615672588348 +0.6000000238418579,24.277889251708984,13.77934455871582,14.9999418258667,0.8626794815063477,1.1033984422683716,-0.20735014975070953 +0.6000000238418579,24.277889251708984,13.686627388000488,15.044938087463379,0.9657654762268066,1.1960655450820923,-0.0870741531252861 +0.6000000238418579,23.93732452392578,13.732985496520996,14.9999418258667,1.0173084735870361,1.228771448135376,-0.16109015047550201 +0.7000000476837158,23.801097869873047,13.640267372131348,14.864951133728027,0.9600385427474976,1.1415555477142334,-0.11945614963769913 +0.7000000476837158,24.209775924682617,16.282730102539062,17.204795837402344,1.2578425407409668,0.743632435798645,0.01932384818792343 +0.7000000476837158,23.93732452392578,16.190011978149414,17.24979019165039,1.2750235795974731,1.2832814455032349,-0.03618814796209335 +0.7000000476837158,24.277889251708984,16.0972957611084,17.24979019165039,1.320839524269104,1.4904195070266724,-0.13796015083789825 +0.7000000476837158,24.34600257873535,15.911858558654785,17.11480140686035,1.320839524269104,1.446811556816101,-0.09170015156269073 +0.7000000476837158,24.277889251708984,16.050935745239258,17.24979019165039,1.4067444801330566,1.3868504762649536,-0.15183815360069275 +0.7000000476837158,24.41411590576172,16.0972957611084,17.204795837402344,1.2692965269088745,1.4195564985275269,-0.05469214916229248 +0.7000000476837158,24.618453979492188,16.0972957611084,17.384782791137695,1.3036586046218872,1.566733479499817,-0.1009521484375 +0.7000000476837158,24.277889251708984,15.95821762084961,17.204795837402344,1.2864775657653809,1.4631645679473877,-0.17496813833713531 +0.7000000476837158,24.073549270629883,16.190011978149414,17.24979019165039,1.2692965269088745,1.4195564985275269,-0.09170015156269073 +0.7000000476837158,24.41411590576172,16.050935745239258,17.429779052734375,1.343747615814209,1.3214384317398071,-0.12408214807510376 +0.7000000476837158,24.073549270629883,16.00457763671875,17.24979019165039,1.2922046184539795,1.4522624015808105,-0.05931815132498741 +0.7000000476837158,24.073549270629883,15.95821762084961,17.294788360595703,1.246388554573059,1.4195564985275269,-0.09170015156269073 +0.7000000476837158,24.209775924682617,16.050935745239258,17.474777221679688,1.2578425407409668,1.365046501159668,-0.14258615672588348 +0.7000000476837158,24.14166259765625,16.00457763671875,17.429779052734375,1.246388554573059,1.3268895149230957,-0.04544014856219292 +0.7000000476837158,24.55034065246582,16.143653869628906,17.294788360595703,1.2979315519332886,1.4795174598693848,-0.06394414603710175 +0.7000000476837158,24.209775924682617,16.00457763671875,17.339784622192383,1.3609285354614258,1.4795174598693848,-0.03618814796209335 +0.7000000476837158,24.55034065246582,15.95821762084961,17.159799575805664,1.3552014827728271,1.506772518157959,-0.15646414458751678 +0.7000000476837158,24.34600257873535,16.00457763671875,17.294788360595703,1.2750235795974731,1.4250074625015259,-0.1148301437497139 +0.7000000476837158,24.34600257873535,16.050935745239258,17.339784622192383,1.315112590789795,1.446811556816101,-0.09632615000009537 +0.7000000476837158,24.073549270629883,16.050935745239258,17.159799575805664,1.320839524269104,1.446811556816101,-0.21197615563869476 +0.7000000476837158,23.93732452392578,15.95821762084961,17.294788360595703,1.315112590789795,1.4413604736328125,-0.17959414422512054 +0.7000000476837158,24.00543785095215,15.911858558654785,17.474777221679688,1.3036586046218872,1.3923015594482422,-0.16571614146232605 +0.7000000476837158,24.14166259765625,16.143653869628906,17.24979019165039,1.217753529548645,1.4195564985275269,-0.09632615000009537 +0.7000000476837158,24.209775924682617,16.143653869628906,17.294788360595703,1.3609285354614258,1.5394785404205322,-0.06394414603710175 +0.7000000476837158,24.277889251708984,16.0972957611084,17.384782791137695,1.3265665769577026,1.4086545705795288,-0.1148301437497139 +0.7000000476837158,24.209775924682617,16.0972957611084,17.339784622192383,1.2521154880523682,1.446811556816101,-0.05931815132498741 +0.7000000476837158,24.482229232788086,16.143653869628906,17.204795837402344,1.2120264768600464,1.4577134847640991,-0.1009521484375 +0.7000000476837158,24.41411590576172,16.143653869628906,17.294788360595703,1.189118504524231,1.4686155319213867,-0.07782214879989624 +0.7000000476837158,24.34600257873535,16.00457763671875,17.204795837402344,1.2979315519332886,1.4032034873962402,-0.12408214807510376 +0.7000000476837158,24.209775924682617,15.772782325744629,17.294788360595703,1.3093855381011963,1.3595954179763794,-0.18422015011310577 +0.7000000476837158,24.34600257873535,16.00457763671875,17.294788360595703,1.3265665769577026,1.4413604736328125,-0.11945614963769913 +0.7000000476837158,24.14166259765625,15.911858558654785,17.294788360595703,1.217753529548645,1.4522624015808105,-0.040814146399497986 +0.7000000476837158,24.277889251708984,16.143653869628906,17.384782791137695,1.2578425407409668,1.4740664958953857,-0.18422015011310577 +0.7000000476837158,24.277889251708984,15.95821762084961,17.429779052734375,1.2922046184539795,1.365046501159668,-0.17496813833713531 +0.7000000476837158,24.14166259765625,16.0972957611084,17.294788360595703,1.3723825216293335,1.4577134847640991,-0.08244814723730087 +0.7000000476837158,24.482229232788086,16.143653869628906,17.204795837402344,1.2120264768600464,1.4631645679473877,-0.09170015156269073 +0.7000000476837158,24.073549270629883,16.0972957611084,17.24979019165039,1.2922046184539795,1.5612825155258179,-0.1009521484375 +0.7000000476837158,24.482229232788086,16.00457763671875,17.11480140686035,1.2807505130767822,1.506772518157959,-0.18422015011310577 +0.7000000476837158,24.209775924682617,15.95821762084961,17.294788360595703,1.2120264768600464,1.4359095096588135,-0.09632615000009537 +0.7000000476837158,24.34600257873535,16.143653869628906,17.384782791137695,1.246388554573059,1.4577134847640991,-0.17034214735031128 +0.7000000476837158,24.073549270629883,16.0972957611084,17.339784622192383,1.4124715328216553,1.4686155319213867,-0.14721214771270752 +0.7000000476837158,23.869211196899414,15.911858558654785,17.11480140686035,1.2692965269088745,1.375948429107666,-0.1009521484375 +0.7000000476837158,24.14166259765625,15.95821762084961,17.384782791137695,1.3552014827728271,1.4359095096588135,-0.17959414422512054 +0.7000000476837158,24.00543785095215,16.190011978149414,17.339784622192383,1.2578425407409668,1.4359095096588135,-0.05931815132498741 +0.7000000476837158,23.869211196899414,16.143653869628906,17.339784622192383,1.3838365077972412,1.5285764932632446,-0.07319615036249161 +0.7000000476837158,24.073549270629883,16.00457763671875,17.204795837402344,1.2807505130767822,1.35414457321167,-0.14721214771270752 +0.7000000476837158,24.14166259765625,16.0972957611084,17.294788360595703,1.3036586046218872,1.365046501159668,-0.09632615000009537 +0.7000000476837158,24.482229232788086,16.143653869628906,17.339784622192383,1.3036586046218872,1.5285764932632446,-0.07319615036249161 +0.7000000476837158,24.41411590576172,16.143653869628906,17.339784622192383,1.1433024406433105,1.4086545705795288,-0.1148301437497139 +0.6000000238418579,24.34600257873535,16.00457763671875,17.11480140686035,1.3552014827728271,1.446811556816101,-0.15183815360069275 +0.6000000238418579,24.14166259765625,13.26939582824707,15.044938087463379,0.5935105085372925,1.2832814455032349,-0.22585414350032806 +0.6000000238418579,24.482229232788086,13.686627388000488,14.909948348999023,0.9944005012512207,1.2396734952926636,-0.16571614146232605 +0.6000000238418579,24.209775924682617,13.59390926361084,14.95494556427002,0.9142225384712219,1.228771448135376,-0.15646414458751678 +0.6000000238418579,24.209775924682617,13.59390926361084,14.864951133728027,0.9543115496635437,1.1361044645309448,-0.2027241587638855 +0.6000000238418579,24.41411590576172,13.547550201416016,15.134932518005371,0.9084955453872681,1.2069674730300903,-0.16571614146232605 +0.6000000238418579,24.34600257873535,13.825704574584961,14.9999418258667,0.8741335272789001,1.1361044645309448,-0.08244814723730087 +0.6000000238418579,24.482229232788086,13.77934455871582,15.089935302734375,1.0402165651321411,1.228771448135376,-0.022310150787234306 +0.6000000238418579,24.209775924682617,13.686627388000488,14.9999418258667,0.8970414996147156,1.228771448135376,-0.09632615000009537 +0.6000000238418579,24.55034065246582,13.77934455871582,15.044938087463379,1.0573976039886475,1.1579084396362305,-0.14721214771270752 +0.6000000238418579,24.482229232788086,13.872062683105469,15.134932518005371,0.9256765246391296,1.2015165090560913,-0.09632615000009537 +0.6000000238418579,24.34600257873535,13.732985496520996,15.089935302734375,1.0230355262756348,1.1851634979248047,-0.13333414494991302 +0.6000000238418579,24.209775924682617,13.547550201416016,15.044938087463379,1.0573976039886475,1.2614775896072388,-0.1888461410999298 +0.6000000238418579,24.34600257873535,13.59390926361084,14.9999418258667,0.8913145065307617,1.2069674730300903,-0.09632615000009537 +0.6000000238418579,24.34600257873535,13.640267372131348,15.044938087463379,0.9199495315551758,1.1470065116882324,-0.13333414494991302 +0.6000000238418579,24.14166259765625,13.59390926361084,15.089935302734375,1.0058544874191284,1.1579084396362305,-0.15646414458751678 +0.6000000238418579,24.073549270629883,13.501190185546875,14.95494556427002,0.9314035177230835,1.1033984422683716,-0.13796015083789825 +0.6000000238418579,24.00543785095215,13.640267372131348,15.134932518005371,0.9944005012512207,1.2015165090560913,-0.15183815360069275 +0.6000000238418579,24.14166259765625,13.732985496520996,14.9999418258667,0.8741335272789001,1.2124184370040894,-0.15183815360069275 +0.6000000238418579,24.14166259765625,13.77934455871582,14.864951133728027,1.0287625789642334,1.2233206033706665,-0.040814146399497986 +0.6000000238418579,24.277889251708984,13.686627388000488,14.9999418258667,0.9314035177230835,1.2941834926605225,-0.07782214879989624 +0.6000000238418579,24.34600257873535,13.59390926361084,14.819953918457031,0.9944005012512207,1.228771448135376,-0.14258615672588348 +0.6000000238418579,24.14166259765625,13.872062683105469,14.9999418258667,1.0001275539398193,1.2069674730300903,-0.14721214771270752 +0.6000000238418579,24.618453979492188,13.640267372131348,14.909948348999023,0.9485845565795898,1.2069674730300903,-0.13333414494991302 +0.6000000238418579,24.34600257873535,13.501190185546875,14.774956703186035,0.9886735081672668,1.228771448135376,-0.17959414422512054 +0.6000000238418579,24.073549270629883,13.59390926361084,15.089935302734375,0.942857563495636,1.163359522819519,-0.11020414531230927 +0.6000000238418579,24.34600257873535,13.686627388000488,15.089935302734375,0.8569524884223938,1.217869520187378,-0.17496813833713531 +0.6000000238418579,24.14166259765625,13.686627388000488,14.774956703186035,0.9772195219993591,1.1088495254516602,-0.12408214807510376 +0.6000000238418579,24.073549270629883,13.501190185546875,15.044938087463379,1.1032135486602783,1.2015165090560913,-0.13333414494991302 +0.6000000238418579,24.41411590576172,13.732985496520996,15.089935302734375,1.080305576324463,1.1415555477142334,-0.21197615563869476 +0.6000000238418579,24.14166259765625,13.686627388000488,14.95494556427002,0.9772195219993591,1.1797125339508057,-0.07782214879989624 +0.6000000238418579,24.34600257873535,13.686627388000488,14.819953918457031,0.8970414996147156,1.2396734952926636,-0.11945614963769913 +0.6000000238418579,23.869211196899414,13.640267372131348,14.909948348999023,1.0230355262756348,1.1906144618988037,-0.06394414603710175 +0.6000000238418579,24.482229232788086,13.686627388000488,15.044938087463379,1.1032135486602783,1.1797125339508057,-0.16109015047550201 +0.6000000238418579,24.618453979492188,13.686627388000488,14.864951133728027,1.0402165651321411,1.1797125339508057,-0.08244814723730087 +0.6000000238418579,24.482229232788086,13.686627388000488,14.909948348999023,0.9256765246391296,1.2941834926605225,-0.11020414531230927 +0.6000000238418579,24.14166259765625,13.501190185546875,14.864951133728027,1.011581540107727,1.2233206033706665,-0.14258615672588348 +0.6000000238418579,24.209775924682617,13.59390926361084,14.774956703186035,0.942857563495636,1.1906144618988037,-0.09632615000009537 +0.6000000238418579,24.209775924682617,13.732985496520996,15.044938087463379,0.942857563495636,1.1797125339508057,-0.05006615072488785 +0.6000000238418579,23.93732452392578,13.640267372131348,14.95494556427002,0.8283175230026245,1.2342225313186646,-0.1009521484375 +0.6000000238418579,23.93732452392578,13.59390926361084,14.819953918457031,1.0230355262756348,1.1960655450820923,-0.20735014975070953 +0.6000000238418579,24.00543785095215,13.501190185546875,14.9999418258667,0.942857563495636,1.1361044645309448,-0.11020414531230927 +0.6000000238418579,23.869211196899414,13.77934455871582,15.044938087463379,0.8741335272789001,1.1361044645309448,-0.12408214807510376 +0.6000000238418579,24.277889251708984,13.640267372131348,14.909948348999023,1.0402165651321411,1.228771448135376,-0.05931815132498741 +0.6000000238418579,24.34600257873535,13.640267372131348,14.909948348999023,0.9714924693107605,1.2614775896072388,-0.1009521484375 +0.6000000238418579,24.34600257873535,13.732985496520996,14.909948348999023,0.9485845565795898,1.163359522819519,-0.13796015083789825 +0.6000000238418579,24.41411590576172,13.77934455871582,14.864951133728027,0.8970414996147156,1.2233206033706665,-0.15183815360069275 +0.6000000238418579,24.34600257873535,13.732985496520996,15.089935302734375,0.9142225384712219,1.3323404788970947,-0.13333414494991302 +0.6000000238418579,24.482229232788086,13.501190185546875,14.864951133728027,1.011581540107727,1.2723795175552368,-0.15183815360069275 +0.6000000238418579,24.14166259765625,13.59390926361084,14.819953918457031,0.879860520362854,1.1797125339508057,-0.1287081390619278 +0.6000000238418579,24.41411590576172,13.547550201416016,14.95494556427002,0.9485845565795898,1.2342225313186646,-0.0870741531252861 +0.6000000238418579,24.073549270629883,13.686627388000488,15.089935302734375,0.9371305108070374,1.1579084396362305,-0.06394414603710175 +0.6000000238418579,24.277889251708984,13.686627388000488,14.864951133728027,0.9199495315551758,1.1851634979248047,-0.0870741531252861 +0.6000000238418579,24.14166259765625,13.501190185546875,14.9999418258667,1.0001275539398193,1.1361044645309448,-0.19809813797473907 +0.6000000238418579,24.209775924682617,13.640267372131348,14.9999418258667,0.8913145065307617,1.1415555477142334,-0.1148301437497139 +0.6000000238418579,24.41411590576172,13.77934455871582,15.089935302734375,0.9256765246391296,1.1906144618988037,-0.040814146399497986 +0.6000000238418579,24.073549270629883,13.640267372131348,14.68496322631836,0.9886735081672668,1.2778304815292358,-0.008432149887084961 +0.6000000238418579,24.482229232788086,13.686627388000488,14.9999418258667,0.9600385427474976,1.1470065116882324,-0.14258615672588348 +0.6000000238418579,24.277889251708984,13.686627388000488,14.95494556427002,0.9657654762268066,1.1851634979248047,-0.09632615000009537 +0.6000000238418579,24.277889251708984,13.732985496520996,14.9999418258667,0.9084955453872681,1.2887325286865234,-0.1287081390619278 +0.6000000238418579,24.073549270629883,13.547550201416016,14.95494556427002,0.8340445160865784,1.2342225313186646,-0.12408214807510376 +0.6000000238418579,24.00543785095215,13.547550201416016,14.774956703186035,1.0230355262756348,1.163359522819519,-0.16109015047550201 +0.6000000238418579,24.209775924682617,13.59390926361084,15.134932518005371,1.0001275539398193,1.163359522819519,-0.06394414603710175 +0.6000000238418579,24.14166259765625,13.547550201416016,14.95494556427002,1.0573976039886475,1.1688106060028076,-0.11020414531230927 +0.6000000238418579,24.00543785095215,13.686627388000488,14.9999418258667,1.0058544874191284,1.2233206033706665,-0.1009521484375 +0.6000000238418579,24.00543785095215,13.640267372131348,15.089935302734375,0.9314035177230835,1.1960655450820923,-0.1287081390619278 +0.6000000238418579,24.00543785095215,13.686627388000488,14.9999418258667,0.982946515083313,1.2451244592666626,-0.07319615036249161 +0.6000000238418579,24.277889251708984,13.77934455871582,15.134932518005371,0.8855875134468079,1.2451244592666626,-0.13796015083789825 +0.6000000238418579,24.34600257873535,13.732985496520996,14.95494556427002,0.9944005012512207,1.2505754232406616,-0.1148301437497139 +0.6000000238418579,24.41411590576172,13.640267372131348,14.95494556427002,0.9256765246391296,1.2233206033706665,-0.09170015156269073 +0.6000000238418579,24.34600257873535,13.732985496520996,14.9999418258667,0.9142225384712219,1.2233206033706665,-0.09632615000009537 +0.6000000238418579,24.482229232788086,13.686627388000488,14.909948348999023,0.982946515083313,1.1906144618988037,-0.1287081390619278 +0.6000000238418579,24.34600257873535,13.732985496520996,14.819953918457031,0.9886735081672668,1.2505754232406616,-0.10557814687490463 +0.6000000238418579,24.34600257873535,13.501190185546875,14.864951133728027,0.9485845565795898,1.174261450767517,-0.10557814687490463 +0.6000000238418579,24.482229232788086,13.501190185546875,15.044938087463379,0.9714924693107605,1.2124184370040894,-0.13333414494991302 +0.6000000238418579,24.34600257873535,13.732985496520996,14.9999418258667,0.8283175230026245,1.2015165090560913,-0.11020414531230927 +0.6000000238418579,24.14166259765625,13.59390926361084,14.95494556427002,0.982946515083313,1.2723795175552368,-0.15646414458751678 +0.6000000238418579,24.14166259765625,13.686627388000488,14.9999418258667,0.9714924693107605,1.1252025365829468,-0.17034214735031128 +0.6000000238418579,24.209775924682617,13.732985496520996,14.9999418258667,0.9199495315551758,1.1579084396362305,-0.1148301437497139 +0.6000000238418579,24.482229232788086,13.825704574584961,15.044938087463379,0.9256765246391296,1.3214384317398071,-0.05931815132498741 +0.6000000238418579,23.93732452392578,13.686627388000488,14.909948348999023,0.9772195219993591,1.2124184370040894,-0.06394414603710175 +0.6000000238418579,24.277889251708984,13.640267372131348,14.774956703186035,1.0516705513000488,1.2342225313186646,-0.11020414531230927 +0.6000000238418579,24.34600257873535,13.686627388000488,14.95494556427002,0.879860520362854,1.1960655450820923,-0.11020414531230927 +0.6000000238418579,24.41411590576172,13.59390926361084,14.9999418258667,0.9256765246391296,1.174261450767517,-0.1287081390619278 +0.6000000238418579,24.34600257873535,13.547550201416016,15.089935302734375,0.9600385427474976,1.3214384317398071,-0.13333414494991302 +0.6000000238418579,23.93732452392578,13.59390926361084,14.774956703186035,0.8397715091705322,1.1851634979248047,-0.15183815360069275 +0.6000000238418579,24.209775924682617,13.362112998962402,15.044938087463379,0.8454985618591309,1.1470065116882324,-0.05931815132498741 +0.6000000238418579,24.00543785095215,13.732985496520996,14.9999418258667,0.9142225384712219,1.174261450767517,-0.08244814723730087 +0.6000000238418579,24.073549270629883,13.59390926361084,15.134932518005371,0.9886735081672668,1.2941834926605225,-0.13796015083789825 +0.6000000238418579,24.209775924682617,13.686627388000488,15.089935302734375,1.0173084735870361,1.1088495254516602,-0.14258615672588348 +0.6000000238418579,24.00543785095215,13.686627388000488,15.089935302734375,0.9084955453872681,1.2233206033706665,-0.05931815132498741 +0.6000000238418579,24.482229232788086,13.640267372131348,15.044938087463379,1.0173084735870361,1.3268895149230957,-0.06857015192508698 +0.6000000238418579,24.209775924682617,13.547550201416016,14.819953918457031,1.1375755071640015,1.2342225313186646,-0.0870741531252861 +0.6000000238418579,24.55034065246582,13.59390926361084,14.909948348999023,0.982946515083313,1.3050854206085205,-0.07782214879989624 +0.6000000238418579,24.34600257873535,13.640267372131348,14.9999418258667,0.9314035177230835,1.1797125339508057,-0.06857015192508698 +0.6000000238418579,24.482229232788086,13.77934455871582,14.9999418258667,0.8626794815063477,1.2124184370040894,-0.05006615072488785 +0.6000000238418579,24.618453979492188,13.686627388000488,14.864951133728027,0.9944005012512207,1.2069674730300903,-0.12408214807510376 +0.6000000238418579,24.073549270629883,13.501190185546875,14.729959487915039,0.9027684926986694,1.174261450767517,-0.12408214807510376 +0.6000000238418579,24.277889251708984,13.59390926361084,15.179929733276367,0.982946515083313,1.174261450767517,-0.14258615672588348 +0.6000000238418579,24.14166259765625,13.547550201416016,14.9999418258667,0.8913145065307617,1.217869520187378,0.01932384818792343 +0.6000000238418579,24.14166259765625,13.77934455871582,14.909948348999023,0.942857563495636,1.2342225313186646,-0.16571614146232605 +0.6000000238418579,24.073549270629883,13.640267372131348,15.089935302734375,0.9772195219993591,1.174261450767517,-0.17959414422512054 +0.6000000238418579,24.41411590576172,13.732985496520996,15.044938087463379,0.9714924693107605,1.163359522819519,-0.11945614963769913 +0.6000000238418579,24.55034065246582,13.77934455871582,14.95494556427002,0.9371305108070374,1.2505754232406616,-0.06394414603710175 +0.6000000238418579,24.00543785095215,13.640267372131348,14.864951133728027,0.9600385427474976,1.2669284343719482,-0.06394414603710175 +0.6000000238418579,24.41411590576172,13.501190185546875,14.9999418258667,0.9371305108070374,1.1688106060028076,-0.14721214771270752 +0.6000000238418579,24.55034065246582,13.59390926361084,14.819953918457031,0.9199495315551758,1.1579084396362305,-0.07782214879989624 +0.6000000238418579,24.073549270629883,13.732985496520996,15.134932518005371,0.9714924693107605,1.1851634979248047,-0.13333414494991302 +0.6000000238418579,24.277889251708984,13.686627388000488,14.95494556427002,0.9084955453872681,1.217869520187378,-0.09632615000009537 +0.6000000238418579,23.93732452392578,13.59390926361084,14.729959487915039,0.982946515083313,1.2015165090560913,-0.16109015047550201 +0.6000000238418579,24.209775924682617,13.547550201416016,15.134932518005371,1.0001275539398193,1.2069674730300903,-0.17034214735031128 +0.6000000238418579,24.073549270629883,13.77934455871582,14.909948348999023,1.0688515901565552,1.217869520187378,-0.09170015156269073 +0.6000000238418579,24.14166259765625,13.732985496520996,14.95494556427002,0.9944005012512207,1.3214384317398071,-0.07782214879989624 +0.6000000238418579,24.073549270629883,13.640267372131348,14.9999418258667,0.9714924693107605,1.2451244592666626,-0.18422015011310577 +0.6000000238418579,24.209775924682617,13.77934455871582,15.044938087463379,0.9314035177230835,1.1197514533996582,-0.14258615672588348 +0.6000000238418579,24.482229232788086,13.732985496520996,14.95494556427002,0.9314035177230835,1.2505754232406616,-0.1148301437497139 +0.6000000238418579,24.14166259765625,13.686627388000488,14.909948348999023,0.8741335272789001,1.1851634979248047,-0.11945614963769913 +0.6000000238418579,24.41411590576172,13.640267372131348,14.864951133728027,1.0631245374679565,1.2505754232406616,-0.13333414494991302 +0.6000000238418579,24.34600257873535,13.732985496520996,14.9999418258667,0.9772195219993591,1.2069674730300903,-0.1009521484375 +0.6000000238418579,24.277889251708984,13.686627388000488,14.9999418258667,0.9199495315551758,1.2451244592666626,-0.09170015156269073 +0.6000000238418579,24.482229232788086,13.547550201416016,14.9999418258667,0.9256765246391296,1.1851634979248047,-0.20735014975070953 +0.6000000238418579,24.073549270629883,13.454832077026367,14.909948348999023,1.0459434986114502,1.1960655450820923,-0.14721214771270752 +0.6000000238418579,24.34600257873535,13.59390926361084,15.044938087463379,0.9084955453872681,1.1361044645309448,-0.19809813797473907 +0.6000000238418579,24.14166259765625,13.547550201416016,15.089935302734375,0.879860520362854,1.1197514533996582,-0.07782214879989624 +0.6000000238418579,24.209775924682617,13.640267372131348,14.95494556427002,1.080305576324463,1.2941834926605225,-0.0870741531252861 +0.6000000238418579,24.277889251708984,13.59390926361084,15.134932518005371,1.086032509803772,1.1906144618988037,-0.06394414603710175 +0.6000000238418579,24.34600257873535,13.732985496520996,14.9999418258667,0.942857563495636,1.1252025365829468,-0.09170015156269073 +0.6000000238418579,24.482229232788086,13.732985496520996,14.9999418258667,0.8913145065307617,1.2342225313186646,-0.1148301437497139 +0.6000000238418579,24.073549270629883,13.59390926361084,14.864951133728027,1.0402165651321411,1.217869520187378,-0.0870741531252861 +0.6000000238418579,24.34600257873535,13.547550201416016,14.774956703186035,1.0344895124435425,1.299634575843811,-0.15646414458751678 +0.6000000238418579,24.41411590576172,13.501190185546875,14.95494556427002,0.9371305108070374,1.2069674730300903,-0.09170015156269073 +0.6000000238418579,24.34600257873535,13.686627388000488,15.089935302734375,0.8454985618591309,1.1579084396362305,-0.09170015156269073 +0.6000000238418579,24.073549270629883,13.640267372131348,15.044938087463379,0.9714924693107605,1.2941834926605225,-0.19347214698791504 +0.6000000238418579,23.869211196899414,13.59390926361084,14.819953918457031,0.9886735081672668,1.0870455503463745,-0.16571614146232605 +0.6000000238418579,24.073549270629883,13.408473014831543,15.089935302734375,1.011581540107727,1.2342225313186646,-0.1287081390619278 +0.6000000238418579,23.73298454284668,13.77934455871582,15.044938087463379,0.9543115496635437,1.1524574756622314,-0.1009521484375 +0.6000000238418579,24.209775924682617,13.547550201416016,14.9999418258667,0.9944005012512207,1.2396734952926636,-0.11945614963769913 +0.6000000238418579,23.93732452392578,13.59390926361084,14.95494556427002,1.0230355262756348,1.2342225313186646,-0.12408214807510376 +0.6000000238418579,24.41411590576172,13.640267372131348,14.9999418258667,0.942857563495636,1.1470065116882324,-0.12408214807510376 +0.6000000238418579,24.41411590576172,13.77934455871582,14.95494556427002,0.9714924693107605,1.2505754232406616,-0.06857015192508698 +0.6000000238418579,24.34600257873535,13.732985496520996,14.95494556427002,0.8970414996147156,1.2887325286865234,-0.0870741531252861 +0.6000000238418579,24.34600257873535,13.547550201416016,14.95494556427002,1.0287625789642334,1.2505754232406616,-0.05469214916229248 +0.6000000238418579,24.277889251708984,13.640267372131348,14.95494556427002,0.8454985618591309,1.2069674730300903,-0.15183815360069275 +0.6000000238418579,24.34600257873535,13.640267372131348,14.9999418258667,0.8855875134468079,1.2560265064239502,-0.14721214771270752 +0.6000000238418579,24.14166259765625,13.686627388000488,14.819953918457031,1.0058544874191284,1.1960655450820923,-0.17034214735031128 +0.6000000238418579,24.14166259765625,13.501190185546875,14.909948348999023,1.011581540107727,1.1579084396362305,-0.1287081390619278 +0.6000000238418579,24.209775924682617,13.501190185546875,14.9999418258667,0.9485845565795898,1.228771448135376,-0.13333414494991302 +0.6000000238418579,24.277889251708984,13.686627388000488,14.9999418258667,0.9772195219993591,1.1579084396362305,-0.09632615000009537 +0.6000000238418579,24.482229232788086,13.59390926361084,14.909948348999023,1.0688515901565552,1.2233206033706665,-0.06857015192508698 +0.6000000238418579,24.14166259765625,13.640267372131348,14.95494556427002,1.0459434986114502,1.217869520187378,-0.09170015156269073 +0.6000000238418579,24.41411590576172,13.77934455871582,14.9999418258667,0.9714924693107605,1.1197514533996582,-0.12408214807510376 +0.6000000238418579,24.34600257873535,13.77934455871582,15.044938087463379,0.8913145065307617,1.2505754232406616,-0.14721214771270752 +0.6000000238418579,24.34600257873535,13.77934455871582,14.864951133728027,1.0631245374679565,1.2342225313186646,-0.1148301437497139 +0.6000000238418579,24.073549270629883,13.640267372131348,14.774956703186035,1.0745785236358643,1.2124184370040894,-0.1888461410999298 +0.6000000238418579,24.14166259765625,13.454832077026367,14.864951133728027,0.9371305108070374,1.1579084396362305,-0.14258615672588348 +0.6000000238418579,24.00543785095215,13.59390926361084,15.044938087463379,1.011581540107727,1.217869520187378,-0.1148301437497139 +0.6000000238418579,23.869211196899414,13.686627388000488,14.95494556427002,1.0173084735870361,1.2451244592666626,-0.13796015083789825 +0.6000000238418579,24.073549270629883,13.547550201416016,14.819953918457031,0.9256765246391296,1.0979474782943726,-0.1888461410999298 +0.6000000238418579,24.209775924682617,13.547550201416016,15.044938087463379,0.942857563495636,1.2233206033706665,-0.17034214735031128 +0.6000000238418579,24.34600257873535,13.640267372131348,14.9999418258667,0.9886735081672668,1.1579084396362305,-0.1009521484375 +0.6000000238418579,24.277889251708984,13.686627388000488,14.95494556427002,0.9371305108070374,1.3214384317398071,-0.07782214879989624 +0.6000000238418579,24.618453979492188,13.77934455871582,14.864951133728027,1.0344895124435425,1.2233206033706665,-0.12408214807510376 +0.6000000238418579,24.55034065246582,13.59390926361084,15.134932518005371,1.011581540107727,1.1851634979248047,-0.11020414531230927 +0.6000000238418579,24.00543785095215,13.77934455871582,14.909948348999023,1.011581540107727,1.2669284343719482,-0.14721214771270752 +0.6000000238418579,24.618453979492188,13.640267372131348,14.95494556427002,0.9657654762268066,1.1960655450820923,-0.06857015192508698 +0.6000000238418579,24.073549270629883,13.547550201416016,14.819953918457031,0.9371305108070374,1.2396734952926636,-0.15183815360069275 +0.6000000238418579,24.14166259765625,13.59390926361084,14.729959487915039,0.942857563495636,1.1470065116882324,-0.11020414531230927 +0.6000000238418579,24.14166259765625,13.686627388000488,14.95494556427002,1.0173084735870361,1.2723795175552368,-0.16109015047550201 +0.6000000238418579,24.209775924682617,13.686627388000488,14.909948348999023,0.9199495315551758,1.2069674730300903,-0.1148301437497139 +0.6000000238418579,24.482229232788086,13.686627388000488,14.909948348999023,1.0402165651321411,1.0870455503463745,-0.2027241587638855 +0.6000000238418579,24.482229232788086,13.59390926361084,14.9999418258667,0.9714924693107605,1.1470065116882324,-0.11020414531230927 +0.6000000238418579,24.482229232788086,13.825704574584961,15.089935302734375,0.9600385427474976,1.1470065116882324,-0.1287081390619278 +0.6000000238418579,24.482229232788086,13.732985496520996,15.044938087463379,1.0631245374679565,1.2560265064239502,-0.07319615036249161 +0.6000000238418579,24.55034065246582,13.686627388000488,14.909948348999023,1.0688515901565552,1.2396734952926636,-0.08244814723730087 +0.6000000238418579,24.482229232788086,13.825704574584961,14.909948348999023,0.8741335272789001,1.1197514533996582,-0.16571614146232605 +0.6000000238418579,24.277889251708984,13.640267372131348,14.95494556427002,0.9886735081672668,1.2560265064239502,-0.1287081390619278 +0.6000000238418579,24.209775924682617,13.872062683105469,14.95494556427002,0.8454985618591309,1.2069674730300903,-0.14258615672588348 +0.6000000238418579,24.14166259765625,13.408473014831543,14.909948348999023,0.9772195219993591,1.2451244592666626,-0.1888461410999298 +0.6000000238418579,24.277889251708984,13.640267372131348,14.9999418258667,0.9256765246391296,1.1361044645309448,-0.19809813797473907 +0.6000000238418579,24.073549270629883,13.59390926361084,15.044938087463379,0.9485845565795898,1.2233206033706665,-0.0870741531252861 +0.6000000238418579,24.14166259765625,13.59390926361084,14.95494556427002,0.9142225384712219,1.1579084396362305,-0.06394414603710175 +0.6000000238418579,24.34600257873535,13.686627388000488,14.9999418258667,0.8913145065307617,1.0434374809265137,-0.18422015011310577 +0.6000000238418579,24.277889251708984,13.547550201416016,14.95494556427002,0.942857563495636,1.1906144618988037,-0.0870741531252861 +0.6000000238418579,24.277889251708984,13.825704574584961,14.95494556427002,0.9944005012512207,1.1906144618988037,-0.14258615672588348 +0.6000000238418579,24.209775924682617,13.686627388000488,14.9999418258667,0.9543115496635437,1.2233206033706665,-0.09170015156269073 +0.6000000238418579,24.41411590576172,13.59390926361084,14.909948348999023,1.0459434986114502,1.217869520187378,-0.15183815360069275 +0.6000000238418579,24.14166259765625,13.825704574584961,14.819953918457031,0.9256765246391296,1.2069674730300903,-0.08244814723730087 +0.6000000238418579,23.93732452392578,13.686627388000488,14.95494556427002,0.9027684926986694,1.2069674730300903,-0.1148301437497139 +0.6000000238418579,24.209775924682617,13.640267372131348,14.864951133728027,1.0173084735870361,1.2723795175552368,-0.16109015047550201 +0.6000000238418579,24.073549270629883,13.59390926361084,14.819953918457031,0.8626794815063477,1.2396734952926636,-0.16571614146232605 +0.6000000238418579,24.34600257873535,13.59390926361084,14.729959487915039,1.0173084735870361,1.1197514533996582,-0.13333414494991302 +0.6000000238418579,24.209775924682617,13.686627388000488,15.134932518005371,0.9199495315551758,1.1906144618988037,-0.13333414494991302 +0.6000000238418579,24.41411590576172,13.640267372131348,14.864951133728027,0.9600385427474976,1.2069674730300903,-0.07782214879989624 +0.6000000238418579,24.686567306518555,13.686627388000488,14.819953918457031,0.9543115496635437,1.1524574756622314,-0.20735014975070953 +0.6000000238418579,24.482229232788086,13.640267372131348,15.134932518005371,1.0230355262756348,1.1252025365829468,-0.17034214735031128 +0.6000000238418579,24.55034065246582,13.640267372131348,15.134932518005371,0.8855875134468079,1.1470065116882324,-0.1148301437497139 +0.6000000238418579,24.34600257873535,13.640267372131348,14.819953918457031,0.9714924693107605,1.310536503791809,-0.07782214879989624 +0.6000000238418579,24.277889251708984,13.59390926361084,14.95494556427002,1.0631245374679565,1.2015165090560913,-0.1009521484375 +0.6000000238418579,24.073549270629883,13.732985496520996,14.95494556427002,0.982946515083313,1.1524574756622314,-0.1009521484375 diff --git a/results/Load 10 branch 1/results_CORE_duty70%_VHigh24.csv b/results/Load 10 branch 1/results_CORE_duty70%_VHigh24.csv new file mode 100644 index 0000000000000000000000000000000000000000..01265942afb5921daf71eed740f75e8e13eebc82 --- /dev/null +++ b/results/Load 10 branch 1/results_CORE_duty70%_VHigh24.csv @@ -0,0 +1,501 @@ +duty_cycle,Vhigh_value,V1_low_value,V2_low_value,Ihigh_value,I1_low_value,I2_low_value +0.10000000149011612,24.41411590576172,1.9577994346618652,3.2107274532318115,0.2498904913663864,-0.0031545525416731834,-0.14721214771270752 +0.20000000298023224,24.277889251708984,1.8187223672866821,3.0307395458221436,0.2269824892282486,0.04590445011854172,-0.1287081390619278 +0.30000001192092896,24.14166259765625,4.461185455322266,5.415580749511719,0.4045194983482361,-0.01405655313283205,-0.17034214735031128 +0.4000000059604645,24.34600257873535,7.150007247924805,8.025406837463379,0.41024649143218994,-0.008605552837252617,-0.17496813833713531 +0.5,24.277889251708984,9.467958450317383,10.185262680053711,0.5935105085372925,0.1658264398574829,-0.0870741531252861 +0.6000000238418579,23.93732452392578,11.646831512451172,12.390115737915039,0.776774525642395,0.33480745553970337,-0.008432149887084961 +0.7000000476837158,24.14166259765625,13.918421745300293,14.594968795776367,1.0573976039886475,0.5037884712219238,-0.05469214916229248 +0.7000000476837158,24.277889251708984,16.282730102539062,16.889816284179688,1.2807505130767822,0.7654364705085754,-0.02693614922463894 +0.7000000476837158,23.73298454284668,15.865500450134277,17.069805145263672,1.2062995433807373,1.163359522819519,-0.05931815132498741 +0.7000000476837158,24.073549270629883,16.00457763671875,17.02480697631836,1.2750235795974731,1.4086545705795288,-0.05469214916229248 +0.7000000476837158,24.14166259765625,15.819140434265137,17.11480140686035,1.3036586046218872,1.4522624015808105,-0.14721214771270752 +0.7000000476837158,24.277889251708984,15.819140434265137,17.204795837402344,1.3093855381011963,1.3377915620803833,-0.15183815360069275 +0.7000000476837158,24.209775924682617,16.00457763671875,17.11480140686035,1.2062995433807373,1.4032034873962402,-0.09170015156269073 +0.7000000476837158,23.869211196899414,16.00457763671875,17.294788360595703,1.1948455572128296,1.566733479499817,-0.04544014856219292 +0.7000000476837158,24.277889251708984,15.95821762084961,17.069805145263672,1.2864775657653809,1.4740664958953857,-0.11020414531230927 +0.7000000476837158,24.00543785095215,16.00457763671875,17.204795837402344,1.343747615814209,1.4359095096588135,-0.11945614963769913 +0.7000000476837158,23.93732452392578,16.0972957611084,17.159799575805664,1.2979315519332886,1.446811556816101,-0.11945614963769913 +0.7000000476837158,24.14166259765625,16.0972957611084,17.339784622192383,1.3036586046218872,1.4849685430526733,-0.14258615672588348 +0.7000000476837158,24.00543785095215,16.143653869628906,17.24979019165039,1.3093855381011963,1.4849685430526733,-0.22122815251350403 +0.7000000476837158,23.93732452392578,15.911858558654785,17.02480697631836,1.246388554573059,1.375948429107666,-0.11945614963769913 +0.7000000476837158,24.34600257873535,16.00457763671875,17.294788360595703,1.2406615018844604,1.3323404788970947,-0.18422015011310577 +0.7000000476837158,24.34600257873535,16.00457763671875,17.429779052734375,1.2005724906921387,1.506772518157959,-0.07319615036249161 +0.7000000476837158,24.209775924682617,16.0972957611084,17.159799575805664,1.315112590789795,1.4849685430526733,-0.08244814723730087 +0.7000000476837158,24.277889251708984,16.190011978149414,17.294788360595703,1.3036586046218872,1.4686155319213867,-0.21197615563869476 +0.7000000476837158,24.55034065246582,16.00457763671875,17.474777221679688,1.3494744300842285,1.3268895149230957,-0.11945614963769913 +0.7000000476837158,24.34600257873535,16.050935745239258,17.429779052734375,1.217753529548645,1.4849685430526733,-0.09632615000009537 +0.7000000476837158,24.277889251708984,16.143653869628906,17.159799575805664,1.2692965269088745,1.4522624015808105,-0.1009521484375 +0.7000000476837158,24.073549270629883,16.00457763671875,17.159799575805664,1.3723825216293335,1.5176745653152466,-0.1287081390619278 +0.7000000476837158,24.073549270629883,15.911858558654785,17.204795837402344,1.1948455572128296,1.4304585456848145,-0.15646414458751678 +0.7000000476837158,24.209775924682617,15.911858558654785,17.339784622192383,1.246388554573059,1.4413604736328125,-0.15183815360069275 +0.7000000476837158,23.73298454284668,16.050935745239258,17.24979019165039,1.2807505130767822,1.4904195070266724,-0.14258615672588348 +0.7000000476837158,23.869211196899414,16.0972957611084,17.204795837402344,1.2521154880523682,1.3432425260543823,-0.15183815360069275 +0.7000000476837158,24.00543785095215,15.95821762084961,17.294788360595703,1.2864775657653809,1.4195564985275269,-0.2166021466255188 +0.7000000476837158,24.14166259765625,16.190011978149414,17.384782791137695,1.223480463027954,1.4849685430526733,-0.1287081390619278 +0.7000000476837158,24.209775924682617,16.0972957611084,17.204795837402344,1.189118504524231,1.4359095096588135,-0.07782214879989624 +0.7000000476837158,24.073549270629883,16.190011978149414,17.24979019165039,1.2864775657653809,1.4958704710006714,-0.06394414603710175 +0.7000000476837158,24.34600257873535,16.0972957611084,17.384782791137695,1.2521154880523682,1.4086545705795288,-0.14258615672588348 +0.7000000476837158,24.277889251708984,16.0972957611084,17.204795837402344,1.246388554573059,1.4359095096588135,-0.15183815360069275 +0.7000000476837158,24.482229232788086,16.236371994018555,17.339784622192383,1.1833914518356323,1.5394785404205322,-0.09170015156269073 +0.7000000476837158,24.41411590576172,16.00457763671875,17.294788360595703,1.2292075157165527,1.4522624015808105,-0.1009521484375 +0.7000000476837158,24.209775924682617,15.865500450134277,17.24979019165039,1.246388554573059,1.4304585456848145,-0.17959414422512054 +0.7000000476837158,24.482229232788086,16.00457763671875,17.474777221679688,1.2922046184539795,1.3923015594482422,-0.09632615000009537 +0.7000000476837158,24.34600257873535,16.00457763671875,17.24979019165039,1.320839524269104,1.4195564985275269,-0.07782214879989624 +0.7000000476837158,24.073549270629883,16.00457763671875,17.24979019165039,1.343747615814209,1.446811556816101,-0.13333414494991302 +0.7000000476837158,24.34600257873535,16.143653869628906,17.24979019165039,1.2979315519332886,1.4631645679473877,-0.13333414494991302 +0.7000000476837158,24.277889251708984,16.0972957611084,17.384782791137695,1.223480463027954,1.3595954179763794,-0.07782214879989624 +0.7000000476837158,24.073549270629883,16.0972957611084,17.384782791137695,1.2406615018844604,1.4086545705795288,-0.11020414531230927 +0.7000000476837158,23.801097869873047,16.0972957611084,17.159799575805664,1.320839524269104,1.4686155319213867,-0.11020414531230927 +0.7000000476837158,24.00543785095215,15.865500450134277,17.159799575805664,1.3723825216293335,1.4849685430526733,-0.17959414422512054 +0.7000000476837158,24.482229232788086,15.911858558654785,17.339784622192383,1.2292075157165527,1.50132155418396,-0.09632615000009537 +0.7000000476837158,24.00543785095215,16.050935745239258,17.429779052734375,1.2635695934295654,1.4250074625015259,-0.1148301437497139 +0.7000000476837158,24.277889251708984,16.0972957611084,17.294788360595703,1.2979315519332886,1.5340274572372437,-0.14258615672588348 +0.7000000476837158,24.34600257873535,15.911858558654785,17.24979019165039,1.2864775657653809,1.3868504762649536,-0.18422015011310577 +0.7000000476837158,24.34600257873535,15.911858558654785,17.429779052734375,1.2635695934295654,1.3923015594482422,-0.17034214735031128 +0.7000000476837158,24.55034065246582,16.143653869628906,17.474777221679688,1.223480463027954,1.3595954179763794,-0.16109015047550201 +0.7000000476837158,24.073549270629883,16.00457763671875,17.339784622192383,1.246388554573059,1.5340274572372437,-0.09170015156269073 +0.7000000476837158,24.41411590576172,16.0972957611084,17.294788360595703,1.2979315519332886,1.506772518157959,-0.06394414603710175 +0.7000000476837158,24.00543785095215,16.190011978149414,17.519773483276367,1.2349345684051514,1.4086545705795288,-0.14258615672588348 +0.7000000476837158,24.00543785095215,16.050935745239258,17.429779052734375,1.189118504524231,1.4413604736328125,-0.13796015083789825 +0.7000000476837158,24.34600257873535,16.00457763671875,17.384782791137695,1.2292075157165527,1.4522624015808105,-0.13333414494991302 +0.7000000476837158,24.209775924682617,15.95821762084961,17.204795837402344,1.1833914518356323,1.506772518157959,-0.13796015083789825 +0.7000000476837158,24.073549270629883,16.00457763671875,17.159799575805664,1.2349345684051514,1.375948429107666,-0.1287081390619278 +0.7000000476837158,24.00543785095215,16.0972957611084,17.429779052734375,1.343747615814209,1.4522624015808105,-0.12408214807510376 +0.7000000476837158,24.34600257873535,15.95821762084961,17.24979019165039,1.2120264768600464,1.365046501159668,-0.040814146399497986 +0.7000000476837158,24.482229232788086,16.050935745239258,17.204795837402344,1.2578425407409668,1.4413604736328125,-0.14258615672588348 +0.7000000476837158,24.209775924682617,16.00457763671875,17.339784622192383,1.2406615018844604,1.375948429107666,-0.19809813797473907 +0.7000000476837158,24.55034065246582,16.0972957611084,17.384782791137695,1.320839524269104,1.4522624015808105,-0.1009521484375 +0.7000000476837158,24.754680633544922,16.0972957611084,17.339784622192383,1.2349345684051514,1.5394785404205322,-0.11020414531230927 +0.7000000476837158,24.14166259765625,16.143653869628906,17.204795837402344,1.2692965269088745,1.4577134847640991,-0.1009521484375 +0.7000000476837158,24.073549270629883,16.00457763671875,17.159799575805664,1.2750235795974731,1.4740664958953857,-0.17034214735031128 +0.7000000476837158,24.00543785095215,16.0972957611084,17.204795837402344,1.217753529548645,1.4904195070266724,-0.14258615672588348 +0.7000000476837158,24.277889251708984,16.050935745239258,17.339784622192383,1.3723825216293335,1.4141054153442383,-0.1287081390619278 +0.7000000476837158,23.869211196899414,16.0972957611084,17.294788360595703,1.2750235795974731,1.4304585456848145,-0.07319615036249161 +0.7000000476837158,23.801097869873047,15.911858558654785,17.159799575805664,1.2062995433807373,1.4250074625015259,-0.13796015083789825 +0.7000000476837158,24.073549270629883,15.95821762084961,17.519773483276367,1.2750235795974731,1.3432425260543823,-0.14721214771270752 +0.7000000476837158,23.93732452392578,16.00457763671875,17.384782791137695,1.343747615814209,1.365046501159668,-0.15183815360069275 +0.7000000476837158,24.073549270629883,16.190011978149414,17.339784622192383,1.2349345684051514,1.5558315515518188,-0.07319615036249161 +0.7000000476837158,24.14166259765625,16.050935745239258,17.339784622192383,1.3322936296463013,1.4577134847640991,-0.1009521484375 +0.7000000476837158,24.209775924682617,16.143653869628906,17.429779052734375,1.3666554689407349,1.4304585456848145,-0.1009521484375 +0.7000000476837158,24.34600257873535,16.190011978149414,17.24979019165039,1.3781094551086426,1.4522624015808105,-0.13333414494991302 +0.7000000476837158,24.209775924682617,16.282730102539062,17.204795837402344,1.160483479499817,1.506772518157959,-0.1009521484375 +0.7000000476837158,24.277889251708984,16.00457763671875,17.384782791137695,1.1948455572128296,1.4958704710006714,-0.14258615672588348 +0.7000000476837158,24.41411590576172,15.95821762084961,17.159799575805664,1.3093855381011963,1.3813995122909546,-0.15183815360069275 +0.7000000476837158,24.277889251708984,16.00457763671875,17.339784622192383,1.2750235795974731,1.4032034873962402,-0.13796015083789825 +0.7000000476837158,24.41411590576172,16.143653869628906,17.384782791137695,1.2864775657653809,1.4740664958953857,-0.14721214771270752 +0.7000000476837158,24.277889251708984,15.95821762084961,17.24979019165039,1.3895634412765503,1.4904195070266724,-0.15646414458751678 +0.7000000476837158,24.34600257873535,15.95821762084961,17.294788360595703,1.2750235795974731,1.3868504762649536,-0.19809813797473907 +0.7000000476837158,24.209775924682617,16.0972957611084,17.24979019165039,1.223480463027954,1.3868504762649536,-0.08244814723730087 +0.7000000476837158,24.277889251708984,16.190011978149414,17.384782791137695,1.343747615814209,1.4522624015808105,-0.06394414603710175 +0.7000000476837158,23.869211196899414,16.0972957611084,17.204795837402344,1.2922046184539795,1.512223482131958,-0.040814146399497986 +0.7000000476837158,23.869211196899414,16.00457763671875,17.159799575805664,1.3093855381011963,1.4631645679473877,-0.15646414458751678 +0.7000000476837158,24.277889251708984,16.00457763671875,17.429779052734375,1.189118504524231,1.4577134847640991,-0.11945614963769913 +0.7000000476837158,23.869211196899414,16.050935745239258,17.204795837402344,1.2120264768600464,1.4849685430526733,-0.09170015156269073 +0.7000000476837158,24.00543785095215,16.00457763671875,17.294788360595703,1.3322936296463013,1.3868504762649536,-0.1888461410999298 +0.7000000476837158,24.00543785095215,16.050935745239258,17.24979019165039,1.2349345684051514,1.3923015594482422,-0.19809813797473907 +0.7000000476837158,24.277889251708984,15.911858558654785,17.339784622192383,1.217753529548645,1.3923015594482422,-0.1009521484375 +0.7000000476837158,24.277889251708984,16.050935745239258,17.384782791137695,1.315112590789795,1.4849685430526733,-0.0870741531252861 +0.7000000476837158,24.209775924682617,16.050935745239258,17.339784622192383,1.3609285354614258,1.5231255292892456,-0.13796015083789825 +0.7000000476837158,24.55034065246582,16.00457763671875,17.339784622192383,1.343747615814209,1.4141054153442383,-0.16109015047550201 +0.7000000476837158,24.34600257873535,15.911858558654785,17.429779052734375,1.2692965269088745,1.4250074625015259,-0.1287081390619278 +0.7000000476837158,24.073549270629883,16.0972957611084,17.204795837402344,1.2005724906921387,1.4958704710006714,-0.11020414531230927 +0.7000000476837158,24.55034065246582,16.0972957611084,17.384782791137695,1.1375755071640015,1.4359095096588135,-0.13333414494991302 +0.7000000476837158,24.073549270629883,16.050935745239258,17.294788360595703,1.217753529548645,1.4250074625015259,-0.17959414422512054 +0.7000000476837158,24.00543785095215,15.772782325744629,17.24979019165039,1.315112590789795,1.4195564985275269,-0.08244814723730087 +0.7000000476837158,23.93732452392578,16.00457763671875,17.429779052734375,1.343747615814209,1.4086545705795288,-0.16109015047550201 +0.7000000476837158,24.073549270629883,16.00457763671875,17.294788360595703,1.2979315519332886,1.3868504762649536,-0.05469214916229248 +0.7000000476837158,24.34600257873535,16.0972957611084,17.159799575805664,1.343747615814209,1.5285764932632446,-0.12408214807510376 +0.7000000476837158,24.277889251708984,16.00457763671875,17.294788360595703,1.3093855381011963,1.310536503791809,-0.17959414422512054 +0.7000000476837158,24.41411590576172,16.0972957611084,17.384782791137695,1.3036586046218872,1.4195564985275269,-0.1009521484375 +0.7000000476837158,24.55034065246582,16.143653869628906,17.294788360595703,1.2521154880523682,1.4032034873962402,-0.12408214807510376 +0.7000000476837158,24.073549270629883,16.0972957611084,17.294788360595703,1.2922046184539795,1.4631645679473877,-0.06394414603710175 +0.7000000476837158,24.55034065246582,15.819140434265137,17.24979019165039,1.3552014827728271,1.50132155418396,-0.15183815360069275 +0.7000000476837158,24.34600257873535,16.143653869628906,17.339784622192383,1.2807505130767822,1.375948429107666,-0.14258615672588348 +0.7000000476837158,24.277889251708984,16.050935745239258,17.339784622192383,1.2406615018844604,1.3977524042129517,-0.1287081390619278 +0.7000000476837158,24.073549270629883,16.190011978149414,17.294788360595703,1.2062995433807373,1.4686155319213867,-0.09170015156269073 +0.7000000476837158,24.00543785095215,16.00457763671875,17.204795837402344,1.3093855381011963,1.3595954179763794,-0.13796015083789825 +0.7000000476837158,24.073549270629883,15.819140434265137,17.384782791137695,1.2864775657653809,1.2723795175552368,-0.09170015156269073 +0.7000000476837158,24.277889251708984,16.0972957611084,17.294788360595703,1.1833914518356323,1.4086545705795288,-0.1148301437497139 +0.7000000476837158,23.93732452392578,16.00457763671875,17.384782791137695,1.3781094551086426,1.4686155319213867,-0.08244814723730087 +0.7000000476837158,24.277889251708984,16.00457763671875,17.429779052734375,1.3494744300842285,1.5285764932632446,-0.040814146399497986 +0.7000000476837158,24.209775924682617,16.143653869628906,17.384782791137695,1.2406615018844604,1.35414457321167,-0.06394414603710175 +0.7000000476837158,24.277889251708984,16.143653869628906,17.159799575805664,1.3838365077972412,1.4250074625015259,-0.11020414531230927 +0.7000000476837158,24.34600257873535,16.236371994018555,17.339784622192383,1.1719374656677246,1.4577134847640991,-0.06394414603710175 +0.7000000476837158,24.34600257873535,16.00457763671875,17.24979019165039,1.2406615018844604,1.4086545705795288,-0.17959414422512054 +0.7000000476837158,24.34600257873535,16.050935745239258,17.02480697631836,1.2922046184539795,1.3923015594482422,-0.20735014975070953 +0.7000000476837158,24.55034065246582,16.00457763671875,17.294788360595703,1.343747615814209,1.4141054153442383,-0.12408214807510376 +0.7000000476837158,24.41411590576172,16.143653869628906,17.384782791137695,1.1719374656677246,1.506772518157959,-0.03156214952468872 +0.7000000476837158,24.209775924682617,16.0972957611084,17.339784622192383,1.4067444801330566,1.5558315515518188,-0.1009521484375 +0.7000000476837158,24.482229232788086,15.911858558654785,17.294788360595703,1.3322936296463013,1.310536503791809,-0.20735014975070953 +0.7000000476837158,24.482229232788086,16.143653869628906,17.384782791137695,1.2521154880523682,1.3377915620803833,-0.07319615036249161 +0.7000000476837158,24.209775924682617,16.00457763671875,17.384782791137695,1.2062995433807373,1.4577134847640991,-0.1009521484375 +0.7000000476837158,24.073549270629883,16.236371994018555,17.339784622192383,1.3609285354614258,1.5340274572372437,-0.05469214916229248 +0.7000000476837158,24.209775924682617,16.050935745239258,17.339784622192383,1.2864775657653809,1.4686155319213867,-0.23510614037513733 +0.7000000476837158,23.869211196899414,16.00457763671875,17.384782791137695,1.2750235795974731,1.446811556816101,-0.18422015011310577 +0.7000000476837158,24.00543785095215,16.0972957611084,17.429779052734375,1.2979315519332886,1.4740664958953857,-0.17034214735031128 +0.7000000476837158,24.00543785095215,15.911858558654785,17.429779052734375,1.1948455572128296,1.512223482131958,-0.17496813833713531 +0.7000000476837158,24.14166259765625,16.00457763671875,17.339784622192383,1.2005724906921387,1.3813995122909546,-0.14258615672588348 +0.7000000476837158,24.209775924682617,15.865500450134277,17.429779052734375,1.320839524269104,1.4086545705795288,-0.1287081390619278 +0.7000000476837158,24.482229232788086,16.050935745239258,17.294788360595703,1.189118504524231,1.4304585456848145,-0.1009521484375 +0.7000000476837158,24.209775924682617,16.0972957611084,17.204795837402344,1.2292075157165527,1.446811556816101,-0.03618814796209335 +0.7000000476837158,24.482229232788086,16.143653869628906,17.429779052734375,1.3723825216293335,1.4849685430526733,-0.13796015083789825 +0.7000000476837158,24.34600257873535,16.050935745239258,17.294788360595703,1.2864775657653809,1.3923015594482422,-0.15646414458751678 +0.7000000476837158,23.869211196899414,16.143653869628906,17.24979019165039,1.2864775657653809,1.4304585456848145,-0.14258615672588348 +0.7000000476837158,24.41411590576172,16.282730102539062,17.294788360595703,1.1490294933319092,1.4522624015808105,-0.09632615000009537 +0.7000000476837158,24.209775924682617,16.00457763671875,17.24979019165039,1.2005724906921387,1.4577134847640991,-0.16571614146232605 +0.7000000476837158,24.00543785095215,16.050935745239258,17.204795837402344,1.3494744300842285,1.4032034873962402,-0.17496813833713531 +0.7000000476837158,24.073549270629883,16.0972957611084,17.519773483276367,1.2807505130767822,1.4141054153442383,-0.1287081390619278 +0.7000000476837158,24.00543785095215,15.911858558654785,17.384782791137695,1.2807505130767822,1.4958704710006714,-0.08244814723730087 +0.7000000476837158,24.277889251708984,15.95821762084961,17.384782791137695,1.320839524269104,1.35414457321167,-0.14258615672588348 +0.7000000476837158,24.00543785095215,16.0972957611084,17.519773483276367,1.2807505130767822,1.375948429107666,-0.19347214698791504 +0.7000000476837158,24.482229232788086,16.0972957611084,17.339784622192383,1.2292075157165527,1.4795174598693848,-0.1009521484375 +0.7000000476837158,24.41411590576172,16.143653869628906,17.384782791137695,1.2979315519332886,1.3595954179763794,-0.0870741531252861 +0.7000000476837158,24.209775924682617,16.00457763671875,17.159799575805664,1.2979315519332886,1.5231255292892456,-0.15183815360069275 +0.7000000476837158,24.41411590576172,15.911858558654785,17.384782791137695,1.3380205631256104,1.5285764932632446,-0.1148301437497139 +0.7000000476837158,24.34600257873535,16.050935745239258,17.24979019165039,1.2521154880523682,1.446811556816101,-0.17034214735031128 +0.7000000476837158,24.34600257873535,16.0972957611084,17.24979019165039,1.223480463027954,1.4250074625015259,-0.12408214807510376 +0.7000000476837158,24.209775924682617,16.0972957611084,17.204795837402344,1.2062995433807373,1.4304585456848145,-0.19347214698791504 +0.7000000476837158,24.00543785095215,16.00457763671875,17.24979019165039,1.3781094551086426,1.35414457321167,-0.1009521484375 +0.7000000476837158,24.14166259765625,16.00457763671875,17.384782791137695,1.217753529548645,1.4032034873962402,-0.17034214735031128 +0.7000000476837158,24.277889251708984,16.143653869628906,17.519773483276367,1.2864775657653809,1.4413604736328125,-0.13333414494991302 +0.7000000476837158,23.93732452392578,16.0972957611084,17.294788360595703,1.3552014827728271,1.5449296236038208,-0.06394414603710175 +0.7000000476837158,24.277889251708984,16.050935745239258,17.384782791137695,1.2692965269088745,1.4522624015808105,-0.12408214807510376 +0.7000000476837158,24.00543785095215,16.190011978149414,17.339784622192383,1.2692965269088745,1.4086545705795288,-0.12408214807510376 +0.7000000476837158,24.34600257873535,16.050935745239258,17.429779052734375,1.160483479499817,1.4086545705795288,-0.16109015047550201 +0.7000000476837158,24.209775924682617,16.143653869628906,17.294788360595703,1.2578425407409668,1.4849685430526733,-0.0870741531252861 +0.7000000476837158,24.209775924682617,15.95821762084961,17.24979019165039,1.2979315519332886,1.4522624015808105,-0.14258615672588348 +0.7000000476837158,24.34600257873535,16.0972957611084,17.159799575805664,1.2578425407409668,1.4577134847640991,-0.14258615672588348 +0.7000000476837158,24.55034065246582,16.0972957611084,17.339784622192383,1.246388554573059,1.365046501159668,-0.11945614963769913 +0.7000000476837158,24.41411590576172,16.143653869628906,17.339784622192383,1.2750235795974731,1.4522624015808105,-0.06394414603710175 +0.7000000476837158,24.00543785095215,16.00457763671875,17.204795837402344,1.3552014827728271,1.50132155418396,-0.17034214735031128 +0.7000000476837158,24.482229232788086,16.0972957611084,17.429779052734375,1.2692965269088745,1.3923015594482422,-0.19809813797473907 +0.7000000476837158,24.209775924682617,16.050935745239258,17.56477165222168,1.2521154880523682,1.3977524042129517,-0.08244814723730087 +0.7000000476837158,24.209775924682617,16.190011978149414,17.24979019165039,1.3036586046218872,1.4958704710006714,-0.040814146399497986 +0.7000000476837158,23.73298454284668,16.0972957611084,17.159799575805664,1.3552014827728271,1.4849685430526733,-0.1287081390619278 +0.7000000476837158,24.14166259765625,15.819140434265137,17.159799575805664,1.3380205631256104,1.4577134847640991,-0.12408214807510376 +0.7000000476837158,24.277889251708984,15.95821762084961,17.24979019165039,1.1203945875167847,1.4413604736328125,-0.11945614963769913 +0.7000000476837158,23.93732452392578,16.143653869628906,17.24979019165039,1.3093855381011963,1.3868504762649536,-0.13796015083789825 +0.7000000476837158,24.34600257873535,16.00457763671875,17.429779052734375,1.1776645183563232,1.4631645679473877,-0.16571614146232605 +0.7000000476837158,24.277889251708984,15.911858558654785,17.204795837402344,1.1719374656677246,1.4250074625015259,-0.15183815360069275 +0.7000000476837158,24.55034065246582,16.00457763671875,17.384782791137695,1.2349345684051514,1.4195564985275269,-0.16109015047550201 +0.7000000476837158,24.41411590576172,16.190011978149414,17.339784622192383,1.2292075157165527,1.375948429107666,-0.0870741531252861 +0.7000000476837158,24.209775924682617,16.0972957611084,17.24979019165039,1.2750235795974731,1.512223482131958,-0.1287081390619278 +0.7000000476837158,24.209775924682617,15.95821762084961,17.294788360595703,1.2635695934295654,1.4250074625015259,-0.1009521484375 +0.7000000476837158,24.073549270629883,16.143653869628906,17.294788360595703,1.2521154880523682,1.3868504762649536,-0.17959414422512054 +0.7000000476837158,23.869211196899414,16.0972957611084,17.294788360595703,1.2292075157165527,1.4141054153442383,-0.1009521484375 +0.7000000476837158,24.277889251708984,16.0972957611084,17.24979019165039,1.246388554573059,1.4686155319213867,-0.12408214807510376 +0.7000000476837158,24.073549270629883,15.911858558654785,17.159799575805664,1.3380205631256104,1.4577134847640991,-0.14721214771270752 +0.7000000476837158,24.14166259765625,15.911858558654785,17.069805145263672,1.246388554573059,1.35414457321167,-0.14258615672588348 +0.7000000476837158,24.14166259765625,16.143653869628906,17.474777221679688,1.2635695934295654,1.5503804683685303,-0.14258615672588348 +0.7000000476837158,24.277889251708984,16.050935745239258,17.294788360595703,1.1375755071640015,1.4032034873962402,-0.13796015083789825 +0.7000000476837158,24.34600257873535,15.95821762084961,17.24979019165039,1.4181984663009644,1.5176745653152466,-0.1009521484375 +0.7000000476837158,24.14166259765625,15.865500450134277,17.429779052734375,1.3552014827728271,1.2560265064239502,-0.17496813833713531 +0.7000000476837158,24.482229232788086,16.050935745239258,17.339784622192383,1.3093855381011963,1.4032034873962402,-0.1009521484375 +0.7000000476837158,24.482229232788086,16.143653869628906,17.384782791137695,1.2062995433807373,1.506772518157959,-0.07782214879989624 +0.7000000476837158,24.209775924682617,16.00457763671875,17.24979019165039,1.320839524269104,1.4032034873962402,-0.07782214879989624 +0.7000000476837158,24.41411590576172,15.95821762084961,17.294788360595703,1.3322936296463013,1.4631645679473877,-0.06857015192508698 +0.7000000476837158,24.209775924682617,16.143653869628906,17.24979019165039,1.320839524269104,1.4686155319213867,-0.12408214807510376 +0.7000000476837158,24.209775924682617,16.0972957611084,17.159799575805664,1.246388554573059,1.446811556816101,-0.17034214735031128 +0.7000000476837158,24.073549270629883,16.00457763671875,17.294788360595703,1.2292075157165527,1.4631645679473877,-0.14721214771270752 +0.7000000476837158,23.93732452392578,16.050935745239258,17.069805145263672,1.217753529548645,1.375948429107666,-0.22585414350032806 +0.7000000476837158,24.209775924682617,16.050935745239258,17.339784622192383,1.246388554573059,1.446811556816101,-0.16109015047550201 +0.7000000476837158,24.277889251708984,16.00457763671875,17.339784622192383,1.2005724906921387,1.3977524042129517,-0.05931815132498741 +0.7000000476837158,24.073549270629883,16.143653869628906,17.24979019165039,1.2062995433807373,1.5340274572372437,-0.09632615000009537 +0.7000000476837158,24.00543785095215,16.0972957611084,17.204795837402344,1.223480463027954,1.4849685430526733,-0.11945614963769913 +0.7000000476837158,24.55034065246582,16.0972957611084,17.24979019165039,1.3552014827728271,1.375948429107666,-0.11020414531230927 +0.7000000476837158,24.34600257873535,16.0972957611084,17.384782791137695,1.2750235795974731,1.4413604736328125,-0.12408214807510376 +0.7000000476837158,24.55034065246582,16.190011978149414,17.204795837402344,1.2692965269088745,1.4904195070266724,-0.1287081390619278 +0.7000000476837158,24.209775924682617,16.143653869628906,17.069805145263672,1.2406615018844604,1.5503804683685303,-0.14258615672588348 +0.7000000476837158,24.277889251708984,15.911858558654785,17.294788360595703,1.2807505130767822,1.4359095096588135,-0.12408214807510376 +0.7000000476837158,24.41411590576172,16.0972957611084,17.294788360595703,1.1776645183563232,1.375948429107666,-0.12408214807510376 +0.7000000476837158,24.073549270629883,16.0972957611084,17.294788360595703,1.1776645183563232,1.4522624015808105,-0.07319615036249161 +0.7000000476837158,24.277889251708984,16.0972957611084,17.384782791137695,1.3093855381011963,1.4086545705795288,-0.12408214807510376 +0.7000000476837158,24.277889251708984,16.00457763671875,17.519773483276367,1.2750235795974731,1.3977524042129517,-0.13796015083789825 +0.7000000476837158,24.209775924682617,16.143653869628906,17.339784622192383,1.2406615018844604,1.4195564985275269,-0.11945614963769913 +0.7000000476837158,24.34600257873535,16.050935745239258,17.294788360595703,1.2979315519332886,1.4359095096588135,-0.06394414603710175 +0.7000000476837158,23.93732452392578,16.143653869628906,17.159799575805664,1.3322936296463013,1.4577134847640991,-0.07782214879989624 +0.7000000476837158,24.482229232788086,16.050935745239258,17.519773483276367,1.2635695934295654,1.4195564985275269,-0.12408214807510376 +0.7000000476837158,24.34600257873535,16.050935745239258,17.339784622192383,1.3494744300842285,1.3813995122909546,-0.16109015047550201 +0.7000000476837158,24.34600257873535,16.190011978149414,17.339784622192383,1.2807505130767822,1.4304585456848145,-0.06394414603710175 +0.7000000476837158,24.55034065246582,16.0972957611084,17.429779052734375,1.2521154880523682,1.4359095096588135,-0.14721214771270752 +0.7000000476837158,24.073549270629883,16.00457763671875,17.294788360595703,1.2635695934295654,1.4740664958953857,-0.19347214698791504 +0.7000000476837158,24.41411590576172,15.911858558654785,17.384782791137695,1.2979315519332886,1.4413604736328125,-0.16109015047550201 +0.7000000476837158,24.14166259765625,16.050935745239258,17.24979019165039,1.1662105321884155,1.3868504762649536,-0.0870741531252861 +0.7000000476837158,23.93732452392578,16.00457763671875,17.294788360595703,1.2807505130767822,1.4577134847640991,-0.05006615072488785 +0.7000000476837158,23.93732452392578,16.00457763671875,17.474777221679688,1.3265665769577026,1.5176745653152466,-0.14258615672588348 +0.7000000476837158,24.00543785095215,16.143653869628906,17.294788360595703,1.2864775657653809,1.3704975843429565,-0.1148301437497139 +0.7000000476837158,24.209775924682617,16.190011978149414,17.24979019165039,1.3036586046218872,1.4250074625015259,-0.1148301437497139 +0.7000000476837158,24.34600257873535,16.143653869628906,17.294788360595703,1.2692965269088745,1.3977524042129517,-0.0870741531252861 +0.7000000476837158,24.209775924682617,16.00457763671875,17.24979019165039,1.2578425407409668,1.4904195070266724,-0.15646414458751678 +0.7000000476837158,24.34600257873535,16.00457763671875,17.204795837402344,1.315112590789795,1.3377915620803833,-0.1888461410999298 +0.7000000476837158,24.41411590576172,16.050935745239258,17.294788360595703,1.3552014827728271,1.4958704710006714,-0.06857015192508698 +0.7000000476837158,24.55034065246582,15.911858558654785,17.429779052734375,1.2922046184539795,1.3868504762649536,-0.11020414531230927 +0.7000000476837158,24.482229232788086,15.911858558654785,17.384782791137695,1.2922046184539795,1.4141054153442383,-0.14258615672588348 +0.7000000476837158,24.686567306518555,16.00457763671875,17.384782791137695,1.3322936296463013,1.3377915620803833,-0.14721214771270752 +0.7000000476837158,24.686567306518555,15.95821762084961,17.24979019165039,1.2005724906921387,1.365046501159668,-0.1148301437497139 +0.7000000476837158,24.34600257873535,16.050935745239258,17.24979019165039,1.1776645183563232,1.5231255292892456,-0.03156214952468872 +0.7000000476837158,24.34600257873535,16.0972957611084,17.24979019165039,1.320839524269104,1.50132155418396,-0.06394414603710175 +0.7000000476837158,24.209775924682617,15.865500450134277,17.294788360595703,1.2864775657653809,1.4849685430526733,-0.15183815360069275 +0.7000000476837158,24.073549270629883,16.00457763671875,17.294788360595703,1.246388554573059,1.4740664958953857,-0.11020414531230927 +0.7000000476837158,24.073549270629883,16.00457763671875,17.294788360595703,1.2864775657653809,1.506772518157959,-0.12408214807510376 +0.7000000476837158,24.14166259765625,16.00457763671875,17.24979019165039,1.1833914518356323,1.4740664958953857,-0.15183815360069275 +0.7000000476837158,23.869211196899414,16.050935745239258,17.11480140686035,1.2521154880523682,1.310536503791809,-0.09632615000009537 +0.7000000476837158,24.14166259765625,16.00457763671875,17.429779052734375,1.2750235795974731,1.4359095096588135,-0.1148301437497139 +0.7000000476837158,23.93732452392578,16.143653869628906,17.339784622192383,1.343747615814209,1.4522624015808105,-0.08244814723730087 +0.7000000476837158,24.277889251708984,16.143653869628906,17.204795837402344,1.3552014827728271,1.5340274572372437,-0.09632615000009537 +0.7000000476837158,24.14166259765625,15.95821762084961,17.11480140686035,1.2406615018844604,1.4577134847640991,-0.13333414494991302 +0.7000000476837158,24.41411590576172,15.95821762084961,17.429779052734375,1.2692965269088745,1.310536503791809,-0.11945614963769913 +0.7000000476837158,24.209775924682617,16.329090118408203,17.204795837402344,1.3322936296463013,1.4304585456848145,-0.1009521484375 +0.7000000476837158,24.482229232788086,16.050935745239258,17.294788360595703,1.2521154880523682,1.446811556816101,-0.1009521484375 +0.7000000476837158,24.482229232788086,16.00457763671875,17.24979019165039,1.1776645183563232,1.5176745653152466,-0.12408214807510376 +0.7000000476837158,24.41411590576172,16.050935745239258,17.339784622192383,1.3265665769577026,1.3923015594482422,-0.2027241587638855 +0.8000000715255737,24.482229232788086,16.00457763671875,17.474777221679688,1.2979315519332886,1.4577134847640991,-0.13796015083789825 +0.8000000715255737,24.41411590576172,18.786117553710938,19.409648895263672,1.7732726335525513,1.1088495254516602,0.010071849450469017 +0.8000000715255737,24.14166259765625,18.368886947631836,19.45464515686035,1.5671006441116333,1.5449296236038208,-0.07319615036249161 +0.8000000715255737,24.34600257873535,18.507963180541992,19.769624710083008,1.6071895360946655,1.6103415489196777,-0.06857015192508698 +0.8000000715255737,24.34600257873535,18.60068130493164,19.499643325805664,1.6930946111679077,1.6648515462875366,-0.04544014856219292 +0.8000000715255737,24.34600257873535,18.415245056152344,19.499643325805664,1.452560544013977,1.6212434768676758,-0.3183741569519043 +0.8000000715255737,24.073549270629883,18.46160316467285,19.544639587402344,1.6129164695739746,1.708459496498108,-0.07319615036249161 +0.8000000715255737,23.869211196899414,18.322526931762695,19.499643325805664,1.6186435222625732,1.7248125076293945,-0.14721214771270752 +0.8000000715255737,24.34600257873535,18.554323196411133,19.45464515686035,1.5785545110702515,1.5721845626831055,-0.14258615672588348 +0.8000000715255737,24.00543785095215,18.229808807373047,19.409648895263672,1.6243705749511719,1.653949499130249,-0.0870741531252861 +0.8000000715255737,24.41411590576172,18.507963180541992,19.36465072631836,1.601462483406067,1.5885374546051025,-0.20735014975070953 +0.8000000715255737,24.34600257873535,18.60068130493164,19.544639587402344,1.687367558479309,1.6266944408416748,-0.20735014975070953 +0.8000000715255737,24.482229232788086,18.554323196411133,19.544639587402344,1.7045485973358154,1.7629694938659668,-0.06857015192508698 +0.8000000715255737,24.41411590576172,18.229808807373047,19.45464515686035,1.7274565696716309,1.6757535934448242,-0.12408214807510376 +0.8000000715255737,24.277889251708984,18.276168823242188,19.45464515686035,1.6071895360946655,1.5721845626831055,-0.07319615036249161 +0.8000000715255737,24.55034065246582,18.554323196411133,19.679630279541016,1.5785545110702515,1.6757535934448242,-0.022310150787234306 +0.8000000715255737,24.482229232788086,18.507963180541992,19.409648895263672,1.5441925525665283,1.6757535934448242,-0.26748815178871155 +0.8000000715255737,24.14166259765625,18.415245056152344,19.544639587402344,1.5671006441116333,1.6757535934448242,-0.16109015047550201 +0.8000000715255737,24.209775924682617,18.368886947631836,19.634632110595703,1.8076344728469849,1.6866555213928223,-0.17959414422512054 +0.8000000715255737,24.14166259765625,18.276168823242188,19.724626541137695,1.6186435222625732,1.5830864906311035,-0.15183815360069275 +0.8000000715255737,24.34600257873535,18.554323196411133,19.724626541137695,1.7618186473846436,1.64849853515625,-0.1148301437497139 +0.8000000715255737,24.209775924682617,18.507963180541992,19.45464515686035,1.5900084972381592,1.7629694938659668,-0.06857015192508698 +0.8000000715255737,24.073549270629883,18.415245056152344,19.45464515686035,1.5671006441116333,1.6921066045761108,-0.15646414458751678 +0.8000000715255737,24.209775924682617,18.46160316467285,19.589635848999023,1.6186435222625732,1.5994395017623901,-0.09170015156269073 +0.8000000715255737,24.209775924682617,18.229808807373047,19.769624710083008,1.6530054807662964,1.6757535934448242,-0.13333414494991302 +0.8000000715255737,24.277889251708984,18.554323196411133,19.589635848999023,1.6930946111679077,1.5721845626831055,0.014697848819196224 +0.8000000715255737,24.34600257873535,18.46160316467285,19.409648895263672,1.7675455808639526,1.7193615436553955,0.00544585008174181 +0.8000000715255737,24.277889251708984,18.415245056152344,19.31965446472168,1.601462483406067,1.784773588180542,-0.2443581372499466 +0.8000000715255737,24.482229232788086,18.46160316467285,19.409648895263672,1.6930946111679077,1.7411655187606812,-0.08244814723730087 +0.8000000715255737,23.93732452392578,18.276168823242188,19.499643325805664,1.521284580230713,1.5721845626831055,-0.03156214952468872 +0.8000000715255737,24.55034065246582,18.507963180541992,19.544639587402344,1.5785545110702515,1.6212434768676758,-0.02693614922463894 +0.8000000715255737,24.277889251708984,18.46160316467285,19.409648895263672,1.687367558479309,1.7030085325241089,-0.008432149887084961 +0.8000000715255737,24.073549270629883,18.507963180541992,19.499643325805664,1.6644595861434937,1.708459496498108,-0.14721214771270752 +0.8000000715255737,24.34600257873535,18.46160316467285,19.679630279541016,1.5728274583816528,1.5558315515518188,-0.2998701333999634 +0.8000000715255737,24.14166259765625,18.554323196411133,19.589635848999023,1.6472785472869873,1.6321455240249634,-0.03156214952468872 +0.8000000715255737,24.34600257873535,18.60068130493164,19.45464515686035,1.6472785472869873,1.6157925128936768,-0.13796015083789825 +0.8000000715255737,24.209775924682617,18.554323196411133,19.544639587402344,1.6644595861434937,1.6430474519729614,-0.02693614922463894 +0.8000000715255737,24.14166259765625,18.507963180541992,19.45464515686035,1.7160025835037231,1.730263590812683,-0.0038061500526964664 +0.8000000715255737,24.14166259765625,18.368886947631836,19.409648895263672,1.5327385663986206,1.6321455240249634,-0.38313814997673035 +0.8000000715255737,24.41411590576172,18.276168823242188,19.679630279541016,1.630097508430481,1.6703025102615356,-0.09170015156269073 +0.8000000715255737,24.41411590576172,18.60068130493164,19.544639587402344,1.6988215446472168,1.659400463104248,-0.05006615072488785 +0.8000000715255737,24.209775924682617,18.507963180541992,19.544639587402344,1.5900084972381592,1.7902244329452515,-0.0038061500526964664 +0.8000000715255737,24.41411590576172,18.60068130493164,19.45464515686035,1.6530054807662964,1.7193615436553955,-0.07319615036249161 +0.8000000715255737,24.482229232788086,18.554323196411133,19.45464515686035,1.658732533454895,1.7629694938659668,-0.15646414458751678 +0.8000000715255737,24.073549270629883,18.46160316467285,19.45464515686035,1.5327385663986206,1.6921066045761108,-0.26748815178871155 +0.8000000715255737,24.34600257873535,18.507963180541992,19.589635848999023,1.6644595861434937,1.7193615436553955,-0.15183815360069275 +0.8000000715255737,24.14166259765625,18.507963180541992,19.589635848999023,1.7331836223602295,1.6703025102615356,-0.02693614922463894 +0.8000000715255737,24.14166259765625,18.415245056152344,19.45464515686035,1.7102755308151245,1.6975574493408203,-0.09632615000009537 +0.8000000715255737,24.073549270629883,18.415245056152344,19.634632110595703,1.7389105558395386,1.5939885377883911,-0.0870741531252861 +0.8000000715255737,24.073549270629883,18.507963180541992,19.589635848999023,1.6243705749511719,1.6703025102615356,-0.2721141278743744 +0.7000000476837158,24.482229232788086,18.60068130493164,19.634632110595703,1.7331836223602295,1.6757535934448242,-0.1287081390619278 +0.7000000476837158,24.073549270629883,15.819140434265137,17.60976791381836,1.0516705513000488,1.6921066045761108,-0.24898414313793182 +0.7000000476837158,24.277889251708984,16.050935745239258,17.384782791137695,1.315112590789795,1.4686155319213867,-0.1009521484375 +0.7000000476837158,24.34600257873535,15.911858558654785,17.159799575805664,1.223480463027954,1.4250074625015259,-0.14721214771270752 +0.7000000476837158,24.34600257873535,16.0972957611084,17.384782791137695,1.3265665769577026,1.4250074625015259,-0.1287081390619278 +0.7000000476837158,24.277889251708984,16.050935745239258,17.24979019165039,1.3265665769577026,1.3977524042129517,-0.09170015156269073 +0.7000000476837158,24.209775924682617,15.911858558654785,17.159799575805664,1.2979315519332886,1.4577134847640991,-0.13333414494991302 +0.7000000476837158,24.34600257873535,16.00457763671875,17.429779052734375,1.320839524269104,1.3977524042129517,-0.18422015011310577 +0.7000000476837158,24.277889251708984,16.190011978149414,17.24979019165039,1.3380205631256104,1.3868504762649536,-0.09170015156269073 +0.7000000476837158,24.00543785095215,16.190011978149414,17.339784622192383,1.3322936296463013,1.4958704710006714,-0.16109015047550201 +0.7000000476837158,24.073549270629883,16.0972957611084,17.294788360595703,1.3265665769577026,1.4577134847640991,-0.1009521484375 +0.7000000476837158,24.209775924682617,15.95821762084961,17.294788360595703,1.3552014827728271,1.4958704710006714,-0.1287081390619278 +0.7000000476837158,24.277889251708984,16.050935745239258,17.339784622192383,1.3322936296463013,1.4086545705795288,-0.11945614963769913 +0.7000000476837158,24.209775924682617,16.0972957611084,17.159799575805664,1.3265665769577026,1.4577134847640991,-0.1888461410999298 +0.7000000476837158,24.209775924682617,16.00457763671875,17.24979019165039,1.1375755071640015,1.5721845626831055,-0.18422015011310577 +0.7000000476837158,24.34600257873535,16.050935745239258,17.294788360595703,1.3781094551086426,1.3432425260543823,-0.15183815360069275 +0.7000000476837158,24.34600257873535,16.0972957611084,17.429779052734375,1.2005724906921387,1.4250074625015259,-0.09632615000009537 +0.7000000476837158,24.41411590576172,16.0972957611084,17.339784622192383,1.246388554573059,1.3977524042129517,-0.1009521484375 +0.7000000476837158,24.41411590576172,16.0972957611084,17.24979019165039,1.320839524269104,1.5394785404205322,-0.04544014856219292 +0.7000000476837158,24.41411590576172,15.95821762084961,17.339784622192383,1.395290493965149,1.4304585456848145,-0.14258615672588348 +0.7000000476837158,24.822792053222656,16.0972957611084,17.519773483276367,1.217753529548645,1.3868504762649536,-0.1287081390619278 +0.7000000476837158,24.34600257873535,16.143653869628906,17.294788360595703,1.223480463027954,1.4958704710006714,-0.11020414531230927 +0.7000000476837158,24.482229232788086,16.190011978149414,17.339784622192383,1.246388554573059,1.5449296236038208,-0.06394414603710175 +0.7000000476837158,24.00543785095215,16.0972957611084,17.24979019165039,1.217753529548645,1.4141054153442383,-0.14721214771270752 +0.7000000476837158,24.073549270629883,15.95821762084961,17.384782791137695,1.2406615018844604,1.3923015594482422,-0.13333414494991302 +0.7000000476837158,24.209775924682617,16.190011978149414,17.474777221679688,1.217753529548645,1.4304585456848145,-0.14258615672588348 +0.7000000476837158,24.073549270629883,16.050935745239258,17.429779052734375,1.320839524269104,1.4522624015808105,-0.022310150787234306 +0.7000000476837158,24.00543785095215,15.911858558654785,17.339784622192383,1.2406615018844604,1.4032034873962402,-0.1287081390619278 +0.7000000476837158,24.073549270629883,16.00457763671875,17.429779052734375,1.3093855381011963,1.4250074625015259,-0.16109015047550201 +0.7000000476837158,24.209775924682617,16.236371994018555,17.384782791137695,1.2062995433807373,1.2941834926605225,-0.12408214807510376 +0.7000000476837158,24.277889251708984,16.143653869628906,17.339784622192383,1.189118504524231,1.4904195070266724,-0.1287081390619278 +0.7000000476837158,24.14166259765625,16.236371994018555,17.24979019165039,1.2807505130767822,1.506772518157959,-0.11020414531230927 +0.7000000476837158,24.618453979492188,16.050935745239258,17.159799575805664,1.315112590789795,1.4686155319213867,-0.16109015047550201 +0.7000000476837158,24.34600257873535,16.00457763671875,17.204795837402344,1.2979315519332886,1.4032034873962402,-0.1009521484375 +0.7000000476837158,24.55034065246582,16.050935745239258,17.339784622192383,1.246388554573059,1.4413604736328125,-0.13333414494991302 +0.7000000476837158,24.482229232788086,16.050935745239258,17.294788360595703,1.217753529548645,1.4577134847640991,-0.1009521484375 +0.7000000476837158,24.073549270629883,15.911858558654785,17.204795837402344,1.246388554573059,1.3704975843429565,-0.1009521484375 +0.7000000476837158,24.618453979492188,16.0972957611084,17.519773483276367,1.315112590789795,1.4032034873962402,-0.17959414422512054 +0.7000000476837158,24.14166259765625,16.190011978149414,17.384782791137695,1.160483479499817,1.4904195070266724,-0.1148301437497139 +0.7000000476837158,24.14166259765625,16.00457763671875,17.384782791137695,1.4296525716781616,1.5394785404205322,-0.09170015156269073 +0.7000000476837158,23.93732452392578,16.0972957611084,17.339784622192383,1.4411065578460693,1.506772518157959,-0.04544014856219292 +0.7000000476837158,24.209775924682617,16.0972957611084,17.384782791137695,1.2807505130767822,1.3977524042129517,-0.14721214771270752 +0.7000000476837158,24.41411590576172,16.0972957611084,17.429779052734375,1.189118504524231,1.4577134847640991,-0.15646414458751678 +0.7000000476837158,24.209775924682617,16.0972957611084,17.294788360595703,1.3322936296463013,1.446811556816101,-0.13796015083789825 +0.7000000476837158,24.073549270629883,16.00457763671875,17.24979019165039,1.315112590789795,1.4195564985275269,-0.07782214879989624 +0.7000000476837158,24.41411590576172,16.00457763671875,17.429779052734375,1.2578425407409668,1.4631645679473877,-0.1009521484375 +0.7000000476837158,24.34600257873535,16.00457763671875,17.384782791137695,1.1547564268112183,1.4195564985275269,-0.14258615672588348 +0.7000000476837158,24.209775924682617,16.236371994018555,17.384782791137695,1.080305576324463,1.446811556816101,-0.11945614963769913 +0.7000000476837158,24.277889251708984,15.95821762084961,17.429779052734375,1.2521154880523682,1.4849685430526733,-0.18422015011310577 +0.7000000476837158,24.277889251708984,15.911858558654785,17.429779052734375,1.2750235795974731,1.3977524042129517,-0.2027241587638855 +0.7000000476837158,24.209775924682617,16.236371994018555,17.24979019165039,1.343747615814209,1.4086545705795288,-0.19347214698791504 +0.7000000476837158,24.073549270629883,16.143653869628906,17.24979019165039,1.2692965269088745,1.375948429107666,-0.05469214916229248 +0.7000000476837158,24.41411590576172,16.050935745239258,17.204795837402344,1.2406615018844604,1.512223482131958,-0.1287081390619278 +0.7000000476837158,24.277889251708984,15.95821762084961,17.294788360595703,1.2292075157165527,1.5176745653152466,-0.1148301437497139 +0.7000000476837158,24.14166259765625,16.050935745239258,17.384782791137695,1.2062995433807373,1.4740664958953857,-0.11020414531230927 +0.7000000476837158,24.14166259765625,16.050935745239258,17.429779052734375,1.2349345684051514,1.4195564985275269,-0.04544014856219292 +0.7000000476837158,24.209775924682617,16.0972957611084,17.159799575805664,1.2922046184539795,1.50132155418396,-0.17496813833713531 +0.7000000476837158,24.55034065246582,16.00457763671875,17.159799575805664,1.3552014827728271,1.3923015594482422,-0.1148301437497139 +0.7000000476837158,24.34600257873535,16.0972957611084,17.339784622192383,1.217753529548645,1.4195564985275269,-0.1148301437497139 +0.7000000476837158,24.618453979492188,16.236371994018555,17.56477165222168,1.2635695934295654,1.4577134847640991,-0.09632615000009537 +0.7000000476837158,24.482229232788086,16.0972957611084,17.519773483276367,1.395290493965149,1.4304585456848145,-0.05469214916229248 +0.7000000476837158,24.277889251708984,16.00457763671875,17.60976791381836,1.2807505130767822,1.5231255292892456,-0.13796015083789825 +0.7000000476837158,24.34600257873535,16.143653869628906,17.519773483276367,1.2750235795974731,1.4032034873962402,-0.06394414603710175 +0.7000000476837158,24.14166259765625,16.236371994018555,17.429779052734375,1.2406615018844604,1.4686155319213867,-0.11945614963769913 +0.7000000476837158,24.277889251708984,16.050935745239258,17.384782791137695,1.2864775657653809,1.4958704710006714,-0.06857015192508698 +0.7000000476837158,23.93732452392578,15.95821762084961,17.204795837402344,1.2578425407409668,1.566733479499817,-0.13333414494991302 +0.7000000476837158,24.073549270629883,16.0972957611084,17.159799575805664,1.2005724906921387,1.4141054153442383,-0.12408214807510376 +0.7000000476837158,24.209775924682617,16.0972957611084,17.474777221679688,1.2750235795974731,1.4304585456848145,-0.0870741531252861 +0.7000000476837158,24.00543785095215,16.143653869628906,17.24979019165039,1.2750235795974731,1.4740664958953857,-0.05006615072488785 +0.7000000476837158,24.209775924682617,16.0972957611084,17.294788360595703,1.2292075157165527,1.4631645679473877,-0.14258615672588348 +0.7000000476837158,24.14166259765625,16.050935745239258,17.429779052734375,1.2406615018844604,1.4359095096588135,-0.11020414531230927 +0.7000000476837158,24.073549270629883,16.190011978149414,17.519773483276367,1.3322936296463013,1.3813995122909546,-0.06394414603710175 +0.7000000476837158,24.277889251708984,16.0972957611084,17.24979019165039,1.2692965269088745,1.4195564985275269,-0.07319615036249161 +0.7000000476837158,24.209775924682617,16.050935745239258,17.384782791137695,1.315112590789795,1.5285764932632446,-0.10557814687490463 +0.7000000476837158,24.41411590576172,16.050935745239258,17.24979019165039,1.2807505130767822,1.5558315515518188,-0.19809813797473907 +0.7000000476837158,24.482229232788086,15.865500450134277,17.204795837402344,1.2578425407409668,1.4958704710006714,-0.11945614963769913 +0.7000000476837158,24.41411590576172,16.143653869628906,17.474777221679688,1.246388554573059,1.4577134847640991,-0.15646414458751678 +0.7000000476837158,24.482229232788086,16.050935745239258,17.384782791137695,1.2578425407409668,1.4686155319213867,-0.1148301437497139 +0.7000000476837158,24.073549270629883,16.00457763671875,17.339784622192383,1.4067444801330566,1.3813995122909546,-0.22585414350032806 +0.7000000476837158,24.618453979492188,15.911858558654785,17.429779052734375,1.3036586046218872,1.3486934900283813,-0.19809813797473907 +0.7000000476837158,24.277889251708984,16.190011978149414,17.519773483276367,1.246388554573059,1.3923015594482422,-0.05469214916229248 +0.7000000476837158,24.34600257873535,16.0972957611084,17.159799575805664,1.217753529548645,1.4904195070266724,-0.06394414603710175 +0.7000000476837158,24.277889251708984,16.143653869628906,17.429779052734375,1.3494744300842285,1.4250074625015259,-0.1148301437497139 +0.7000000476837158,24.41411590576172,16.143653869628906,17.474777221679688,1.315112590789795,1.3813995122909546,-0.10557814687490463 +0.7000000476837158,24.34600257873535,16.282730102539062,17.429779052734375,1.2635695934295654,1.4631645679473877,-0.13333414494991302 +0.7000000476837158,24.00543785095215,16.143653869628906,17.204795837402344,1.2406615018844604,1.4304585456848145,-0.09170015156269073 +0.7000000476837158,24.14166259765625,15.95821762084961,17.24979019165039,1.343747615814209,1.5285764932632446,-0.15183815360069275 +0.7000000476837158,24.34600257873535,16.050935745239258,17.24979019165039,1.246388554573059,1.446811556816101,-0.09170015156269073 +0.7000000476837158,24.209775924682617,16.00457763671875,17.24979019165039,1.217753529548645,1.3813995122909546,-0.16571614146232605 +0.7000000476837158,24.209775924682617,16.050935745239258,17.24979019165039,1.246388554573059,1.50132155418396,-0.08244814723730087 +0.7000000476837158,24.209775924682617,16.00457763671875,17.339784622192383,1.315112590789795,1.4522624015808105,-0.1888461410999298 +0.7000000476837158,24.34600257873535,16.143653869628906,17.474777221679688,1.2922046184539795,1.2778304815292358,-0.19809813797473907 +0.7000000476837158,24.41411590576172,16.190011978149414,17.429779052734375,1.3895634412765503,1.4359095096588135,-0.1009521484375 +0.7000000476837158,23.93732452392578,16.236371994018555,17.384782791137695,1.2578425407409668,1.50132155418396,-0.1287081390619278 +0.7000000476837158,24.482229232788086,16.190011978149414,17.294788360595703,1.3666554689407349,1.4849685430526733,-0.0870741531252861 +0.7000000476837158,24.073549270629883,16.050935745239258,17.384782791137695,1.343747615814209,1.5558315515518188,-0.15183815360069275 +0.7000000476837158,24.00543785095215,15.95821762084961,17.429779052734375,1.3036586046218872,1.4250074625015259,-0.17034214735031128 +0.7000000476837158,24.14166259765625,16.0972957611084,17.339784622192383,1.217753529548645,1.4577134847640991,-0.1148301437497139 +0.7000000476837158,24.00543785095215,16.00457763671875,17.204795837402344,1.2692965269088745,1.50132155418396,-0.16109015047550201 +0.7000000476837158,24.209775924682617,15.95821762084961,17.11480140686035,1.3552014827728271,1.375948429107666,-0.17959414422512054 +0.7000000476837158,24.209775924682617,16.0972957611084,17.384782791137695,1.3838365077972412,1.4740664958953857,-0.14721214771270752 +0.7000000476837158,24.41411590576172,16.236371994018555,17.294788360595703,1.2120264768600464,1.4359095096588135,-0.0870741531252861 +0.7000000476837158,24.482229232788086,16.143653869628906,17.204795837402344,1.2922046184539795,1.4795174598693848,-0.11020414531230927 +0.7000000476837158,24.14166259765625,16.143653869628906,17.294788360595703,1.3093855381011963,1.4631645679473877,-0.0870741531252861 +0.7000000476837158,24.34600257873535,16.00457763671875,17.294788360595703,1.3093855381011963,1.446811556816101,-0.13796015083789825 +0.7000000476837158,24.618453979492188,16.00457763671875,17.384782791137695,1.2578425407409668,1.4141054153442383,-0.1148301437497139 +0.7000000476837158,24.41411590576172,16.00457763671875,17.294788360595703,1.2750235795974731,1.512223482131958,-0.1287081390619278 +0.7000000476837158,24.209775924682617,15.95821762084961,17.294788360595703,1.3552014827728271,1.4686155319213867,-0.16571614146232605 +0.7000000476837158,24.41411590576172,16.00457763671875,17.204795837402344,1.2349345684051514,1.375948429107666,-0.17496813833713531 +0.7000000476837158,24.277889251708984,15.865500450134277,17.384782791137695,1.2521154880523682,1.4195564985275269,-0.14258615672588348 +0.7000000476837158,24.00543785095215,16.0972957611084,17.384782791137695,1.2349345684051514,1.4086545705795288,-0.07319615036249161 +0.7000000476837158,24.14166259765625,16.050935745239258,17.339784622192383,1.2807505130767822,1.3704975843429565,-0.15646414458751678 +0.7000000476837158,24.073549270629883,16.00457763671875,17.474777221679688,1.3838365077972412,1.3923015594482422,-0.11020414531230927 +0.7000000476837158,23.93732452392578,16.143653869628906,17.339784622192383,1.2292075157165527,1.4195564985275269,-0.12408214807510376 +0.7000000476837158,24.14166259765625,16.190011978149414,17.384782791137695,1.2864775657653809,1.5340274572372437,-0.10557814687490463 +0.7000000476837158,23.93732452392578,16.050935745239258,17.24979019165039,1.3781094551086426,1.4740664958953857,-0.04544014856219292 +0.7000000476837158,24.41411590576172,16.0972957611084,17.384782791137695,1.3552014827728271,1.4141054153442383,-0.18422015011310577 +0.7000000476837158,24.34600257873535,16.050935745239258,17.204795837402344,1.2292075157165527,1.3977524042129517,-0.09632615000009537 +0.7000000476837158,24.34600257873535,16.050935745239258,17.24979019165039,1.223480463027954,1.4686155319213867,-0.10557814687490463 +0.7000000476837158,24.41411590576172,16.143653869628906,17.339784622192383,1.217753529548645,1.4849685430526733,-0.17034214735031128 +0.7000000476837158,24.277889251708984,16.050935745239258,17.339784622192383,1.3322936296463013,1.4522624015808105,-0.1287081390619278 +0.7000000476837158,24.482229232788086,16.050935745239258,17.474777221679688,1.3666554689407349,1.4686155319213867,-0.11945614963769913 +0.7000000476837158,24.482229232788086,16.190011978149414,17.294788360595703,1.246388554573059,1.3868504762649536,-0.03618814796209335 +0.7000000476837158,24.14166259765625,16.00457763671875,17.294788360595703,1.3781094551086426,1.4904195070266724,-0.1009521484375 +0.7000000476837158,24.55034065246582,15.911858558654785,17.474777221679688,1.3666554689407349,1.4577134847640991,-0.12408214807510376 +0.7000000476837158,24.00543785095215,16.050935745239258,17.384782791137695,1.3380205631256104,1.4141054153442383,-0.13796015083789825 +0.7000000476837158,24.277889251708984,16.050935745239258,17.204795837402344,1.2349345684051514,1.4086545705795288,-0.09632615000009537 +0.7000000476837158,24.073549270629883,16.143653869628906,17.384782791137695,1.2349345684051514,1.4740664958953857,-0.09632615000009537 +0.7000000476837158,23.801097869873047,16.00457763671875,17.294788360595703,1.223480463027954,1.5612825155258179,-0.1888461410999298 +0.7000000476837158,24.277889251708984,16.0972957611084,17.204795837402344,1.2292075157165527,1.4740664958953857,-0.09632615000009537 +0.7000000476837158,24.073549270629883,16.143653869628906,17.429779052734375,1.2750235795974731,1.4141054153442383,-0.1009521484375 +0.7000000476837158,23.93732452392578,16.00457763671875,17.519773483276367,1.2406615018844604,1.3813995122909546,-0.06857015192508698 +0.7000000476837158,24.41411590576172,16.050935745239258,17.384782791137695,1.4296525716781616,1.3595954179763794,-0.0870741531252861 +0.7000000476837158,24.209775924682617,16.0972957611084,17.429779052734375,1.223480463027954,1.3813995122909546,-0.2027241587638855 +0.7000000476837158,24.277889251708984,16.143653869628906,17.24979019165039,1.246388554573059,1.3595954179763794,-0.0870741531252861 +0.7000000476837158,24.55034065246582,16.190011978149414,17.339784622192383,1.2292075157165527,1.5231255292892456,-0.15183815360069275 +0.7000000476837158,24.34600257873535,16.143653869628906,17.11480140686035,1.3609285354614258,1.512223482131958,-0.05006615072488785 +0.7000000476837158,24.55034065246582,16.050935745239258,17.204795837402344,1.2807505130767822,1.5503804683685303,-0.17034214735031128 +0.7000000476837158,24.34600257873535,16.190011978149414,17.339784622192383,1.1776645183563232,1.5558315515518188,-0.1009521484375 +0.7000000476837158,24.618453979492188,16.190011978149414,17.204795837402344,1.2922046184539795,1.4740664958953857,-0.13333414494991302 +0.7000000476837158,24.277889251708984,16.00457763671875,17.159799575805664,1.217753529548645,1.5340274572372437,-0.1888461410999298 +0.7000000476837158,24.14166259765625,16.050935745239258,17.294788360595703,1.2864775657653809,1.4086545705795288,-0.09170015156269073 +0.7000000476837158,24.209775924682617,15.95821762084961,17.519773483276367,1.2750235795974731,1.3813995122909546,-0.16571614146232605 +0.7000000476837158,24.34600257873535,16.282730102539062,17.384782791137695,1.2062995433807373,1.4141054153442383,-0.09170015156269073 +0.7000000476837158,24.41411590576172,16.236371994018555,17.204795837402344,1.3322936296463013,1.446811556816101,-0.07782214879989624 +0.7000000476837158,24.209775924682617,16.0972957611084,17.24979019165039,1.315112590789795,1.4958704710006714,-0.16109015047550201 +0.7000000476837158,24.209775924682617,16.050935745239258,17.294788360595703,1.2578425407409668,1.3159875869750977,-0.13333414494991302 +0.7000000476837158,24.55034065246582,16.190011978149414,17.339784622192383,1.1833914518356323,1.3868504762649536,-0.15183815360069275 +0.7000000476837158,24.34600257873535,16.0972957611084,17.474777221679688,1.108940601348877,1.4631645679473877,-0.06857015192508698 +0.7000000476837158,24.073549270629883,16.00457763671875,17.429779052734375,1.315112590789795,1.4195564985275269,-0.1148301437497139 +0.7000000476837158,24.55034065246582,15.95821762084961,17.24979019165039,1.2635695934295654,1.4304585456848145,-0.09170015156269073 +0.7000000476837158,24.41411590576172,16.0972957611084,17.339784622192383,1.2062995433807373,1.4086545705795288,-0.14721214771270752 +0.7000000476837158,24.34600257873535,15.95821762084961,17.24979019165039,1.2979315519332886,1.5285764932632446,-0.03618814796209335 +0.7000000476837158,24.073549270629883,16.190011978149414,17.339784622192383,1.3036586046218872,1.4359095096588135,-0.17034214735031128 +0.7000000476837158,24.34600257873535,16.143653869628906,17.56477165222168,1.3322936296463013,1.4032034873962402,-0.14258615672588348 +0.7000000476837158,24.00543785095215,16.0972957611084,17.429779052734375,1.2062995433807373,1.4250074625015259,-0.12408214807510376 +0.7000000476837158,24.073549270629883,16.0972957611084,17.429779052734375,1.1490294933319092,1.3923015594482422,-0.1009521484375 +0.7000000476837158,24.073549270629883,16.0972957611084,17.204795837402344,1.3494744300842285,1.5776355266571045,-0.13796015083789825 +0.7000000476837158,24.277889251708984,16.050935745239258,17.339784622192383,1.3093855381011963,1.5340274572372437,-0.16571614146232605 +0.7000000476837158,24.073549270629883,16.0972957611084,17.24979019165039,1.1833914518356323,1.3977524042129517,-0.1888461410999298 +0.7000000476837158,24.073549270629883,16.190011978149414,17.384782791137695,1.2807505130767822,1.3923015594482422,-0.13333414494991302 +0.7000000476837158,24.41411590576172,16.143653869628906,17.159799575805664,1.2922046184539795,1.4849685430526733,-0.1287081390619278 +0.7000000476837158,24.41411590576172,16.00457763671875,17.204795837402344,1.1662105321884155,1.3977524042129517,-0.22122815251350403 +0.7000000476837158,24.55034065246582,16.0972957611084,17.429779052734375,1.2521154880523682,1.4250074625015259,-0.17959414422512054 +0.7000000476837158,24.822792053222656,16.050935745239258,17.474777221679688,1.2750235795974731,1.4141054153442383,-0.05469214916229248 +0.7000000476837158,24.34600257873535,16.050935745239258,17.384782791137695,1.315112590789795,1.4958704710006714,-0.11020414531230927 +0.7000000476837158,24.55034065246582,16.050935745239258,17.384782791137695,1.2120264768600464,1.4849685430526733,-0.0870741531252861 +0.7000000476837158,24.34600257873535,16.050935745239258,17.429779052734375,1.2864775657653809,1.4359095096588135,-0.17496813833713531 +0.7000000476837158,24.209775924682617,16.0972957611084,17.204795837402344,1.2807505130767822,1.4141054153442383,-0.14258615672588348 +0.7000000476837158,24.073549270629883,16.143653869628906,17.294788360595703,1.3322936296463013,1.4577134847640991,-0.06394414603710175 +0.7000000476837158,23.93732452392578,15.911858558654785,17.24979019165039,1.3666554689407349,1.4958704710006714,-0.0870741531252861 +0.7000000476837158,24.073549270629883,15.865500450134277,17.11480140686035,1.2922046184539795,1.3432425260543823,-0.16109015047550201 +0.7000000476837158,23.93732452392578,16.00457763671875,17.339784622192383,1.2750235795974731,1.4141054153442383,-0.1287081390619278 +0.7000000476837158,24.073549270629883,16.050935745239258,17.339784622192383,1.2692965269088745,1.4849685430526733,-0.08244814723730087 +0.7000000476837158,24.277889251708984,16.0972957611084,17.384782791137695,1.2922046184539795,1.4250074625015259,-0.1287081390619278 +0.7000000476837158,24.14166259765625,16.050935745239258,17.384782791137695,1.3322936296463013,1.3977524042129517,-0.1287081390619278 +0.7000000476837158,24.55034065246582,16.282730102539062,17.56477165222168,1.315112590789795,1.4250074625015259,-0.07319615036249161 +0.7000000476837158,24.41411590576172,16.00457763671875,17.474777221679688,1.3380205631256104,1.446811556816101,-0.05469214916229248 +0.7000000476837158,24.34600257873535,16.143653869628906,17.339784622192383,1.2692965269088745,1.5394785404205322,-0.11945614963769913 +0.7000000476837158,24.277889251708984,16.00457763671875,17.204795837402344,1.2807505130767822,1.4849685430526733,-0.15183815360069275 +0.7000000476837158,24.073549270629883,16.050935745239258,17.159799575805664,1.2692965269088745,1.4195564985275269,-0.13796015083789825 +0.7000000476837158,24.482229232788086,16.236371994018555,17.339784622192383,1.2005724906921387,1.4250074625015259,-0.13333414494991302 +0.7000000476837158,24.34600257873535,16.190011978149414,17.24979019165039,1.2578425407409668,1.4304585456848145,-0.1287081390619278 +0.7000000476837158,24.209775924682617,16.190011978149414,17.204795837402344,1.2979315519332886,1.4141054153442383,-0.12408214807510376 +0.7000000476837158,24.209775924682617,16.050935745239258,17.429779052734375,1.2578425407409668,1.35414457321167,-0.13333414494991302 +0.7000000476837158,24.34600257873535,16.143653869628906,17.339784622192383,1.2349345684051514,1.4141054153442383,-0.09170015156269073 +0.7000000476837158,24.209775924682617,16.143653869628906,17.294788360595703,1.2349345684051514,1.3704975843429565,-0.09632615000009537 +0.7000000476837158,24.073549270629883,15.95821762084961,17.339784622192383,1.2578425407409668,1.5721845626831055,-0.09632615000009537 +0.7000000476837158,24.209775924682617,16.050935745239258,17.24979019165039,1.2922046184539795,1.365046501159668,-0.15183815360069275 +0.7000000476837158,24.34600257873535,16.143653869628906,17.339784622192383,1.2521154880523682,1.4413604736328125,-0.1009521484375 +0.7000000476837158,24.277889251708984,16.143653869628906,17.204795837402344,1.3265665769577026,1.4141054153442383,-0.11945614963769913 +0.7000000476837158,24.073549270629883,15.911858558654785,17.11480140686035,1.3609285354614258,1.4522624015808105,-0.1148301437497139 +0.7000000476837158,24.482229232788086,15.911858558654785,17.294788360595703,1.2750235795974731,1.3923015594482422,-0.13796015083789825 +0.7000000476837158,24.34600257873535,16.0972957611084,17.519773483276367,1.2979315519332886,1.4195564985275269,-0.09170015156269073 +0.7000000476837158,24.34600257873535,16.143653869628906,17.204795837402344,1.2349345684051514,1.4740664958953857,-0.040814146399497986 +0.7000000476837158,24.073549270629883,16.050935745239258,17.294788360595703,1.2406615018844604,1.5231255292892456,-0.17034214735031128 +0.7000000476837158,24.482229232788086,15.95821762084961,17.429779052734375,1.3036586046218872,1.3432425260543823,-0.17959414422512054 +0.7000000476837158,24.41411590576172,16.0972957611084,17.339784622192383,1.1662105321884155,1.4740664958953857,-0.07319615036249161 +0.7000000476837158,24.00543785095215,16.190011978149414,17.339784622192383,1.2521154880523682,1.506772518157959,-0.06857015192508698 diff --git a/results/Load 10 branch 1/results_CORE_duty80%_VHigh24.csv b/results/Load 10 branch 1/results_CORE_duty80%_VHigh24.csv new file mode 100644 index 0000000000000000000000000000000000000000..c760073323c4c9d7a3caa4630164043f35e5c981 --- /dev/null +++ b/results/Load 10 branch 1/results_CORE_duty80%_VHigh24.csv @@ -0,0 +1,501 @@ +duty_cycle,Vhigh_value,V1_low_value,V2_low_value,Ihigh_value,I1_low_value,I2_low_value +0.10000000149011612,24.209775924682617,1.8650814294815063,3.0757362842559814,0.14107748866081238,0.024100448936223984,-0.23973214626312256 +0.20000000298023224,24.34600257873535,1.7723634243011475,3.1657304763793945,0.2269824892282486,0.024100448936223984,-0.17034214735031128 +0.30000001192092896,24.41411590576172,4.50754451751709,5.505574703216553,0.16971249878406525,-0.03040955401957035,-0.07782214879989624 +0.4000000059604645,24.55034065246582,6.918212413787842,7.710427761077881,0.34724947810173035,0.00229644775390625,-0.17496813833713531 +0.5,24.209775924682617,9.236162185668945,10.3202543258667,0.5935105085372925,0.14947344362735748,-0.1009521484375 +0.6000000238418579,24.55034065246582,11.785906791687012,12.435111999511719,0.7366855144500732,0.24759146571159363,0.028575848788022995 +0.7000000476837158,24.34600257873535,14.103857040405273,14.729959487915039,0.9714924693107605,0.5910044312477112,0.028575848788022995 +0.8000000715255737,24.00543785095215,16.236371994018555,16.97981071472168,1.343747615814209,0.7327304482460022,0.0008198499563150108 +0.8000000715255737,24.209775924682617,18.64703941345215,19.094669342041016,1.8076344728469849,1.0325355529785156,0.0008198499563150108 +0.8000000715255737,24.277889251708984,18.276168823242188,19.409648895263672,1.4640145301818848,1.506772518157959,-0.05931815132498741 +0.8000000715255737,24.073549270629883,18.368886947631836,19.409648895263672,1.6415514945983887,1.6321455240249634,-0.04544014856219292 +0.8000000715255737,23.869211196899414,18.183448791503906,19.139665603637695,1.6129164695739746,1.6757535934448242,-0.2582361400127411 +0.8000000715255737,23.73298454284668,18.229808807373047,19.409648895263672,1.687367558479309,1.5558315515518188,-0.1148301437497139 +0.8000000715255737,24.34600257873535,18.276168823242188,19.544639587402344,1.756091594696045,1.6266944408416748,-0.14721214771270752 +0.8000000715255737,23.73298454284668,18.46160316467285,19.409648895263672,1.7102755308151245,1.5885374546051025,-0.03618814796209335 +0.8000000715255737,24.00543785095215,18.46160316467285,19.229660034179688,1.5671006441116333,1.7357144355773926,0.03782784938812256 +0.8000000715255737,24.14166259765625,18.368886947631836,19.31965446472168,1.555646538734436,1.7684205770492554,-0.24898414313793182 +0.8000000715255737,24.00543785095215,18.229808807373047,19.409648895263672,1.7503645420074463,1.7466164827346802,-0.19809813797473907 +0.8000000715255737,24.073549270629883,18.1370906829834,19.45464515686035,1.6644595861434937,1.6321455240249634,-0.19347214698791504 +0.8000000715255737,24.14166259765625,18.507963180541992,19.499643325805664,1.6816405057907104,1.64849853515625,-0.06394414603710175 +0.8000000715255737,24.41411590576172,18.46160316467285,19.45464515686035,1.601462483406067,1.6812044382095337,-0.008432149887084961 +0.8000000715255737,24.41411590576172,18.415245056152344,19.589635848999023,1.7331836223602295,1.7139105796813965,-0.2906181216239929 +0.8000000715255737,24.41411590576172,18.415245056152344,19.544639587402344,1.784726619720459,1.7466164827346802,-0.08244814723730087 +0.8000000715255737,24.41411590576172,18.507963180541992,19.409648895263672,1.6415514945983887,1.7193615436553955,-0.06394414603710175 +0.8000000715255737,24.34600257873535,18.507963180541992,19.36465072631836,1.6644595861434937,1.6157925128936768,-0.09170015156269073 +0.8000000715255737,24.277889251708984,18.507963180541992,19.31965446472168,1.4983766078948975,1.5721845626831055,-0.10557814687490463 +0.8000000715255737,24.073549270629883,18.507963180541992,19.544639587402344,1.6644595861434937,1.6921066045761108,-0.07782214879989624 +0.8000000715255737,24.00543785095215,18.415245056152344,19.589635848999023,1.5900084972381592,1.64849853515625,-0.16109015047550201 +0.8000000715255737,24.482229232788086,18.276168823242188,19.634632110595703,1.5957355499267578,1.6321455240249634,-0.13333414494991302 +0.8000000715255737,24.14166259765625,18.60068130493164,19.45464515686035,1.6759135723114014,1.6048904657363892,-0.008432149887084961 +0.8000000715255737,23.869211196899414,18.554323196411133,19.409648895263672,1.6243705749511719,1.6212434768676758,-0.040814146399497986 +0.8000000715255737,24.209775924682617,18.507963180541992,19.409648895263672,1.6129164695739746,1.6648515462875366,-0.25361016392707825 +0.8000000715255737,24.14166259765625,18.415245056152344,19.36465072631836,1.6472785472869873,1.7139105796813965,-0.08244814723730087 +0.8000000715255737,24.34600257873535,18.46160316467285,19.229660034179688,1.7045485973358154,1.5231255292892456,-0.12408214807510376 +0.8000000715255737,24.277889251708984,18.368886947631836,19.679630279541016,1.687367558479309,1.5394785404205322,-0.05931815132498741 +0.8000000715255737,24.41411590576172,18.554323196411133,19.544639587402344,1.7389105558395386,1.659400463104248,-0.08244814723730087 +0.8000000715255737,24.55034065246582,18.46160316467285,19.36465072631836,1.601462483406067,1.7357144355773926,-0.25361016392707825 +0.8000000715255737,24.41411590576172,18.554323196411133,19.634632110595703,1.7102755308151245,1.6703025102615356,-0.040814146399497986 +0.8000000715255737,24.41411590576172,18.554323196411133,19.589635848999023,1.7789995670318604,1.7139105796813965,-0.12408214807510376 +0.8000000715255737,24.34600257873535,18.507963180541992,19.45464515686035,1.5327385663986206,1.5830864906311035,-0.1009521484375 +0.8000000715255737,24.41411590576172,18.554323196411133,19.31965446472168,1.7389105558395386,1.6866555213928223,-0.05469214916229248 +0.8000000715255737,24.073549270629883,18.554323196411133,19.544639587402344,1.4640145301818848,1.6648515462875366,-0.24898414313793182 +0.8000000715255737,24.00543785095215,18.415245056152344,19.499643325805664,1.6644595861434937,1.5776355266571045,-0.15183815360069275 +0.8000000715255737,23.93732452392578,18.368886947631836,19.589635848999023,1.7274565696716309,1.5939885377883911,-0.15183815360069275 +0.8000000715255737,24.00543785095215,18.554323196411133,19.31965446472168,1.7217295169830322,1.5994395017623901,-0.06394414603710175 +0.8000000715255737,24.073549270629883,18.368886947631836,19.31965446472168,1.687367558479309,1.708459496498108,-0.06394414603710175 +0.8000000715255737,24.14166259765625,18.507963180541992,19.544639587402344,1.5785545110702515,1.653949499130249,-0.2304801493883133 +0.8000000715255737,24.14166259765625,18.368886947631836,19.544639587402344,1.658732533454895,1.6703025102615356,-0.1148301437497139 +0.8000000715255737,24.209775924682617,18.276168823242188,19.274656295776367,1.658732533454895,1.5830864906311035,-0.14721214771270752 +0.8000000715255737,24.209775924682617,18.368886947631836,19.589635848999023,1.6816405057907104,1.5449296236038208,-0.11945614963769913 +0.8000000715255737,24.41411590576172,18.64703941345215,19.45464515686035,1.5900084972381592,1.6321455240249634,-0.040814146399497986 +0.8000000715255737,24.277889251708984,18.46160316467285,19.45464515686035,1.5900084972381592,1.708459496498108,-0.2998701333999634 +0.8000000715255737,24.34600257873535,18.415245056152344,19.544639587402344,1.7160025835037231,1.7575185298919678,-0.1009521484375 +0.8000000715255737,24.209775924682617,18.415245056152344,19.679630279541016,1.6759135723114014,1.7520674467086792,-0.05931815132498741 +0.8000000715255737,24.14166259765625,18.415245056152344,19.409648895263672,1.630097508430481,1.6321455240249634,-0.17034214735031128 +0.8000000715255737,24.34600257873535,18.60068130493164,19.45464515686035,1.6186435222625732,1.5558315515518188,-0.06394414603710175 +0.8000000715255737,24.00543785095215,18.276168823242188,19.229660034179688,1.549919605255127,1.730263590812683,-0.18422015011310577 +0.8000000715255737,24.00543785095215,18.322526931762695,19.634632110595703,1.7274565696716309,1.6703025102615356,-0.14258615672588348 +0.8000000715255737,24.073549270629883,18.368886947631836,19.634632110595703,1.687367558479309,1.5612825155258179,-0.1148301437497139 +0.8000000715255737,24.14166259765625,18.507963180541992,19.634632110595703,1.687367558479309,1.50132155418396,-0.05931815132498741 +0.8000000715255737,24.14166259765625,18.46160316467285,19.544639587402344,1.7102755308151245,1.6430474519729614,-0.06857015192508698 +0.8000000715255737,24.34600257873535,18.60068130493164,19.31965446472168,1.549919605255127,1.708459496498108,-0.05006615072488785 +0.8000000715255737,24.277889251708984,18.368886947631836,19.409648895263672,1.5327385663986206,1.7139105796813965,-0.22585414350032806 +0.8000000715255737,24.482229232788086,18.46160316467285,19.31965446472168,1.601462483406067,1.5558315515518188,-0.15646414458751678 +0.8000000715255737,24.34600257873535,18.276168823242188,19.544639587402344,1.7331836223602295,1.6321455240249634,-0.03156214952468872 +0.8000000715255737,24.41411590576172,18.554323196411133,19.544639587402344,1.630097508430481,1.6048904657363892,-0.05006615072488785 +0.8000000715255737,24.55034065246582,18.554323196411133,19.31965446472168,1.6530054807662964,1.7357144355773926,-0.022310150787234306 +0.8000000715255737,24.073549270629883,18.554323196411133,19.36465072631836,1.6472785472869873,1.7466164827346802,-0.2998701333999634 +0.8000000715255737,24.34600257873535,18.183448791503906,19.499643325805664,1.7618186473846436,1.7466164827346802,-0.13333414494991302 +0.8000000715255737,24.14166259765625,18.507963180541992,19.544639587402344,1.6243705749511719,1.6321455240249634,-0.11945614963769913 +0.8000000715255737,24.41411590576172,18.415245056152344,19.544639587402344,1.5671006441116333,1.5721845626831055,-0.07782214879989624 +0.8000000715255737,24.00543785095215,18.46160316467285,19.544639587402344,1.601462483406067,1.6212434768676758,-0.0038061500526964664 +0.8000000715255737,23.93732452392578,18.415245056152344,19.409648895263672,1.5613735914230347,1.6648515462875366,-0.30912214517593384 +0.8000000715255737,23.93732452392578,18.276168823242188,19.679630279541016,1.6472785472869873,1.5994395017623901,-0.13796015083789825 +0.8000000715255737,24.209775924682617,18.368886947631836,19.589635848999023,1.6816405057907104,1.6212434768676758,-0.08244814723730087 +0.8000000715255737,24.41411590576172,18.276168823242188,19.499643325805664,1.687367558479309,1.6703025102615356,-0.07782214879989624 +0.8000000715255737,24.209775924682617,18.554323196411133,19.409648895263672,1.5098305940628052,1.7357144355773926,-0.022310150787234306 +0.8000000715255737,24.41411590576172,18.368886947631836,19.229660034179688,1.5270116329193115,1.7357144355773926,-0.3738861382007599 +0.8000000715255737,24.482229232788086,18.415245056152344,19.499643325805664,1.6930946111679077,1.6266944408416748,-0.040814146399497986 +0.8000000715255737,24.34600257873535,18.322526931762695,19.679630279541016,1.5384656190872192,1.5285764932632446,-0.15183815360069275 +0.8000000715255737,24.482229232788086,18.46160316467285,19.679630279541016,1.6530054807662964,1.6212434768676758,-0.03618814796209335 +0.8000000715255737,24.277889251708984,18.46160316467285,19.544639587402344,1.7160025835037231,1.708459496498108,-0.11945614963769913 +0.8000000715255737,24.209775924682617,18.46160316467285,19.409648895263672,1.555646538734436,1.730263590812683,0.014697848819196224 +0.8000000715255737,24.55034065246582,18.276168823242188,19.45464515686035,1.6243705749511719,1.7030085325241089,-0.2582361400127411 +0.8000000715255737,24.14166259765625,18.415245056152344,19.634632110595703,1.658732533454895,1.5776355266571045,-0.11945614963769913 +0.8000000715255737,24.073549270629883,18.507963180541992,19.589635848999023,1.6988215446472168,1.6866555213928223,-0.05006615072488785 +0.8000000715255737,23.93732452392578,18.60068130493164,19.499643325805664,1.7045485973358154,1.5885374546051025,-0.022310150787234306 +0.8000000715255737,24.14166259765625,18.415245056152344,19.409648895263672,1.7217295169830322,1.6975574493408203,-0.04544014856219292 +0.8000000715255737,24.073549270629883,18.322526931762695,19.499643325805664,1.5957355499267578,1.6430474519729614,-0.30912214517593384 +0.8000000715255737,24.00543785095215,18.368886947631836,19.589635848999023,1.6358245611190796,1.6103415489196777,-0.08244814723730087 +0.8000000715255737,24.00543785095215,18.554323196411133,19.589635848999023,1.6530054807662964,1.7030085325241089,-0.1148301437497139 +0.8000000715255737,24.277889251708984,18.554323196411133,19.499643325805664,1.6243705749511719,1.6703025102615356,-0.07782214879989624 +0.8000000715255737,24.209775924682617,18.46160316467285,19.499643325805664,1.630097508430481,1.6921066045761108,-0.06857015192508698 +0.8000000715255737,24.55034065246582,18.368886947631836,19.184661865234375,1.555646538734436,1.5721845626831055,-0.31374815106391907 +0.8000000715255737,24.34600257873535,18.415245056152344,19.589635848999023,1.6358245611190796,1.6212434768676758,-0.14258615672588348 +0.8000000715255737,24.41411590576172,18.507963180541992,19.589635848999023,1.6358245611190796,1.6757535934448242,-0.11020414531230927 +0.8000000715255737,24.34600257873535,18.507963180541992,19.634632110595703,1.4811955690383911,1.7411655187606812,0.014697848819196224 +0.8000000715255737,24.209775924682617,18.554323196411133,19.274656295776367,1.6243705749511719,1.7193615436553955,-0.06394414603710175 +0.8000000715255737,24.209775924682617,18.322526931762695,19.499643325805664,1.687367558479309,1.6921066045761108,-0.0870741531252861 +0.8000000715255737,24.14166259765625,18.368886947631836,19.36465072631836,1.5900084972381592,1.5721845626831055,-0.24898414313793182 +0.8000000715255737,24.41411590576172,18.368886947631836,19.634632110595703,1.549919605255127,1.6703025102615356,-0.13333414494991302 +0.8000000715255737,24.277889251708984,18.554323196411133,19.634632110595703,1.5900084972381592,1.5776355266571045,-0.02693614922463894 +0.8000000715255737,23.93732452392578,18.554323196411133,19.499643325805664,1.687367558479309,1.7575185298919678,0.014697848819196224 +0.8000000715255737,24.34600257873535,18.507963180541992,19.544639587402344,1.6186435222625732,1.6321455240249634,-0.06857015192508698 +0.8000000715255737,24.14166259765625,18.415245056152344,19.274656295776367,1.5728274583816528,1.6157925128936768,-0.2443581372499466 +0.8000000715255737,24.00543785095215,18.507963180541992,19.679630279541016,1.630097508430481,1.7411655187606812,-0.09632615000009537 +0.8000000715255737,24.14166259765625,18.507963180541992,19.544639587402344,1.6472785472869873,1.659400463104248,-0.07319615036249161 +0.8000000715255737,24.209775924682617,18.415245056152344,19.45464515686035,1.7732726335525513,1.64849853515625,-0.1148301437497139 +0.8000000715255737,24.482229232788086,18.415245056152344,19.274656295776367,1.6701865196228027,1.5885374546051025,-0.04544014856219292 +0.8000000715255737,24.34600257873535,18.368886947631836,19.499643325805664,1.6644595861434937,1.653949499130249,-0.11945614963769913 +0.8000000715255737,24.34600257873535,18.554323196411133,19.679630279541016,1.5613735914230347,1.6048904657363892,-0.29524412751197815 +0.8000000715255737,24.55034065246582,18.60068130493164,19.724626541137695,1.7217295169830322,1.6648515462875366,-0.03156214952468872 +0.8000000715255737,24.14166259765625,18.507963180541992,19.274656295776367,1.7160025835037231,1.6866555213928223,-0.008432149887084961 +0.8000000715255737,24.277889251708984,18.415245056152344,19.31965446472168,1.6759135723114014,1.6703025102615356,-0.15183815360069275 +0.8000000715255737,24.41411590576172,18.276168823242188,19.409648895263672,1.6644595861434937,1.6266944408416748,-0.05931815132498741 +0.8000000715255737,24.34600257873535,18.415245056152344,19.274656295776367,1.452560544013977,1.6321455240249634,-0.3368781507015228 +0.8000000715255737,24.073549270629883,18.322526931762695,19.724626541137695,1.658732533454895,1.6866555213928223,-0.07782214879989624 +0.8000000715255737,23.93732452392578,18.46160316467285,19.499643325805664,1.6129164695739746,1.6921066045761108,-0.017684150487184525 +0.8000000715255737,24.209775924682617,18.46160316467285,19.589635848999023,1.7389105558395386,1.6866555213928223,-0.07782214879989624 +0.8000000715255737,24.14166259765625,18.415245056152344,19.45464515686035,1.7045485973358154,1.6266944408416748,-0.09632615000009537 +0.8000000715255737,24.14166259765625,18.507963180541992,19.36465072631836,1.5785545110702515,1.7357144355773926,-0.03618814796209335 +0.8000000715255737,24.073549270629883,18.415245056152344,19.499643325805664,1.4697415828704834,1.6866555213928223,-0.2443581372499466 +0.8000000715255737,24.209775924682617,18.276168823242188,19.45464515686035,1.756091594696045,1.6812044382095337,-0.15183815360069275 +0.8000000715255737,24.41411590576172,18.46160316467285,19.45464515686035,1.658732533454895,1.566733479499817,-0.07782214879989624 +0.8000000715255737,24.277889251708984,18.322526931762695,19.724626541137695,1.6243705749511719,1.64849853515625,-0.1148301437497139 +0.8000000715255737,24.55034065246582,18.554323196411133,19.544639587402344,1.6644595861434937,1.6048904657363892,-0.040814146399497986 +0.8000000715255737,24.34600257873535,18.415245056152344,19.409648895263672,1.4754685163497925,1.6757535934448242,-0.2998701333999634 +0.8000000715255737,24.073549270629883,18.554323196411133,19.45464515686035,1.7331836223602295,1.6975574493408203,-0.05006615072488785 +0.8000000715255737,24.209775924682617,18.183448791503906,19.499643325805664,1.658732533454895,1.7030085325241089,-0.1009521484375 +0.8000000715255737,23.93732452392578,18.46160316467285,19.499643325805664,1.756091594696045,1.6321455240249634,-0.17034214735031128 +0.8000000715255737,24.277889251708984,18.415245056152344,19.589635848999023,1.6816405057907104,1.5558315515518188,-0.03618814796209335 +0.8000000715255737,24.14166259765625,18.507963180541992,19.45464515686035,1.5900084972381592,1.6812044382095337,-0.008432149887084961 +0.8000000715255737,24.073549270629883,18.368886947631836,19.45464515686035,1.601462483406067,1.7357144355773926,-0.2443581372499466 +0.8000000715255737,24.34600257873535,18.415245056152344,19.679630279541016,1.6358245611190796,1.6866555213928223,-0.0870741531252861 +0.8000000715255737,23.93732452392578,18.276168823242188,19.544639587402344,1.6358245611190796,1.6157925128936768,-0.11945614963769913 +0.8000000715255737,24.14166259765625,18.60068130493164,19.589635848999023,1.6186435222625732,1.6212434768676758,-0.06394414603710175 +0.8000000715255737,24.073549270629883,18.368886947631836,19.589635848999023,1.5957355499267578,1.6648515462875366,-0.040814146399497986 +0.8000000715255737,24.482229232788086,18.46160316467285,19.409648895263672,1.4411065578460693,1.6321455240249634,-0.32762616872787476 +0.8000000715255737,24.55034065246582,18.276168823242188,19.499643325805664,1.6816405057907104,1.5612825155258179,-0.14721214771270752 +0.8000000715255737,24.41411590576172,18.276168823242188,19.589635848999023,1.6358245611190796,1.6648515462875366,-0.06857015192508698 +0.8000000715255737,24.618453979492188,18.554323196411133,19.45464515686035,1.6358245611190796,1.653949499130249,-0.16571614146232605 +0.8000000715255737,24.34600257873535,18.554323196411133,19.544639587402344,1.6243705749511719,1.6430474519729614,-0.04544014856219292 +0.8000000715255737,24.209775924682617,18.60068130493164,19.499643325805664,1.6129164695739746,1.64849853515625,-0.05469214916229248 +0.8000000715255737,24.00543785095215,18.368886947631836,19.409648895263672,1.5842814445495605,1.801126480102539,-0.3322521448135376 +0.8000000715255737,24.00543785095215,18.229808807373047,19.409648895263672,1.5384656190872192,1.6703025102615356,-0.07782214879989624 +0.8000000715255737,24.00543785095215,18.507963180541992,19.679630279541016,1.6701865196228027,1.6812044382095337,-0.15646414458751678 +0.8000000715255737,24.073549270629883,18.507963180541992,19.679630279541016,1.630097508430481,1.6157925128936768,-0.02693614922463894 +0.8000000715255737,24.14166259765625,18.554323196411133,19.45464515686035,1.6816405057907104,1.7466164827346802,0.010071849450469017 +0.8000000715255737,24.14166259765625,18.554323196411133,19.36465072631836,1.630097508430481,1.6866555213928223,-0.05469214916229248 +0.8000000715255737,24.209775924682617,18.368886947631836,19.45464515686035,1.6186435222625732,1.7248125076293945,-0.15183815360069275 +0.8000000715255737,24.41411590576172,18.368886947631836,19.769624710083008,1.6472785472869873,1.6866555213928223,-0.11945614963769913 +0.8000000715255737,24.41411590576172,18.554323196411133,19.589635848999023,1.5957355499267578,1.5994395017623901,-0.14258615672588348 +0.8000000715255737,24.34600257873535,18.46160316467285,19.499643325805664,1.6415514945983887,1.730263590812683,-0.03156214952468872 +0.8000000715255737,24.34600257873535,18.60068130493164,19.409648895263672,1.7160025835037231,1.64849853515625,-0.08244814723730087 +0.8000000715255737,24.618453979492188,18.507963180541992,19.409648895263672,1.6243705749511719,1.5885374546051025,-0.3322521448135376 +0.8000000715255737,24.277889251708984,18.60068130493164,19.679630279541016,1.7102755308151245,1.7193615436553955,-0.08244814723730087 +0.8000000715255737,24.14166259765625,18.60068130493164,19.589635848999023,1.6129164695739746,1.64849853515625,-0.03156214952468872 +0.8000000715255737,23.93732452392578,18.554323196411133,19.589635848999023,1.6129164695739746,1.6266944408416748,-0.03156214952468872 +0.8000000715255737,23.664871215820312,18.46160316467285,19.45464515686035,1.6759135723114014,1.6975574493408203,-0.11945614963769913 +0.8000000715255737,23.869211196899414,18.368886947631836,19.409648895263672,1.4811955690383911,1.6266944408416748,-0.15646414458751678 +0.8000000715255737,24.209775924682617,18.368886947631836,19.634632110595703,1.6071895360946655,1.5994395017623901,-0.28136613965034485 +0.8000000715255737,24.14166259765625,18.46160316467285,19.589635848999023,1.6816405057907104,1.7357144355773926,-0.11945614963769913 +0.8000000715255737,24.14166259765625,18.415245056152344,19.499643325805664,1.687367558479309,1.6321455240249634,-0.04544014856219292 +0.8000000715255737,24.277889251708984,18.415245056152344,19.544639587402344,1.7102755308151245,1.6812044382095337,-0.008432149887084961 +0.8000000715255737,24.55034065246582,18.415245056152344,19.45464515686035,1.7102755308151245,1.7139105796813965,-0.06394414603710175 +0.8000000715255737,24.34600257873535,18.507963180541992,19.31965446472168,1.5041035413742065,1.659400463104248,-0.3183741569519043 +0.8000000715255737,24.482229232788086,18.507963180541992,19.679630279541016,1.6129164695739746,1.6157925128936768,-0.09170015156269073 +0.8000000715255737,24.55034065246582,18.368886947631836,19.544639587402344,1.6988215446472168,1.6921066045761108,-0.06857015192508698 +0.8000000715255737,24.14166259765625,18.276168823242188,19.409648895263672,1.630097508430481,1.6703025102615356,-0.19809813797473907 +0.8000000715255737,24.55034065246582,18.415245056152344,19.544639587402344,1.6988215446472168,1.6703025102615356,-0.06857015192508698 +0.8000000715255737,24.277889251708984,18.60068130493164,19.589635848999023,1.5728274583816528,1.653949499130249,-0.15183815360069275 +0.8000000715255737,24.34600257873535,18.46160316467285,19.45464515686035,1.5900084972381592,1.6866555213928223,-0.26748815178871155 +0.8000000715255737,23.801097869873047,18.415245056152344,19.45464515686035,1.6243705749511719,1.7030085325241089,-0.06857015192508698 +0.8000000715255737,23.93732452392578,18.322526931762695,19.409648895263672,1.6759135723114014,1.6703025102615356,-0.09170015156269073 +0.8000000715255737,23.93732452392578,18.415245056152344,19.589635848999023,1.6701865196228027,1.6321455240249634,-0.08244814723730087 +0.8000000715255737,23.93732452392578,18.415245056152344,19.544639587402344,1.7045485973358154,1.659400463104248,-0.04544014856219292 +0.8000000715255737,24.209775924682617,18.46160316467285,19.409648895263672,1.5270116329193115,1.637596607208252,-0.26748815178871155 +0.8000000715255737,24.209775924682617,18.507963180541992,19.589635848999023,1.6415514945983887,1.7139105796813965,-0.08244814723730087 +0.8000000715255737,24.41411590576172,18.554323196411133,19.589635848999023,1.6930946111679077,1.7411655187606812,-0.03618814796209335 +0.8000000715255737,24.482229232788086,18.46160316467285,19.45464515686035,1.7618186473846436,1.7411655187606812,-0.05006615072488785 +0.8000000715255737,24.14166259765625,18.46160316467285,19.45464515686035,1.5728274583816528,1.6757535934448242,-0.03618814796209335 +0.8000000715255737,24.55034065246582,18.554323196411133,19.409648895263672,1.6415514945983887,1.6757535934448242,-0.02693614922463894 +0.8000000715255737,24.34600257873535,18.368886947631836,19.544639587402344,1.555646538734436,1.7193615436553955,-0.25361016392707825 +0.8000000715255737,24.14166259765625,18.46160316467285,19.409648895263672,1.6243705749511719,1.6866555213928223,-0.11020414531230927 +0.8000000715255737,24.34600257873535,18.60068130493164,19.769624710083008,1.6415514945983887,1.6103415489196777,-0.06857015192508698 +0.8000000715255737,24.14166259765625,18.415245056152344,19.724626541137695,1.6988215446472168,1.5449296236038208,-0.04544014856219292 +0.8000000715255737,24.277889251708984,18.507963180541992,19.544639587402344,1.4926495552062988,1.6703025102615356,-0.02693614922463894 +0.8000000715255737,24.00543785095215,18.64703941345215,19.544639587402344,1.4754685163497925,1.6812044382095337,-0.23973214626312256 +0.8000000715255737,24.14166259765625,18.415245056152344,19.409648895263672,1.6186435222625732,1.730263590812683,-0.14258615672588348 +0.8000000715255737,24.209775924682617,18.368886947631836,19.45464515686035,1.7732726335525513,1.5830864906311035,-0.08244814723730087 +0.8000000715255737,23.869211196899414,18.415245056152344,19.679630279541016,1.6071895360946655,1.7193615436553955,-0.07782214879989624 +0.8000000715255737,24.34600257873535,18.507963180541992,19.499643325805664,1.521284580230713,1.6703025102615356,0.028575848788022995 +0.8000000715255737,24.41411590576172,18.415245056152344,19.409648895263672,1.6415514945983887,1.801126480102539,0.06558384746313095 +0.8000000715255737,24.277889251708984,18.276168823242188,19.45464515686035,1.4697415828704834,1.6703025102615356,-0.28136613965034485 +0.8000000715255737,24.277889251708984,18.368886947631836,19.409648895263672,1.7045485973358154,1.6757535934448242,-0.12408214807510376 +0.8000000715255737,24.34600257873535,18.229808807373047,19.409648895263672,1.6472785472869873,1.5721845626831055,-0.1009521484375 +0.8000000715255737,24.34600257873535,18.368886947631836,19.45464515686035,1.658732533454895,1.6866555213928223,-0.05931815132498741 +0.8000000715255737,24.34600257873535,18.60068130493164,19.45464515686035,1.6472785472869873,1.6321455240249634,0.014697848819196224 +0.8000000715255737,24.209775924682617,18.368886947631836,19.45464515686035,1.6358245611190796,1.730263590812683,-0.2166021466255188 +0.8000000715255737,24.55034065246582,18.46160316467285,19.499643325805664,1.7217295169830322,1.6321455240249634,-0.21197615563869476 +0.8000000715255737,24.14166259765625,18.368886947631836,19.679630279541016,1.7331836223602295,1.6703025102615356,-0.08244814723730087 +0.8000000715255737,24.073549270629883,18.507963180541992,19.544639587402344,1.5900084972381592,1.6703025102615356,-0.06394414603710175 +0.8000000715255737,24.14166259765625,18.554323196411133,19.544639587402344,1.6701865196228027,1.6757535934448242,-0.0038061500526964664 +0.8000000715255737,24.00543785095215,18.368886947631836,19.45464515686035,1.687367558479309,1.6103415489196777,-0.04544014856219292 +0.8000000715255737,24.34600257873535,18.276168823242188,19.184661865234375,1.4640145301818848,1.6157925128936768,-0.3461301624774933 +0.8000000715255737,24.14166259765625,18.276168823242188,19.45464515686035,1.7331836223602295,1.6157925128936768,-0.07782214879989624 +0.8000000715255737,24.277889251708984,18.507963180541992,19.544639587402344,1.7217295169830322,1.64849853515625,-0.02693614922463894 +0.8000000715255737,24.34600257873535,18.507963180541992,19.589635848999023,1.601462483406067,1.6921066045761108,-0.008432149887084961 +0.8000000715255737,24.277889251708984,18.554323196411133,19.36465072631836,1.7503645420074463,1.7411655187606812,-0.05469214916229248 +0.8000000715255737,24.55034065246582,18.368886947631836,19.31965446472168,1.630097508430481,1.7629694938659668,-0.2582361400127411 +0.8000000715255737,24.482229232788086,18.415245056152344,19.45464515686035,1.6644595861434937,1.7193615436553955,-0.26748815178871155 +0.8000000715255737,24.618453979492188,18.46160316467285,19.589635848999023,1.5728274583816528,1.7248125076293945,-0.1148301437497139 +0.8000000715255737,24.34600257873535,18.507963180541992,19.45464515686035,1.6759135723114014,1.7030085325241089,-0.04544014856219292 +0.8000000715255737,24.209775924682617,18.368886947631836,19.45464515686035,1.630097508430481,1.6757535934448242,0.010071849450469017 +0.8000000715255737,24.41411590576172,18.415245056152344,19.589635848999023,1.6930946111679077,1.7684205770492554,-0.03156214952468872 +0.8000000715255737,24.277889251708984,18.46160316467285,19.544639587402344,1.555646538734436,1.6703025102615356,-0.31374815106391907 +0.8000000715255737,24.277889251708984,18.368886947631836,19.589635848999023,1.7217295169830322,1.6757535934448242,-0.16571614146232605 +0.8000000715255737,24.00543785095215,18.507963180541992,19.634632110595703,1.7389105558395386,1.730263590812683,-0.09170015156269073 +0.8000000715255737,24.209775924682617,18.46160316467285,19.544639587402344,1.6071895360946655,1.708459496498108,-0.15183815360069275 +0.8000000715255737,24.14166259765625,18.46160316467285,19.499643325805664,1.6759135723114014,1.5449296236038208,-0.040814146399497986 +0.8000000715255737,24.209775924682617,18.368886947631836,19.499643325805664,1.555646538734436,1.6212434768676758,-0.16109015047550201 +0.8000000715255737,24.41411590576172,18.64703941345215,19.679630279541016,1.521284580230713,1.6048904657363892,-0.21197615563869476 +0.8000000715255737,24.209775924682617,18.46160316467285,19.769624710083008,1.6988215446472168,1.6757535934448242,-0.08244814723730087 +0.8000000715255737,24.34600257873535,18.46160316467285,19.544639587402344,1.6071895360946655,1.708459496498108,-0.013058149255812168 +0.8000000715255737,24.34600257873535,18.229808807373047,19.409648895263672,1.601462483406067,1.7193615436553955,-0.06857015192508698 +0.8000000715255737,24.00543785095215,18.229808807373047,19.499643325805664,1.7331836223602295,1.659400463104248,-0.07782214879989624 +0.8000000715255737,24.41411590576172,18.276168823242188,19.544639587402344,1.5671006441116333,1.6430474519729614,-0.3183741569519043 +0.8000000715255737,24.277889251708984,18.368886947631836,19.544639587402344,1.5785545110702515,1.6321455240249634,-0.1009521484375 +0.8000000715255737,24.073549270629883,18.415245056152344,19.679630279541016,1.7331836223602295,1.6648515462875366,0.010071849450469017 +0.8000000715255737,24.073549270629883,18.415245056152344,19.45464515686035,1.630097508430481,1.7030085325241089,-0.08244814723730087 +0.8000000715255737,24.073549270629883,18.554323196411133,19.634632110595703,1.6243705749511719,1.6866555213928223,-0.008432149887084961 +0.8000000715255737,24.277889251708984,18.368886947631836,19.45464515686035,1.521284580230713,1.6648515462875366,-0.07782214879989624 +0.8000000715255737,24.00543785095215,18.415245056152344,19.544639587402344,1.5041035413742065,1.7030085325241089,-0.28136613965034485 +0.8000000715255737,23.869211196899414,18.64703941345215,19.634632110595703,1.6186435222625732,1.64849853515625,-0.22122815251350403 +0.8000000715255737,24.277889251708984,18.276168823242188,19.409648895263672,1.630097508430481,1.6212434768676758,-0.11020414531230927 +0.8000000715255737,24.073549270629883,18.276168823242188,19.499643325805664,1.6415514945983887,1.5776355266571045,-0.06394414603710175 +0.8000000715255737,24.277889251708984,18.64703941345215,19.544639587402344,1.6701865196228027,1.6266944408416748,-0.03618814796209335 +0.8000000715255737,24.34600257873535,18.554323196411133,19.184661865234375,1.521284580230713,1.7193615436553955,-0.3322521448135376 +0.8000000715255737,24.482229232788086,18.60068130493164,19.634632110595703,1.6530054807662964,1.7738714218139648,-0.02693614922463894 +0.8000000715255737,24.34600257873535,18.415245056152344,19.499643325805664,1.6644595861434937,1.7193615436553955,-0.1287081390619278 +0.8000000715255737,24.209775924682617,18.276168823242188,19.409648895263672,1.6243705749511719,1.5830864906311035,-0.13333414494991302 +0.8000000715255737,24.55034065246582,18.507963180541992,19.544639587402344,1.7389105558395386,1.6212434768676758,-0.07319615036249161 +0.8000000715255737,24.277889251708984,18.60068130493164,19.409648895263672,1.6129164695739746,1.6975574493408203,0.0008198499563150108 +0.8000000715255737,24.209775924682617,18.368886947631836,19.409648895263672,1.5671006441116333,1.7411655187606812,-0.20735014975070953 +0.8000000715255737,24.209775924682617,18.415245056152344,19.544639587402344,1.6701865196228027,1.6975574493408203,-0.08244814723730087 +0.8000000715255737,24.14166259765625,18.368886947631836,19.544639587402344,1.549919605255127,1.6812044382095337,-0.05931815132498741 +0.8000000715255737,24.277889251708984,18.415245056152344,19.589635848999023,1.6759135723114014,1.5885374546051025,-0.04544014856219292 +0.8000000715255737,24.073549270629883,18.415245056152344,19.409648895263672,1.6071895360946655,1.6430474519729614,-0.040814146399497986 +0.8000000715255737,24.41411590576172,18.554323196411133,19.36465072631836,1.5842814445495605,1.7139105796813965,-0.18422015011310577 +0.8000000715255737,24.277889251708984,18.46160316467285,19.409648895263672,1.6243705749511719,1.64849853515625,-0.3646341562271118 +0.8000000715255737,24.14166259765625,18.415245056152344,19.769624710083008,1.756091594696045,1.6757535934448242,-0.11945614963769913 +0.9000000953674316,24.209775924682617,18.507963180541992,19.544639587402344,1.6358245611190796,1.659400463104248,-0.05931815132498741 +0.9000000953674316,24.073549270629883,21.15042495727539,21.254526138305664,2.9816696643829346,1.1797125339508057,1.4163758754730225 +0.9000000953674316,24.34600257873535,21.567655563354492,21.614501953125,2.7869515419006348,3.3873677253723145,-0.18422015011310577 +0.9000000953674316,24.686567306518555,20.037811279296875,21.344518661499023,0.7366855144500732,-0.024958552792668343,-0.05006615072488785 +0.9000000953674316,23.93732452392578,19.71329689025879,21.479509353637695,2.7812247276306152,2.749600648880005,0.13497385382652283 +0.9000000953674316,24.209775924682617,21.289501190185547,21.524507522583008,1.8763585090637207,2.5697176456451416,-0.13333414494991302 +0.9000000953674316,23.52864646911621,19.342426300048828,21.164531707763672,1.8305425643920898,1.506772518157959,-0.05006615072488785 +0.9000000953674316,24.00543785095215,20.594118118286133,21.389514923095703,2.8671295642852783,3.207484722137451,0.10721784830093384 +0.9000000953674316,24.41411590576172,19.62057876586914,21.344518661499023,0.6622344851493835,-0.06311555206775665,-0.1009521484375 +0.9000000953674316,23.869211196899414,19.527860641479492,21.20952796936035,2.6895925998687744,2.9894444942474365,-0.1009521484375 +0.9000000953674316,26.525617599487305,21.382221221923828,21.479509353637695,2.1283466815948486,2.787757635116577,0.10721784830093384 +0.9000000953674316,23.664871215820312,19.296066284179688,21.344518661499023,1.9221745729446411,1.8120285272598267,-0.14721214771270752 +0.9000000953674316,24.209775924682617,20.77955436706543,21.344518661499023,2.609414577484131,2.8695225715637207,-0.1009521484375 +0.9000000953674316,24.00543785095215,19.249706268310547,21.389514923095703,1.5671006441116333,0.9889274835586548,0.22286784648895264 +0.9000000953674316,24.209775924682617,20.872270584106445,21.344518661499023,2.6265957355499268,3.1366214752197266,-0.17959414422512054 +0.9000000953674316,24.482229232788086,19.806015014648438,21.344518661499023,1.0516705513000488,0.04590445011854172,-0.1009521484375 +0.9000000953674316,24.073549270629883,19.991451263427734,21.254526138305664,2.6265957355499268,3.060307502746582,0.028575848788022995 +0.9000000953674316,25.435810089111328,20.362321853637695,21.344518661499023,0.7939555048942566,-0.08491955697536469,-0.1009521484375 +0.9000000953674316,24.00543785095215,19.342426300048828,21.20952796936035,2.471966505050659,2.5424625873565674,-0.05469214916229248 +0.9000000953674316,24.00543785095215,21.335861206054688,21.704496383666992,2.6552305221557617,2.8368165493011475,-0.03618814796209335 +0.9000000953674316,23.869211196899414,19.249706268310547,21.524507522583008,1.9508095979690552,1.6266944408416748,-0.11945614963769913 +0.9000000953674316,24.073549270629883,20.964990615844727,21.344518661499023,2.6323225498199463,2.9458367824554443,-0.2304801493883133 +0.9000000953674316,23.869211196899414,19.342426300048828,21.254526138305664,1.343747615814209,0.6618674993515015,-0.022310150787234306 +0.9000000953674316,23.93732452392578,20.64047622680664,21.479509353637695,2.6552305221557617,3.1475236415863037,-0.1287081390619278 +0.9000000953674316,24.277889251708984,19.898733139038086,21.344518661499023,0.8454985618591309,-0.10672355443239212,-0.022310150787234306 +0.9000000953674316,24.00543785095215,19.852373123168945,21.20952796936035,2.5406906604766846,2.913130521774292,-0.13333414494991302 +0.9000000953674316,25.8444881439209,20.26960563659668,21.434513092041016,0.7195045351982117,-0.024958552792668343,-0.17034214735031128 +0.9000000953674316,24.00543785095215,19.435142517089844,21.254526138305664,2.5006015300750732,2.8259146213531494,-0.15183815360069275 +0.9000000953674316,25.980712890625,21.474939346313477,21.344518661499023,1.0230355262756348,2.6787376403808594,-0.19347214698791504 +0.9000000953674316,23.869211196899414,19.527860641479492,21.479509353637695,2.4204235076904297,2.3189713954925537,-0.20735014975070953 +0.9000000953674316,24.209775924682617,20.964990615844727,21.434513092041016,2.6151416301727295,2.891326665878296,-0.15183815360069275 +0.9000000953674316,23.596757888793945,19.20334815979004,21.20952796936035,1.5384656190872192,1.2015165090560913,-0.07782214879989624 +0.9000000953674316,24.209775924682617,20.964990615844727,21.479509353637695,2.958761692047119,3.1202685832977295,-0.2443581372499466 +0.9000000953674316,23.93732452392578,19.20334815979004,21.20952796936035,1.555646538734436,1.0325355529785156,-0.040814146399497986 +0.9000000953674316,24.00543785095215,20.594118118286133,21.344518661499023,2.6781387329101562,3.1257195472717285,-0.15183815360069275 +0.9000000953674316,24.00543785095215,19.527860641479492,21.434513092041016,0.9027684926986694,-0.07401755452156067,-0.14258615672588348 +0.9000000953674316,23.801097869873047,19.991451263427734,21.344518661499023,2.7182276248931885,3.0221505165100098,-0.14721214771270752 +0.9000000953674316,24.55034065246582,20.22324562072754,21.479509353637695,0.7366855144500732,-0.008605552837252617,-0.11020414531230927 +0.9000000953674316,23.869211196899414,19.945091247558594,21.65949821472168,2.6724116802215576,2.77685546875,0.010071849450469017 +0.9000000953674316,25.708261489868164,21.614015579223633,21.479509353637695,0.7882285118103027,0.0350024476647377,-0.1287081390619278 +0.9000000953674316,24.209775924682617,19.71329689025879,20.984542846679688,2.3058836460113525,2.3789327144622803,-0.1888461410999298 +0.9000000953674316,24.14166259765625,21.243144989013672,21.434513092041016,2.1283466815948486,2.6841883659362793,0.08871385455131531 +0.9000000953674316,24.00543785095215,19.296066284179688,21.344518661499023,2.1455276012420654,2.0082645416259766,-0.1287081390619278 +0.9000000953674316,24.277889251708984,21.15042495727539,21.569503784179688,2.5406906604766846,2.92403244972229,-0.23973214626312256 +0.9000000953674316,24.073549270629883,19.388782501220703,21.479509353637695,2.179889678955078,1.8229305744171143,0.22286784648895264 +0.9000000953674316,24.209775924682617,20.872270584106445,21.569503784179688,2.666684627532959,2.902228593826294,-0.2027241587638855 +0.9000000953674316,23.869211196899414,19.249706268310547,21.344518661499023,1.4010175466537476,0.8035935163497925,-0.15183815360069275 +0.9000000953674316,24.00543785095215,20.68683624267578,21.254526138305664,2.7754976749420166,3.185680627822876,0.028575848788022995 +0.9000000953674316,24.00543785095215,19.71329689025879,21.389514923095703,1.2864775657653809,0.2911994755268097,-0.05931815132498741 +0.9000000953674316,23.801097869873047,20.455041885375977,21.254526138305664,2.752589702606201,3.060307502746582,-0.16571614146232605 +0.8000000715255737,24.41411590576172,19.62057876586914,21.389514923095703,0.7137775421142578,0.013198448345065117,0.07946184277534485 +0.8000000715255737,24.14166259765625,18.415245056152344,20.174596786499023,1.3838365077972412,1.8447345495224,-0.2767401337623596 +0.8000000715255737,24.41411590576172,18.60068130493164,19.45464515686035,1.6358245611190796,1.7575185298919678,-0.12408214807510376 +0.8000000715255737,24.073549270629883,18.415245056152344,19.589635848999023,1.601462483406067,1.708459496498108,0.01932384818792343 +0.8000000715255737,24.14166259765625,18.507963180541992,19.409648895263672,1.4983766078948975,1.7139105796813965,-0.3230001628398895 +0.8000000715255737,24.482229232788086,18.368886947631836,19.634632110595703,1.630097508430481,1.6648515462875366,-0.14258615672588348 +0.8000000715255737,24.34600257873535,18.554323196411133,19.589635848999023,1.5900084972381592,1.6430474519729614,-0.1148301437497139 +0.8000000715255737,24.34600257873535,18.554323196411133,19.589635848999023,1.687367558479309,1.659400463104248,-0.05006615072488785 +0.8000000715255737,24.277889251708984,18.507963180541992,19.409648895263672,1.6071895360946655,1.659400463104248,-0.11020414531230927 +0.8000000715255737,24.41411590576172,18.276168823242188,19.45464515686035,1.6071895360946655,1.5885374546051025,-0.09170015156269073 +0.8000000715255737,24.34600257873535,18.507963180541992,19.544639587402344,1.521284580230713,1.6103415489196777,-0.24898414313793182 +0.8000000715255737,24.14166259765625,18.554323196411133,19.769624710083008,1.6644595861434937,1.730263590812683,-0.13796015083789825 +0.8000000715255737,24.754680633544922,18.60068130493164,19.45464515686035,1.5671006441116333,1.653949499130249,-0.008432149887084961 +0.8000000715255737,23.93732452392578,18.554323196411133,19.589635848999023,1.5728274583816528,1.6757535934448242,-0.06857015192508698 +0.8000000715255737,24.14166259765625,18.60068130493164,19.36465072631836,1.6988215446472168,1.6321455240249634,-0.08244814723730087 +0.8000000715255737,24.34600257873535,18.60068130493164,19.724626541137695,1.5041035413742065,1.6648515462875366,-0.15183815360069275 +0.8000000715255737,24.277889251708984,18.415245056152344,19.589635848999023,1.5098305940628052,1.6212434768676758,-0.14721214771270752 +0.8000000715255737,24.209775924682617,18.415245056152344,19.679630279541016,1.6644595861434937,1.6866555213928223,-0.02693614922463894 +0.8000000715255737,23.869211196899414,18.46160316467285,19.589635848999023,1.658732533454895,1.7193615436553955,-0.07319615036249161 +0.8000000715255737,24.14166259765625,18.46160316467285,19.499643325805664,1.6358245611190796,1.6866555213928223,-0.09632615000009537 +0.8000000715255737,24.34600257873535,18.368886947631836,19.589635848999023,1.6415514945983887,1.6266944408416748,-0.040814146399497986 +0.8000000715255737,24.277889251708984,18.415245056152344,19.499643325805664,1.5671006441116333,1.6757535934448242,-0.2166021466255188 +0.8000000715255737,24.34600257873535,18.415245056152344,19.589635848999023,1.5327385663986206,1.653949499130249,-0.05006615072488785 +0.8000000715255737,24.209775924682617,18.554323196411133,19.589635848999023,1.6644595861434937,1.7030085325241089,-0.11945614963769913 +0.8000000715255737,24.41411590576172,18.276168823242188,19.679630279541016,1.6243705749511719,1.5885374546051025,-0.08244814723730087 +0.8000000715255737,24.34600257873535,18.60068130493164,19.499643325805664,1.687367558479309,1.5612825155258179,-0.040814146399497986 +0.8000000715255737,24.14166259765625,18.60068130493164,19.45464515686035,1.6358245611190796,1.7357144355773926,-0.05931815132498741 +0.8000000715255737,24.482229232788086,18.507963180541992,19.634632110595703,1.4983766078948975,1.5721845626831055,-0.2767401337623596 +0.8000000715255737,24.14166259765625,18.368886947631836,19.589635848999023,1.6186435222625732,1.64849853515625,-0.09632615000009537 +0.8000000715255737,23.93732452392578,18.46160316467285,19.499643325805664,1.6759135723114014,1.6048904657363892,-0.14721214771270752 +0.8000000715255737,24.277889251708984,18.276168823242188,19.499643325805664,1.6129164695739746,1.5612825155258179,-0.15183815360069275 +0.8000000715255737,24.277889251708984,18.554323196411133,19.45464515686035,1.6644595861434937,1.5994395017623901,-0.040814146399497986 +0.8000000715255737,24.277889251708984,18.507963180541992,19.544639587402344,1.6129164695739746,1.8610875606536865,-0.017684150487184525 +0.8000000715255737,23.869211196899414,18.60068130493164,19.45464515686035,1.5270116329193115,1.7575185298919678,-0.2582361400127411 +0.8000000715255737,24.277889251708984,18.368886947631836,19.45464515686035,1.6530054807662964,1.7466164827346802,-0.11945614963769913 +0.8000000715255737,24.277889251708984,18.368886947631836,19.45464515686035,1.6358245611190796,1.7139105796813965,-0.17959414422512054 +0.8000000715255737,24.209775924682617,18.46160316467285,19.45464515686035,1.5957355499267578,1.7357144355773926,-0.1287081390619278 +0.8000000715255737,24.14166259765625,18.368886947631836,19.634632110595703,1.5671006441116333,1.6921066045761108,0.06558384746313095 +0.8000000715255737,24.34600257873535,18.507963180541992,19.31965446472168,1.6071895360946655,1.7193615436553955,-0.12408214807510376 +0.8000000715255737,24.34600257873535,18.46160316467285,19.679630279541016,1.7102755308151245,1.6648515462875366,-0.3183741569519043 +0.8000000715255737,24.209775924682617,18.368886947631836,19.724626541137695,1.6988215446472168,1.7193615436553955,-0.05006615072488785 +0.8000000715255737,24.00543785095215,18.554323196411133,19.499643325805664,1.687367558479309,1.5721845626831055,-0.07319615036249161 +0.8000000715255737,24.482229232788086,18.415245056152344,19.544639587402344,1.6071895360946655,1.7139105796813965,-0.022310150787234306 +0.8000000715255737,24.209775924682617,18.554323196411133,19.45464515686035,1.7102755308151245,1.6921066045761108,-0.08244814723730087 +0.8000000715255737,24.073549270629883,18.507963180541992,19.409648895263672,1.5384656190872192,1.659400463104248,-0.3600081503391266 +0.8000000715255737,24.34600257873535,18.46160316467285,19.769624710083008,1.6186435222625732,1.566733479499817,-0.1009521484375 +0.8000000715255737,24.41411590576172,18.415245056152344,19.589635848999023,1.7160025835037231,1.6157925128936768,-0.1009521484375 +0.8000000715255737,24.41411590576172,18.60068130493164,19.634632110595703,1.7102755308151245,1.7193615436553955,-0.07319615036249161 +0.8000000715255737,23.801097869873047,18.507963180541992,19.409648895263672,1.6186435222625732,1.708459496498108,-0.04544014856219292 +0.8000000715255737,24.073549270629883,18.368886947631836,19.274656295776367,1.6759135723114014,1.7193615436553955,-0.02693614922463894 +0.8000000715255737,24.34600257873535,18.507963180541992,19.45464515686035,1.5155575275421143,1.6103415489196777,-0.2443581372499466 +0.8000000715255737,24.073549270629883,18.368886947631836,19.544639587402344,1.7331836223602295,1.6703025102615356,-0.1009521484375 +0.8000000715255737,24.41411590576172,18.64703941345215,19.634632110595703,1.6186435222625732,1.5830864906311035,-0.06394414603710175 +0.8000000715255737,24.209775924682617,18.507963180541992,19.634632110595703,1.7389105558395386,1.6321455240249634,-0.06394414603710175 +0.8000000715255737,24.34600257873535,18.415245056152344,19.634632110595703,1.6816405057907104,1.708459496498108,-0.08244814723730087 +0.8000000715255737,24.41411590576172,18.64703941345215,19.45464515686035,1.7217295169830322,1.708459496498108,-0.10557814687490463 +0.8000000715255737,24.073549270629883,18.507963180541992,19.45464515686035,1.5041035413742065,1.6703025102615356,-0.34150415658950806 +0.8000000715255737,24.41411590576172,18.507963180541992,19.589635848999023,1.601462483406067,1.6703025102615356,-0.1009521484375 +0.8000000715255737,24.14166259765625,18.46160316467285,19.499643325805664,1.5957355499267578,1.6757535934448242,-0.09632615000009537 +0.8000000715255737,24.14166259765625,18.415245056152344,19.409648895263672,1.7160025835037231,1.5612825155258179,-0.11945614963769913 +0.8000000715255737,24.34600257873535,18.415245056152344,19.589635848999023,1.5671006441116333,1.6266944408416748,-0.1148301437497139 +0.8000000715255737,24.34600257873535,18.507963180541992,19.45464515686035,1.5728274583816528,1.64849853515625,-0.1287081390619278 +0.8000000715255737,24.34600257873535,18.507963180541992,19.499643325805664,1.5155575275421143,1.6430474519729614,-0.25361016392707825 +0.8000000715255737,23.869211196899414,18.60068130493164,19.499643325805664,1.6930946111679077,1.7357144355773926,-0.05931815132498741 +0.8000000715255737,23.801097869873047,18.507963180541992,19.544639587402344,1.658732533454895,1.659400463104248,-0.1009521484375 +0.8000000715255737,24.14166259765625,18.507963180541992,19.499643325805664,1.6930946111679077,1.6212434768676758,-0.14721214771270752 +0.8000000715255737,24.277889251708984,18.46160316467285,19.634632110595703,1.5842814445495605,1.653949499130249,-0.04544014856219292 +0.8000000715255737,24.41411590576172,18.368886947631836,19.31965446472168,1.5327385663986206,1.7193615436553955,-0.14258615672588348 +0.8000000715255737,24.34600257873535,18.554323196411133,19.544639587402344,1.6701865196228027,1.7411655187606812,-0.2998701333999634 +0.8000000715255737,24.41411590576172,18.60068130493164,19.634632110595703,1.7675455808639526,1.6757535934448242,-0.05006615072488785 +0.8000000715255737,24.34600257873535,18.415245056152344,19.45464515686035,1.6243705749511719,1.7139105796813965,-0.08244814723730087 +0.8000000715255737,24.14166259765625,18.507963180541992,19.544639587402344,1.6243705749511719,1.653949499130249,-0.09632615000009537 +0.8000000715255737,24.41411590576172,18.368886947631836,19.409648895263672,1.6759135723114014,1.7139105796813965,-0.07319615036249161 +0.8000000715255737,24.209775924682617,18.415245056152344,19.36465072631836,1.5728274583816528,1.7629694938659668,-0.17959414422512054 +0.8000000715255737,24.073549270629883,18.368886947631836,19.409648895263672,1.7389105558395386,1.5885374546051025,-0.25361016392707825 +0.8000000715255737,24.14166259765625,18.368886947631836,19.679630279541016,1.784726619720459,1.5885374546051025,-0.15183815360069275 +0.8000000715255737,24.073549270629883,18.368886947631836,19.544639587402344,1.6472785472869873,1.659400463104248,-0.06394414603710175 +0.8000000715255737,24.34600257873535,18.415245056152344,19.634632110595703,1.5728274583816528,1.7357144355773926,0.00544585008174181 +0.8000000715255737,24.073549270629883,18.554323196411133,19.679630279541016,1.6930946111679077,1.659400463104248,-0.05006615072488785 +0.8000000715255737,24.073549270629883,18.415245056152344,19.36465072631836,1.4582875967025757,1.7357144355773926,-0.35538214445114136 +0.8000000715255737,24.073549270629883,18.507963180541992,19.36465072631836,1.7789995670318604,1.6103415489196777,-0.1287081390619278 +0.8000000715255737,24.34600257873535,18.276168823242188,19.724626541137695,1.630097508430481,1.7193615436553955,-0.0870741531252861 +0.8000000715255737,24.277889251708984,18.368886947631836,19.724626541137695,1.6129164695739746,1.6757535934448242,-0.022310150787234306 +0.8000000715255737,24.34600257873535,18.60068130493164,19.589635848999023,1.7045485973358154,1.7139105796813965,-0.022310150787234306 +0.8000000715255737,24.34600257873535,18.507963180541992,19.499643325805664,1.8248155117034912,1.6648515462875366,0.00544585008174181 +0.8000000715255737,24.482229232788086,18.46160316467285,19.45464515686035,1.6186435222625732,1.7248125076293945,-0.3368781507015228 +0.8000000715255737,24.14166259765625,18.64703941345215,19.544639587402344,1.5613735914230347,1.6703025102615356,-0.1148301437497139 +0.8000000715255737,24.482229232788086,18.415245056152344,19.544639587402344,1.5842814445495605,1.6321455240249634,-0.14258615672588348 +0.8000000715255737,24.209775924682617,18.46160316467285,19.679630279541016,1.6644595861434937,1.653949499130249,-0.06857015192508698 +0.8000000715255737,24.209775924682617,18.507963180541992,19.409648895263672,1.6644595861434937,1.7411655187606812,-0.12408214807510376 +0.8000000715255737,24.14166259765625,18.46160316467285,19.544639587402344,1.658732533454895,1.6048904657363892,-0.09170015156269073 +0.8000000715255737,24.277889251708984,18.507963180541992,19.544639587402344,1.6415514945983887,1.5830864906311035,-0.28136613965034485 +0.8000000715255737,24.277889251708984,18.368886947631836,19.679630279541016,1.630097508430481,1.6703025102615356,-0.05931815132498741 +0.8000000715255737,23.869211196899414,18.507963180541992,19.589635848999023,1.549919605255127,1.7357144355773926,-0.06857015192508698 +0.8000000715255737,24.209775924682617,18.368886947631836,19.409648895263672,1.6243705749511719,1.7139105796813965,-0.08244814723730087 +0.8000000715255737,24.277889251708984,18.415245056152344,19.409648895263672,1.7045485973358154,1.653949499130249,-0.040814146399497986 +0.8000000715255737,24.34600257873535,18.46160316467285,19.679630279541016,1.6816405057907104,1.653949499130249,-0.040814146399497986 +0.8000000715255737,24.209775924682617,18.46160316467285,19.31965446472168,1.4811955690383911,1.708459496498108,-0.22122815251350403 +0.8000000715255737,24.277889251708984,18.507963180541992,19.544639587402344,1.7503645420074463,1.6866555213928223,-0.09170015156269073 +0.8000000715255737,24.34600257873535,18.46160316467285,19.499643325805664,1.7160025835037231,1.7466164827346802,-0.06394414603710175 +0.8000000715255737,24.41411590576172,18.415245056152344,19.589635848999023,1.6129164695739746,1.6812044382095337,-0.06394414603710175 +0.8000000715255737,24.00543785095215,18.554323196411133,19.634632110595703,1.6243705749511719,1.5885374546051025,-0.1148301437497139 +0.8000000715255737,24.34600257873535,18.554323196411133,19.634632110595703,1.6129164695739746,1.64849853515625,-0.07319615036249161 +0.8000000715255737,24.14166259765625,18.46160316467285,19.409648895263672,1.5155575275421143,1.6266944408416748,-0.22122815251350403 +0.8000000715255737,23.869211196899414,18.368886947631836,19.769624710083008,1.7732726335525513,1.7193615436553955,-0.13333414494991302 +0.8000000715255737,24.14166259765625,18.507963180541992,19.679630279541016,1.6472785472869873,1.6866555213928223,-0.08244814723730087 +0.8000000715255737,24.34600257873535,18.554323196411133,19.589635848999023,1.6816405057907104,1.5558315515518188,-0.09632615000009537 +0.8000000715255737,24.41411590576172,18.554323196411133,19.409648895263672,1.6243705749511719,1.6648515462875366,-0.06394414603710175 +0.8000000715255737,24.00543785095215,18.60068130493164,19.409648895263672,1.6816405057907104,1.7139105796813965,-0.04544014856219292 +0.8000000715255737,24.209775924682617,18.368886947631836,19.274656295776367,1.521284580230713,1.7139105796813965,-0.3322521448135376 +0.8000000715255737,24.209775924682617,18.276168823242188,19.544639587402344,1.6129164695739746,1.6048904657363892,-0.12408214807510376 +0.8000000715255737,24.277889251708984,18.229808807373047,19.589635848999023,1.658732533454895,1.6266944408416748,-0.14721214771270752 +0.8000000715255737,24.34600257873535,18.64703941345215,19.589635848999023,1.756091594696045,1.5830864906311035,-0.03618814796209335 +0.8000000715255737,24.41411590576172,18.554323196411133,19.589635848999023,1.7102755308151245,1.79567551612854,-0.017684150487184525 +0.8000000715255737,24.34600257873535,18.554323196411133,19.45464515686035,1.630097508430481,1.6757535934448242,-0.017684150487184525 +0.8000000715255737,24.34600257873535,18.415245056152344,19.409648895263672,1.5900084972381592,1.7030085325241089,-0.2767401337623596 +0.8000000715255737,24.277889251708984,18.368886947631836,19.634632110595703,1.6472785472869873,1.6103415489196777,-0.06394414603710175 +0.8000000715255737,24.34600257873535,18.60068130493164,19.679630279541016,1.6129164695739746,1.6103415489196777,-0.11020414531230927 +0.8000000715255737,24.073549270629883,18.276168823242188,19.544639587402344,1.6358245611190796,1.5885374546051025,0.028575848788022995 +0.8000000715255737,24.209775924682617,18.554323196411133,19.589635848999023,1.6816405057907104,1.7248125076293945,-0.02693614922463894 +0.8000000715255737,24.277889251708984,18.554323196411133,19.409648895263672,1.6988215446472168,1.7193615436553955,-0.07782214879989624 +0.8000000715255737,24.14166259765625,18.368886947631836,19.45464515686035,1.4869225025177002,1.5994395017623901,-0.2628621459007263 +0.8000000715255737,24.55034065246582,18.554323196411133,19.679630279541016,1.7102755308151245,1.653949499130249,-0.13333414494991302 +0.8000000715255737,24.14166259765625,18.507963180541992,19.544639587402344,1.6644595861434937,1.7193615436553955,-0.1148301437497139 +0.8000000715255737,24.277889251708984,18.415245056152344,19.589635848999023,1.7102755308151245,1.6757535934448242,-0.11945614963769913 +0.8000000715255737,24.277889251708984,18.415245056152344,19.499643325805664,1.6186435222625732,1.6757535934448242,-0.09170015156269073 +0.8000000715255737,24.482229232788086,18.415245056152344,19.499643325805664,1.6701865196228027,1.5885374546051025,-0.05931815132498741 +0.8000000715255737,24.41411590576172,18.46160316467285,19.724626541137695,1.5041035413742065,1.5776355266571045,-0.304496169090271 +0.8000000715255737,24.277889251708984,18.415245056152344,19.45464515686035,1.6243705749511719,1.6866555213928223,-0.06394414603710175 +0.8000000715255737,24.14166259765625,18.46160316467285,19.409648895263672,1.6129164695739746,1.6757535934448242,-0.05006615072488785 +0.8000000715255737,24.073549270629883,18.276168823242188,19.45464515686035,1.658732533454895,1.7193615436553955,-0.11945614963769913 +0.8000000715255737,24.209775924682617,18.415245056152344,19.274656295776367,1.6701865196228027,1.6921066045761108,-0.008432149887084961 +0.8000000715255737,24.34600257873535,18.60068130493164,19.544639587402344,1.6071895360946655,1.6757535934448242,-0.0870741531252861 +0.8000000715255737,24.073549270629883,18.46160316467285,19.45464515686035,1.5842814445495605,1.6321455240249634,-0.2304801493883133 +0.8000000715255737,24.14166259765625,18.554323196411133,19.499643325805664,1.756091594696045,1.6975574493408203,-0.06857015192508698 +0.8000000715255737,24.14166259765625,18.554323196411133,19.769624710083008,1.7389105558395386,1.6757535934448242,-0.1009521484375 +0.8000000715255737,24.277889251708984,18.554323196411133,19.499643325805664,1.6472785472869873,1.659400463104248,-0.05469214916229248 +0.8000000715255737,24.55034065246582,18.46160316467285,19.45464515686035,1.6358245611190796,1.5830864906311035,-0.06857015192508698 +0.8000000715255737,24.14166259765625,18.415245056152344,19.409648895263672,1.6243705749511719,1.6921066045761108,-0.040814146399497986 +0.8000000715255737,24.277889251708984,18.554323196411133,19.45464515686035,1.555646538734436,1.730263590812683,-0.3322521448135376 +0.8000000715255737,24.41411590576172,18.415245056152344,19.45464515686035,1.6243705749511719,1.6703025102615356,-0.14721214771270752 +0.8000000715255737,24.482229232788086,18.415245056152344,19.634632110595703,1.6759135723114014,1.6103415489196777,-0.15646414458751678 +0.8000000715255737,24.277889251708984,18.554323196411133,19.634632110595703,1.6644595861434937,1.5612825155258179,-0.05931815132498741 +0.8000000715255737,24.073549270629883,18.693397521972656,19.45464515686035,1.6358245611190796,1.7030085325241089,0.014697848819196224 +0.8000000715255737,24.41411590576172,18.60068130493164,19.31965446472168,1.7045485973358154,1.7193615436553955,-0.008432149887084961 +0.8000000715255737,24.00543785095215,18.368886947631836,19.31965446472168,1.395290493965149,1.6321455240249634,-0.2859921455383301 +0.8000000715255737,23.869211196899414,18.368886947631836,19.544639587402344,1.7045485973358154,1.6157925128936768,-0.11945614963769913 +0.8000000715255737,24.277889251708984,18.46160316467285,19.634632110595703,1.6358245611190796,1.5885374546051025,-0.1148301437497139 +0.8000000715255737,24.209775924682617,18.415245056152344,19.634632110595703,1.6472785472869873,1.5885374546051025,-0.040814146399497986 +0.8000000715255737,24.277889251708984,18.554323196411133,19.31965446472168,1.8019075393676758,1.6757535934448242,-0.013058149255812168 +0.8000000715255737,24.34600257873535,18.415245056152344,19.45464515686035,1.6472785472869873,1.6921066045761108,0.028575848788022995 +0.8000000715255737,24.277889251708984,18.46160316467285,19.544639587402344,1.4926495552062988,1.7575185298919678,-0.32762616872787476 +0.8000000715255737,24.34600257873535,18.554323196411133,19.634632110595703,1.7732726335525513,1.6321455240249634,-0.08244814723730087 +0.8000000715255737,24.209775924682617,18.507963180541992,19.679630279541016,1.7045485973358154,1.6648515462875366,-0.09632615000009537 +0.8000000715255737,24.277889251708984,18.507963180541992,19.45464515686035,1.555646538734436,1.6757535934448242,-0.09632615000009537 +0.8000000715255737,24.277889251708984,18.46160316467285,19.499643325805664,1.7045485973358154,1.6103415489196777,-0.16571614146232605 +0.8000000715255737,24.55034065246582,18.507963180541992,19.499643325805664,1.6186435222625732,1.6157925128936768,-0.05469214916229248 +0.8000000715255737,24.34600257873535,18.415245056152344,19.634632110595703,1.6129164695739746,1.659400463104248,-0.2443581372499466 +0.8000000715255737,24.14166259765625,18.507963180541992,19.589635848999023,1.5441925525665283,1.6866555213928223,-0.15183815360069275 +0.8000000715255737,24.55034065246582,18.60068130493164,19.45464515686035,1.630097508430481,1.6703025102615356,-0.03156214952468872 +0.8000000715255737,24.00543785095215,18.322526931762695,19.544639587402344,1.7102755308151245,1.64849853515625,-0.0870741531252861 +0.8000000715255737,24.14166259765625,18.368886947631836,19.36465072631836,1.6644595861434937,1.653949499130249,-0.15183815360069275 +0.8000000715255737,24.34600257873535,18.507963180541992,19.45464515686035,1.6358245611190796,1.7357144355773926,-0.07319615036249161 +0.8000000715255737,24.34600257873535,18.276168823242188,19.634632110595703,1.5957355499267578,1.6866555213928223,-0.22585414350032806 +0.8000000715255737,24.277889251708984,18.507963180541992,19.499643325805664,1.7446376085281372,1.7902244329452515,-0.07319615036249161 +0.8000000715255737,23.869211196899414,18.507963180541992,19.679630279541016,1.6415514945983887,1.6921066045761108,-0.022310150787234306 +0.8000000715255737,24.277889251708984,18.46160316467285,19.634632110595703,1.7446376085281372,1.6921066045761108,-0.040814146399497986 +0.8000000715255737,24.482229232788086,18.415245056152344,19.589635848999023,1.7102755308151245,1.64849853515625,-0.03156214952468872 +0.8000000715255737,24.14166259765625,18.368886947631836,19.45464515686035,1.601462483406067,1.659400463104248,-0.05469214916229248 +0.8000000715255737,24.277889251708984,18.554323196411133,19.409648895263672,1.521284580230713,1.730263590812683,-0.2859921455383301 +0.8000000715255737,24.34600257873535,18.46160316467285,19.45464515686035,1.6186435222625732,1.6430474519729614,-0.09632615000009537 +0.8000000715255737,24.482229232788086,18.46160316467285,19.589635848999023,1.7217295169830322,1.6866555213928223,-0.14258615672588348 +0.8000000715255737,24.41411590576172,18.60068130493164,19.679630279541016,1.6415514945983887,1.5994395017623901,-0.08244814723730087 +0.8000000715255737,24.073549270629883,18.64703941345215,19.45464515686035,1.6186435222625732,1.6703025102615356,-0.1009521484375 +0.8000000715255737,24.618453979492188,18.507963180541992,19.45464515686035,1.630097508430481,1.7575185298919678,-0.07319615036249161 +0.8000000715255737,23.93732452392578,18.46160316467285,19.45464515686035,1.521284580230713,1.7193615436553955,-0.3461301624774933 +0.8000000715255737,24.14166259765625,18.322526931762695,19.45464515686035,1.5728274583816528,1.6975574493408203,-0.15646414458751678 +0.8000000715255737,24.209775924682617,18.368886947631836,19.634632110595703,1.6358245611190796,1.7139105796813965,-0.1148301437497139 +0.8000000715255737,24.073549270629883,18.368886947631836,19.589635848999023,1.6071895360946655,1.6321455240249634,-0.04544014856219292 +0.8000000715255737,24.277889251708984,18.46160316467285,19.544639587402344,1.7675455808639526,1.6866555213928223,0.0008198499563150108 +0.8000000715255737,24.00543785095215,18.64703941345215,19.409648895263672,1.6644595861434937,1.7575185298919678,0.023949850350618362 +0.8000000715255737,24.14166259765625,18.46160316467285,19.36465072631836,1.5957355499267578,1.79567551612854,-0.31374815106391907 +0.8000000715255737,24.482229232788086,18.415245056152344,19.544639587402344,1.6358245611190796,1.5885374546051025,-0.1148301437497139 +0.8000000715255737,24.14166259765625,18.60068130493164,19.769624710083008,1.7045485973358154,1.6975574493408203,-0.11020414531230927 +0.8000000715255737,24.55034065246582,18.507963180541992,19.589635848999023,1.687367558479309,1.6648515462875366,-0.017684150487184525 +0.8000000715255737,24.277889251708984,18.415245056152344,19.45464515686035,1.7389105558395386,1.6212434768676758,-0.013058149255812168 +0.8000000715255737,24.277889251708984,18.46160316467285,19.499643325805664,1.658732533454895,1.6266944408416748,-0.07782214879989624 +0.8000000715255737,24.41411590576172,18.60068130493164,19.31965446472168,1.4296525716781616,1.6757535934448242,-0.2628621459007263 +0.8000000715255737,24.41411590576172,18.415245056152344,19.679630279541016,1.658732533454895,1.6321455240249634,-0.09632615000009537 +0.8000000715255737,24.41411590576172,18.46160316467285,19.634632110595703,1.6816405057907104,1.7629694938659668,-0.0870741531252861 +0.8000000715255737,24.277889251708984,18.368886947631836,19.499643325805664,1.6243705749511719,1.6266944408416748,-0.1287081390619278 +0.8000000715255737,24.073549270629883,18.415245056152344,19.409648895263672,1.5785545110702515,1.6648515462875366,-0.11945614963769913 +0.8000000715255737,24.41411590576172,18.276168823242188,19.544639587402344,1.6415514945983887,1.7193615436553955,-0.008432149887084961 +0.8000000715255737,24.277889251708984,18.554323196411133,19.724626541137695,1.5785545110702515,1.6757535934448242,-0.2721141278743744 +0.8000000715255737,24.34600257873535,18.60068130493164,19.814620971679688,1.6816405057907104,1.7193615436553955,-0.07319615036249161 +0.8000000715255737,23.801097869873047,18.46160316467285,19.499643325805664,1.5671006441116333,1.6103415489196777,-0.008432149887084961 +0.8000000715255737,24.14166259765625,18.276168823242188,19.544639587402344,1.6644595861434937,1.7684205770492554,-0.04544014856219292 +0.8000000715255737,24.34600257873535,18.507963180541992,19.589635848999023,1.658732533454895,1.5830864906311035,-0.11945614963769913 +0.8000000715255737,24.277889251708984,18.415245056152344,19.499643325805664,1.6186435222625732,1.7357144355773926,-0.1009521484375 diff --git a/results/Load 10 branch 1/results_CORE_duty90%_VHigh24.csv b/results/Load 10 branch 1/results_CORE_duty90%_VHigh24.csv new file mode 100644 index 0000000000000000000000000000000000000000..e7e9a7c13286f7704f8d0e37bce381d1efe3d266 --- /dev/null +++ b/results/Load 10 branch 1/results_CORE_duty90%_VHigh24.csv @@ -0,0 +1,501 @@ +duty_cycle,Vhigh_value,V1_low_value,V2_low_value,Ihigh_value,I1_low_value,I2_low_value +0.10000000149011612,24.686567306518555,1.8650814294815063,3.1207334995269775,0.1525314748287201,0.013198448345065117,-0.19347214698791504 +0.20000000298023224,24.34600257873535,1.8187223672866821,3.2557244300842285,0.19262048602104187,0.06770844757556915,-0.2166021466255188 +0.30000001192092896,24.34600257873535,4.6466217041015625,5.460577487945557,0.23270948231220245,-0.0903705582022667,-0.05931815132498741 +0.4000000059604645,24.14166259765625,7.01093053817749,7.800421237945557,0.4503355026245117,0.08951245248317719,-0.05469214916229248 +0.5,24.14166259765625,9.236162185668945,10.140265464782715,0.5362404584884644,0.20398345589637756,-0.08244814723730087 +0.6000000238418579,24.073549270629883,11.785906791687012,12.34511947631836,0.8283175230026245,0.2312384694814682,-0.017684150487184525 +0.7000000476837158,24.00543785095215,13.918421745300293,14.819953918457031,1.0688515901565552,0.44927847385406494,-0.022310150787234306 +0.8000000715255737,23.869211196899414,16.282730102539062,17.069805145263672,1.2750235795974731,0.7327304482460022,0.033201850950717926 +0.9000000953674316,23.869211196899414,18.415245056152344,19.049671173095703,1.7503645420074463,1.037986397743225,-0.04544014856219292 +0.9000000953674316,24.14166259765625,20.825912475585938,21.20952796936035,1.9966256618499756,1.1688106060028076,-0.14258615672588348 +0.9000000953674316,23.52864646911621,20.037811279296875,21.20952796936035,2.9243996143341064,3.725329637527466,-0.22585414350032806 +0.9000000953674316,24.14166259765625,21.104066848754883,21.254526138305664,2.8384945392608643,2.8259146213531494,0.09333985298871994 +0.9000000953674316,24.34600257873535,19.527860641479492,20.849552154541016,0.5935105085372925,-0.07401755452156067,-0.17034214735031128 +0.9000000953674316,24.00543785095215,19.388782501220703,21.11953353881836,2.506328582763672,2.662384510040283,-0.17034214735031128 +0.9000000953674316,24.209775924682617,20.964990615844727,21.11953353881836,2.7812247276306152,2.8259146213531494,0.028575848788022995 +0.9000000953674316,23.73298454284668,19.388782501220703,21.07453727722168,0.7195045351982117,-0.11217456310987473,-0.1148301437497139 +0.9000000953674316,23.664871215820312,19.852373123168945,21.07453727722168,2.6437766551971436,2.8640716075897217,-0.21197615563869476 +0.9000000953674316,23.93732452392578,20.964990615844727,21.164531707763672,2.208524703979492,2.624227523803711,0.08871385455131531 +0.9000000953674316,23.73298454284668,19.017911911010742,21.07453727722168,1.1547564268112183,0.2693954408168793,-0.1287081390619278 +0.9000000953674316,23.73298454284668,20.362321853637695,21.254526138305664,2.8327674865722656,3.169327735900879,-0.20735014975070953 +0.9000000953674316,24.482229232788086,20.918630599975586,21.299522399902344,1.1261216402053833,-0.019507553428411484,0.10721784830093384 +0.9000000953674316,23.73298454284668,19.20334815979004,21.344518661499023,2.0710766315460205,1.931950569152832,-0.14721214771270752 +0.9000000953674316,24.073549270629883,20.872270584106445,21.254526138305664,2.71250057220459,3.0166995525360107,-0.17959414422512054 +0.9000000953674316,24.209775924682617,19.388782501220703,21.20952796936035,1.3552014827728271,0.3675134479999542,-0.03156214952468872 +0.9000000953674316,23.869211196899414,19.898733139038086,21.254526138305664,2.8041324615478516,2.940385580062866,-0.16571614146232605 +0.9000000953674316,24.618453979492188,21.011348724365234,21.434513092041016,0.8397715091705322,0.836299479007721,-0.14721214771270752 +0.9000000953674316,23.73298454284668,19.017911911010742,21.07453727722168,2.134073495864868,1.986460566520691,-0.16109015047550201 +0.9000000953674316,23.93732452392578,20.77955436706543,21.254526138305664,2.80985951423645,3.07120943069458,0.014697848819196224 +0.9000000953674316,24.209775924682617,19.527860641479492,21.299522399902344,0.7710474729537964,-0.03040955401957035,-0.04544014856219292 +0.9000000953674316,23.664871215820312,19.435142517089844,21.07453727722168,2.592233657836914,3.033052444458008,-0.13796015083789825 +0.9000000953674316,24.073549270629883,21.19678497314453,21.344518661499023,2.7067737579345703,2.6678354740142822,0.09333985298871994 +0.9000000953674316,23.664871215820312,19.064271926879883,21.344518661499023,1.756091594696045,1.2396734952926636,-0.022310150787234306 +0.9000000953674316,23.801097869873047,20.26960563659668,21.164531707763672,2.7067737579345703,3.1529746055603027,-0.19809813797473907 +0.9000000953674316,24.482229232788086,20.13052749633789,21.479509353637695,0.8684064745903015,-0.07401755452156067,0.16735585033893585 +0.9000000953674316,24.073549270629883,19.574220657348633,21.344518661499023,2.4376044273376465,2.6078743934631348,-0.2443581372499466 +0.9000000953674316,24.209775924682617,20.872270584106445,21.164531707763672,2.5406906604766846,2.760502338409424,-0.22585414350032806 +0.9000000953674316,24.00543785095215,19.064271926879883,21.344518661499023,1.3666554689407349,0.2802974581718445,0.07946184277534485 +0.9000000953674316,24.073549270629883,20.362321853637695,21.524507522583008,2.8499484062194824,3.1202685832977295,-0.17959414422512054 +0.9000000953674316,24.55034065246582,21.011348724365234,21.299522399902344,0.6278725266456604,-0.046762555837631226,-0.19809813797473907 +0.9000000953674316,23.801097869873047,19.110628128051758,21.20952796936035,2.030987501144409,1.9810094833374023,-0.05469214916229248 +0.9000000953674316,23.93732452392578,21.104066848754883,21.254526138305664,2.741135597229004,2.9948954582214355,-0.11020414531230927 +0.9000000953674316,24.14166259765625,19.435142517089844,21.029541015625,1.0688515901565552,0.372964471578598,-0.15183815360069275 +0.9000000953674316,24.209775924682617,19.71329689025879,21.164531707763672,2.7067737579345703,3.054856538772583,-0.15646414458751678 +0.9000000953674316,23.869211196899414,21.521299362182617,21.704496383666992,1.1833914518356323,2.5315606594085693,0.18585984408855438 +0.9000000953674316,23.801097869873047,19.110628128051758,21.029541015625,1.9794446229934692,1.8120285272598267,-0.09170015156269073 +0.9000000953674316,23.93732452392578,20.68683624267578,21.07453727722168,2.7583167552948,3.2619946002960205,-0.18422015011310577 +0.9000000953674316,24.55034065246582,19.574220657348633,21.389514923095703,0.9657654762268066,-0.01405655313283205,-0.1148301437497139 +0.9000000953674316,24.14166259765625,19.435142517089844,21.254526138305664,2.5292365550994873,2.907679557800293,-0.2304801493883133 +0.9000000953674316,26.525617599487305,21.289501190185547,21.344518661499023,1.9279016256332397,2.755051612854004,-0.21197615563869476 +0.9000000953674316,23.664871215820312,19.20334815979004,21.65949821472168,2.197070598602295,1.8719894886016846,-0.11020414531230927 +0.9000000953674316,23.869211196899414,20.825912475585938,21.434513092041016,2.7010467052459717,3.0003466606140137,-0.22122815251350403 +0.9000000953674316,23.73298454284668,19.110628128051758,21.164531707763672,1.108940601348877,0.04590445011854172,-0.08244814723730087 +0.9000000953674316,23.93732452392578,20.455041885375977,21.254526138305664,2.827040433883667,3.202033758163452,0.05633184686303139 +0.9000000953674316,24.34600257873535,20.408681869506836,21.344518661499023,0.7595934867858887,-0.06856656074523926,-0.1009521484375 +0.9000000953674316,23.93732452392578,19.388782501220703,21.11953353881836,2.254340648651123,2.2644615173339844,-0.14721214771270752 +0.9000000953674316,23.664871215820312,21.243144989013672,21.164531707763672,2.7468626499176025,3.038503646850586,0.04707984998822212 +0.9000000953674316,24.073549270629883,19.249706268310547,21.164531707763672,1.3666554689407349,0.6618674993515015,-0.20735014975070953 +0.9000000953674316,24.073549270629883,20.22324562072754,21.299522399902344,2.6724116802215576,3.1366214752197266,-0.14258615672588348 +0.9000000953674316,26.66184425354004,20.594118118286133,21.20952796936035,0.9944005012512207,-0.04131155461072922,0.1719818413257599 +0.9000000953674316,24.00543785095215,19.110628128051758,21.254526138305664,2.1283466815948486,2.1608924865722656,-0.2166021466255188 +0.9000000953674316,24.00543785095215,20.964990615844727,21.389514923095703,2.71250057220459,3.207484722137451,-0.17959414422512054 +0.9000000953674316,24.209775924682617,19.435142517089844,21.254526138305664,1.0058544874191284,-0.03040955401957035,-0.03618814796209335 +0.9000000953674316,23.664871215820312,19.898733139038086,21.254526138305664,2.815586566925049,3.1148176193237305,0.01932384818792343 +0.9000000953674316,24.34600257873535,20.31596565246582,21.164531707763672,0.8569524884223938,-0.11217456310987473,-0.09170015156269073 +0.9000000953674316,23.73298454284668,19.481502532958984,21.07453727722168,2.2371597290039062,2.498854398727417,-0.12408214807510376 +0.9000000953674316,24.00543785095215,21.104066848754883,21.11953353881836,2.0596225261688232,2.7168946266174316,0.03782784938812256 +0.9000000953674316,24.00543785095215,19.20334815979004,21.20952796936035,1.5785545110702515,0.9889274835586548,-0.07782214879989624 +0.9000000953674316,23.801097869873047,20.825912475585938,21.389514923095703,2.7754976749420166,3.2619946002960205,-0.15183815360069275 +0.9000000953674316,24.482229232788086,19.75965690612793,21.434513092041016,1.160483479499817,0.12766945362091064,0.0008198499563150108 +0.9000000953674316,24.00543785095215,20.037811279296875,21.299522399902344,2.8900375366210938,2.9567384719848633,-0.15183815360069275 +0.9000000953674316,25.77637481689453,20.362321853637695,21.389514923095703,0.6622344851493835,-0.0031545525416731834,-0.04544014856219292 +0.9000000953674316,23.93732452392578,19.20334815979004,21.07453727722168,2.282975673675537,2.640580654144287,-0.15646414458751678 +0.9000000953674316,24.209775924682617,21.19678497314453,21.929479598999023,2.695319652557373,3.0003466606140137,0.12572184205055237 +0.9000000953674316,23.801097869873047,19.110628128051758,21.07453727722168,1.4640145301818848,0.9453194737434387,-0.1009521484375 +0.9000000953674316,23.801097869873047,20.13052749633789,21.20952796936035,2.6895925998687744,3.2401907444000244,-0.13796015083789825 +0.9000000953674316,24.34600257873535,20.22324562072754,21.479509353637695,1.011581540107727,0.0350024476647377,0.3015098571777344 +0.9000000953674316,23.73298454284668,19.75965690612793,21.299522399902344,2.3917884826660156,2.618776559829712,-0.1888461410999298 +0.9000000953674316,24.14166259765625,21.19678497314453,21.479509353637695,1.8763585090637207,2.651482582092285,-0.13333414494991302 +0.9000000953674316,23.869211196899414,19.064271926879883,21.614501953125,1.6644595861434937,0.7218285202980042,0.18585984408855438 +0.9000000953674316,23.664871215820312,20.501399993896484,21.479509353637695,2.723954677581787,3.180229425430298,-0.16109015047550201 +0.9000000953674316,24.34600257873535,19.75965690612793,21.299522399902344,0.9944005012512207,0.024100448936223984,-0.040814146399497986 +0.9000000953674316,24.00543785095215,19.898733139038086,21.254526138305664,2.6724116802215576,2.9458367824554443,0.09333985298871994 +0.9000000953674316,24.55034065246582,21.474939346313477,21.839487075805664,0.9199495315551758,2.5588154792785645,-0.08244814723730087 +0.9000000953674316,24.073549270629883,19.110628128051758,21.11953353881836,1.8763585090637207,1.7030085325241089,-0.16571614146232605 +0.9000000953674316,23.869211196899414,20.733196258544922,21.299522399902344,2.7182276248931885,3.2728965282440186,0.051705848425626755 +0.9000000953674316,24.34600257873535,19.435142517089844,21.254526138305664,0.8855875134468079,-0.046762555837631226,-0.040814146399497986 +0.9000000953674316,23.869211196899414,19.806015014648438,21.164531707763672,2.6323225498199463,3.0875625610351562,-0.1888461410999298 +0.9000000953674316,24.482229232788086,20.547760009765625,21.20952796936035,0.9371305108070374,-0.07946854829788208,0.13959985971450806 +0.9000000953674316,23.73298454284668,19.62057876586914,21.434513092041016,2.3631534576416016,2.5479135513305664,-0.12408214807510376 +0.9000000953674316,24.277889251708984,21.289501190185547,21.65949821472168,0.7653204798698425,0.5582984685897827,-0.17959414422512054 +0.9000000953674316,24.14166259765625,19.20334815979004,21.254526138305664,1.6186435222625732,1.2887325286865234,-0.07782214879989624 +0.9000000953674316,23.869211196899414,21.104066848754883,21.569503784179688,2.8900375366210938,3.0112485885620117,0.1303478479385376 +0.9000000953674316,24.482229232788086,19.62057876586914,21.20952796936035,0.9944005012512207,-0.008605552837252617,-0.10557814687490463 +0.9000000953674316,24.00543785095215,19.991451263427734,21.254526138305664,2.5521445274353027,2.9730916023254395,-0.16571614146232605 +0.9000000953674316,27.002408981323242,20.501399993896484,21.524507522583008,1.0173084735870361,-0.07946854829788208,0.2459978461265564 +0.9000000953674316,24.277889251708984,19.20334815979004,21.299522399902344,2.2600677013397217,2.209951400756836,-0.13796015083789825 +0.9000000953674316,24.209775924682617,20.964990615844727,21.299522399902344,2.7640438079833984,3.207484722137451,-0.12408214807510376 +0.9000000953674316,24.277889251708984,19.249706268310547,21.434513092041016,1.5441925525665283,0.634612500667572,0.15347784757614136 +0.9000000953674316,24.00543785095215,20.31596565246582,21.434513092041016,2.649503707885742,3.0221505165100098,-0.1009521484375 +0.9000000953674316,24.277889251708984,19.852373123168945,21.254526138305664,0.6278725266456604,0.00229644775390625,-0.08244814723730087 +0.9000000953674316,23.93732452392578,19.852373123168945,21.164531707763672,2.5865066051483154,2.929483652114868,0.010071849450469017 +0.9000000953674316,26.66184425354004,21.382221221923828,21.299522399902344,0.6965965032577515,-0.12852755188941956,-0.12408214807510376 +0.9000000953674316,23.73298454284668,19.342426300048828,21.029541015625,1.9737175703048706,1.8610875606536865,-0.13796015083789825 +0.9000000953674316,23.869211196899414,21.19678497314453,21.164531707763672,2.546417474746704,3.043954610824585,0.00544585008174181 +0.9000000953674316,23.801097869873047,19.342426300048828,21.299522399902344,1.3781094551086426,0.9017114639282227,-0.1287081390619278 +0.9000000953674316,24.209775924682617,20.22324562072754,21.344518661499023,2.649503707885742,3.196582555770874,-0.23510614037513733 +0.9000000953674316,24.55034065246582,19.66693687438965,21.434513092041016,0.5877835154533386,0.013198448345065117,0.06095784902572632 +0.9000000953674316,24.073549270629883,19.806015014648438,21.434513092041016,2.546417474746704,3.049405574798584,-0.1148301437497139 +0.9000000953674316,24.95901870727539,20.68683624267578,21.389514923095703,0.7939555048942566,-0.13942956924438477,-0.17496813833713531 +0.9000000953674316,24.00543785095215,19.806015014648438,21.164531707763672,2.3402457237243652,2.5315606594085693,-0.15646414458751678 +0.9000000953674316,24.41411590576172,21.243144989013672,21.884483337402344,0.9714924693107605,2.5751683712005615,0.13497385382652283 +0.9000000953674316,23.869211196899414,19.1569881439209,21.11953353881836,1.6358245611190796,1.2723795175552368,-0.1009521484375 +0.9000000953674316,24.277889251708984,21.011348724365234,21.20952796936035,2.71250057220459,3.060307502746582,-0.15183815360069275 +0.9000000953674316,24.073549270629883,19.66693687438965,21.254526138305664,1.2807505130767822,0.5746514797210693,-0.23510614037513733 +0.9000000953674316,24.073549270629883,20.408681869506836,21.434513092041016,2.8785834312438965,3.2619946002960205,-0.2166021466255188 +0.9000000953674316,24.14166259765625,19.898733139038086,21.479509353637695,0.5706024765968323,-0.04131155461072922,-0.05006615072488785 +0.9000000953674316,23.73298454284668,19.75965690612793,21.569503784179688,2.9243996143341064,2.929483652114868,0.06558384746313095 +0.9000000953674316,23.73298454284668,19.75965690612793,21.344518661499023,0.7939555048942566,2.929483652114868,-0.22585414350032806 +0.9000000953674316,23.664871215820312,19.66693687438965,277.69244384765625,97.51153564453125,2.4279913902282715,-0.16571614146232605 +0.9000000953674316,24.073549270629883,21.057706832885742,21.479509353637695,2.0882575511932373,2.651482582092285,0.15347784757614136 +0.9000000953674316,24.14166259765625,19.1569881439209,21.254526138305664,1.4926495552062988,1.0761433839797974,-0.06394414603710175 +0.9000000953674316,24.00543785095215,20.872270584106445,21.254526138305664,2.6437766551971436,3.3001515865325928,-0.15646414458751678 +0.9000000953674316,24.277889251708984,19.806015014648438,21.389514923095703,1.4869225025177002,0.2857484817504883,0.31076183915138245 +0.9000000953674316,23.869211196899414,20.037811279296875,21.434513092041016,2.6437766551971436,3.049405574798584,-0.13333414494991302 +0.9000000953674316,24.890905380249023,19.806015014648438,21.434513092041016,0.6507804989814758,-0.052213553339242935,-0.15183815360069275 +0.9000000953674316,24.00543785095215,19.481502532958984,21.389514923095703,2.7869515419006348,2.902228593826294,0.1164698451757431 +0.9000000953674316,26.729957580566406,21.243144989013672,21.344518661499023,1.9221745729446411,2.6732866764068604,-0.15183815360069275 +0.9000000953674316,23.664871215820312,19.342426300048828,21.254526138305664,1.962263584136963,1.7902244329452515,-0.12408214807510376 +0.9000000953674316,24.14166259765625,20.825912475585938,21.479509353637695,2.7869515419006348,2.8477184772491455,0.04707984998822212 +0.9000000953674316,23.801097869873047,19.064271926879883,21.344518661499023,1.2979315519332886,0.7872405052185059,-0.1148301437497139 +0.9000000953674316,23.801097869873047,20.77955436706543,21.344518661499023,2.6781387329101562,3.060307502746582,-0.17959414422512054 +0.9000000953674316,24.14166259765625,19.527860641479492,21.434513092041016,1.4067444801330566,0.43837645649909973,0.1164698451757431 +0.9000000953674316,24.34600257873535,20.408681869506836,21.524507522583008,2.683865547180176,3.1529746055603027,-0.19347214698791504 +0.9000000953674316,24.073549270629883,19.71329689025879,21.254526138305664,0.6908695101737976,-0.052213553339242935,-0.1009521484375 +0.9000000953674316,23.93732452392578,19.898733139038086,21.164531707763672,2.7067737579345703,3.0057976245880127,-0.13333414494991302 +0.9000000953674316,24.754680633544922,20.547760009765625,21.434513092041016,0.9027684926986694,-0.0958215594291687,-0.1287081390619278 +0.9000000953674316,24.277889251708984,19.71329689025879,21.344518661499023,2.414696455001831,2.651482582092285,-0.11945614963769913 +0.9000000953674316,24.618453979492188,21.335861206054688,21.65949821472168,0.9714924693107605,1.0052804946899414,-0.017684150487184525 +0.9000000953674316,24.00543785095215,19.296066284179688,21.614501953125,2.0997116565704346,1.9646564722061157,-0.14258615672588348 +0.9000000953674316,24.209775924682617,21.19678497314453,21.479509353637695,2.6265957355499268,2.8586206436157227,-0.2721141278743744 +0.9000000953674316,23.801097869873047,19.249706268310547,21.344518661499023,1.9966256618499756,1.8610875606536865,-0.07319615036249161 +0.9000000953674316,23.73298454284668,20.825912475585938,21.434513092041016,2.9415805339813232,3.212935447692871,-0.017684150487184525 +0.9000000953674316,24.00543785095215,19.1569881439209,21.344518661499023,1.4181984663009644,0.5910044312477112,-0.15183815360069275 +0.9000000953674316,23.93732452392578,20.17688751220703,21.20952796936035,2.6265957355499268,3.1529746055603027,-0.15183815360069275 +0.9000000953674316,24.482229232788086,19.898733139038086,21.434513092041016,0.9142225384712219,-0.03040955401957035,0.2182418555021286 +0.9000000953674316,23.52864646911621,20.08416748046875,21.479509353637695,2.575052499771118,3.0166995525360107,-0.19347214698791504 +0.9000000953674316,24.55034065246582,20.547760009765625,21.434513092041016,0.6049644947052002,-0.03586055338382721,-0.17496813833713531 +0.9000000953674316,24.073549270629883,19.806015014648438,21.344518661499023,2.3975155353546143,2.6841883659362793,-0.008432149887084961 +0.9000000953674316,26.593730926513672,20.547760009765625,21.479509353637695,0.7710474729537964,-0.2211945652961731,-0.1287081390619278 +0.9000000953674316,24.073549270629883,19.296066284179688,21.344518661499023,2.3402457237243652,2.477050542831421,-0.05931815132498741 +0.9000000953674316,24.55034065246582,21.057706832885742,21.79448890686035,2.460512638092041,2.9512875080108643,-0.0038061500526964664 +0.9000000953674316,23.869211196899414,19.110628128051758,21.344518661499023,1.9336285591125488,1.6266944408416748,-0.16571614146232605 +0.9000000953674316,24.209775924682617,20.872270584106445,21.479509353637695,2.649503707885742,2.8313655853271484,-0.16109015047550201 +0.9000000953674316,23.801097869873047,19.20334815979004,21.254526138305664,1.423925518989563,0.879907488822937,-0.15183815360069275 +0.9000000953674316,23.801097869873047,20.964990615844727,21.524507522583008,2.844221591949463,3.076660633087158,-0.22585414350032806 +0.9000000953674316,24.277889251708984,19.62057876586914,21.299522399902344,1.320839524269104,0.5910044312477112,-0.09632615000009537 +0.9000000953674316,23.869211196899414,20.31596565246582,20.984542846679688,2.649503707885742,3.1093664169311523,-0.1888461410999298 +0.9000000953674316,24.209775924682617,19.898733139038086,21.479509353637695,0.9027684926986694,-0.05766455456614494,-0.09632615000009537 +0.9000000953674316,24.00543785095215,19.852373123168945,21.389514923095703,2.7296817302703857,3.0003466606140137,-0.1148301437497139 +0.9000000953674316,24.686567306518555,20.594118118286133,21.20952796936035,0.7939555048942566,-0.0903705582022667,-0.1287081390619278 +0.9000000953674316,24.073549270629883,19.852373123168945,21.569503784179688,2.609414577484131,2.6678354740142822,0.028575848788022995 +0.9000000953674316,26.729957580566406,21.19678497314453,21.389514923095703,0.8397715091705322,-0.21029256284236908,-0.15646414458751678 +0.9000000953674316,24.073549270629883,19.20334815979004,21.254526138305664,1.9565366506576538,1.7793225049972534,-0.15183815360069275 +0.9000000953674316,24.482229232788086,21.243144989013672,21.389514923095703,2.683865547180176,2.8531696796417236,0.07020984590053558 +0.9000000953674316,23.596757888793945,19.064271926879883,21.479509353637695,1.7675455808639526,1.5721845626831055,-0.1009521484375 +0.9000000953674316,23.801097869873047,20.733196258544922,21.434513092041016,2.666684627532959,3.1529746055603027,-0.2027241587638855 +0.9000000953674316,23.869211196899414,19.1569881439209,21.344518661499023,1.4010175466537476,0.6237104535102844,0.18123383820056915 +0.9000000953674316,24.073549270629883,20.455041885375977,21.434513092041016,2.7182276248931885,3.054856538772583,-0.20735014975070953 +0.9000000953674316,24.209775924682617,19.435142517089844,21.254526138305664,0.6679614782333374,-0.0031545525416731834,-0.07782214879989624 +0.9000000953674316,23.801097869873047,19.945091247558594,21.254526138305664,2.7640438079833984,3.07120943069458,-0.08244814723730087 +0.9000000953674316,24.55034065246582,20.455041885375977,21.569503784179688,0.6049644947052002,-0.0903705582022667,-0.22122815251350403 +0.9000000953674316,24.00543785095215,19.71329689025879,21.299522399902344,2.386061429977417,2.635129690170288,-0.20735014975070953 +0.9000000953674316,24.209775924682617,20.918630599975586,21.524507522583008,0.7996824979782104,0.9289664626121521,0.00544585008174181 +0.9000000953674316,24.14166259765625,19.342426300048828,21.65949821472168,2.4547855854034424,2.455246686935425,-0.1009521484375 +0.9000000953674316,24.41411590576172,21.057706832885742,21.614501953125,2.5120556354522705,2.765953540802002,-0.19809813797473907 +0.9000000953674316,23.93732452392578,19.249706268310547,21.299522399902344,1.9279016256332397,1.6157925128936768,-0.18422015011310577 +0.9000000953674316,24.209775924682617,20.964990615844727,21.524507522583008,2.649503707885742,2.9894444942474365,-0.16571614146232605 +0.9000000953674316,23.73298454284668,19.1569881439209,21.11953353881836,1.3838365077972412,0.6673184633255005,-0.1009521484375 +0.9000000953674316,24.14166259765625,20.594118118286133,21.524507522583008,2.71250057220459,3.0930137634277344,-0.07782214879989624 +0.9000000953674316,23.93732452392578,19.527860641479492,21.434513092041016,1.4697415828704834,0.4656314551830292,0.21361584961414337 +0.9000000953674316,24.073549270629883,20.455041885375977,21.344518661499023,2.695319652557373,3.0875625610351562,-0.1888461410999298 +0.9000000953674316,24.277889251708984,19.1569881439209,21.299522399902344,0.7710474729537964,-0.07401755452156067,-0.14258615672588348 +0.9000000953674316,23.93732452392578,20.13052749633789,21.479509353637695,2.8957645893096924,3.0821115970611572,0.09796585142612457 +0.9000000953674316,24.618453979492188,20.037811279296875,21.20952796936035,0.748139500617981,-0.0031545525416731834,-0.21197615563869476 +0.9000000953674316,23.869211196899414,19.806015014648438,21.299522399902344,2.7010467052459717,2.907679557800293,-0.20735014975070953 +0.9000000953674316,26.66184425354004,21.335861206054688,21.479509353637695,1.0688515901565552,-0.23209655284881592,0.15347784757614136 +0.9000000953674316,24.14166259765625,19.342426300048828,21.299522399902344,2.07680344581604,2.1336374282836914,-0.1888461410999298 +0.9000000953674316,24.14166259765625,21.15042495727539,21.344518661499023,1.9508095979690552,2.7277965545654297,-0.25361016392707825 +0.9000000953674316,23.869211196899414,19.20334815979004,21.569503784179688,2.460512638092041,2.084578514099121,0.16735585033893585 +0.9000000953674316,24.00543785095215,20.964990615844727,21.479509353637695,2.6437766551971436,3.0003466606140137,-0.2628621459007263 +0.9000000953674316,23.93732452392578,19.064271926879883,21.344518661499023,1.7389105558395386,1.4250074625015259,-0.17959414422512054 +0.9000000953674316,24.14166259765625,20.918630599975586,21.479509353637695,2.7583167552948,2.9567384719848633,0.04707984998822212 +0.9000000953674316,23.93732452392578,19.342426300048828,21.299522399902344,1.1776645183563232,0.33480745553970337,-0.1148301437497139 +0.9000000953674316,23.73298454284668,20.501399993896484,21.254526138305664,2.7812247276306152,3.2565433979034424,-0.1287081390619278 +0.9000000953674316,24.277889251708984,19.75965690612793,21.344518661499023,1.2979315519332886,-0.05766455456614494,0.24137184023857117 +0.9000000953674316,24.34600257873535,20.08416748046875,21.344518661499023,2.638049602508545,2.9621894359588623,-0.19347214698791504 +0.9000000953674316,24.618453979492188,19.806015014648438,21.479509353637695,0.6679614782333374,-0.12852755188941956,-0.16571614146232605 +0.9000000953674316,24.00543785095215,19.71329689025879,21.344518661499023,2.918672561645508,2.9621894359588623,0.11184384673833847 +0.9000000953674316,24.686567306518555,20.455041885375977,21.299522399902344,0.7595934867858887,-0.2211945652961731,-0.09170015156269073 +0.9000000953674316,23.801097869873047,19.62057876586914,21.344518661499023,2.506328582763672,2.7168946266174316,-0.17959414422512054 +0.9000000953674316,24.34600257873535,21.19678497314453,21.569503784179688,0.982946515083313,0.7109264731407166,-0.02693614922463894 +0.9000000953674316,23.664871215820312,19.296066284179688,21.389514923095703,2.036714553833008,1.8665385246276855,-0.09632615000009537 +0.9000000953674316,24.34600257873535,21.104066848754883,21.389514923095703,2.5521445274353027,2.8640716075897217,-0.19809813797473907 +0.9000000953674316,23.73298454284668,19.110628128051758,21.299522399902344,2.242886543273926,1.8937935829162598,-0.04544014856219292 +0.9000000953674316,24.073549270629883,20.872270584106445,21.20952796936035,2.7869515419006348,3.0166995525360107,-0.19347214698791504 +0.9000000953674316,23.801097869873047,18.9715518951416,21.20952796936035,1.6243705749511719,1.163359522819519,-0.13333414494991302 +0.9000000953674316,23.73298454284668,20.408681869506836,21.11953353881836,2.8957645893096924,3.169327735900879,-0.040814146399497986 +0.9000000953674316,24.277889251708984,19.435142517089844,21.07453727722168,0.9027684926986694,0.00229644775390625,-0.17959414422512054 +0.9000000953674316,23.801097869873047,20.31596565246582,21.344518661499023,2.7926785945892334,3.0003466606140137,-0.17496813833713531 +0.9000000953674316,24.822792053222656,19.66693687438965,21.389514923095703,1.2120264768600464,0.1004144549369812,0.07483584433794022 +0.9000000953674316,24.073549270629883,20.17688751220703,21.479509353637695,2.741135597229004,3.060307502746582,-0.1888461410999298 +0.9000000953674316,24.618453979492188,19.66693687438965,21.524507522583008,0.6965965032577515,-0.07946854829788208,-0.19809813797473907 +0.9000000953674316,23.869211196899414,19.852373123168945,21.299522399902344,2.592233657836914,2.9458367824554443,-0.17034214735031128 +0.9000000953674316,24.754680633544922,21.011348724365234,21.164531707763672,0.9084955453872681,0.9235154986381531,-0.22585414350032806 +0.9000000953674316,24.00543785095215,19.527860641479492,21.20952796936035,2.357426404953003,2.4007365703582764,-0.16109015047550201 +0.9000000953674316,24.277889251708984,21.289501190185547,21.344518661499023,0.8970414996147156,0.8253974318504333,-0.16571614146232605 +0.9000000953674316,23.664871215820312,19.20334815979004,21.344518661499023,2.254340648651123,1.8719894886016846,-0.29524412751197815 +0.9000000953674316,24.00543785095215,21.011348724365234,21.524507522583008,2.620868682861328,2.749600648880005,-0.19347214698791504 +0.9000000953674316,23.801097869873047,19.110628128051758,21.11953353881836,2.12261962890625,1.8992445468902588,-0.17496813833713531 +0.9000000953674316,24.209775924682617,20.825912475585938,21.164531707763672,2.8327674865722656,3.033052444458008,0.051705848425626755 +0.9000000953674316,23.93732452392578,19.110628128051758,21.254526138305664,1.521284580230713,1.037986397743225,-0.1888461410999298 +0.9000000953674316,24.277889251708984,20.455041885375977,21.299522399902344,2.7296817302703857,3.191131591796875,-0.14258615672588348 +0.9000000953674316,23.869211196899414,19.110628128051758,21.344518661499023,1.4067444801330566,0.013198448345065117,0.21361584961414337 +0.9000000953674316,24.14166259765625,20.64047622680664,21.524507522583008,2.741135597229004,3.033052444458008,-0.2767401337623596 +0.9000000953674316,24.14166259765625,19.481502532958984,21.164531707763672,1.4582875967025757,0.6128084659576416,-0.13796015083789825 +0.9000000953674316,23.869211196899414,20.26960563659668,21.389514923095703,2.815586566925049,3.07120943069458,0.01932384818792343 +0.9000000953674316,24.34600257873535,19.435142517089844,21.389514923095703,0.7595934867858887,-0.12307655066251755,-0.13796015083789825 +0.9000000953674316,23.93732452392578,19.852373123168945,21.299522399902344,2.7754976749420166,3.2456417083740234,-0.19809813797473907 +0.9000000953674316,24.073549270629883,19.71329689025879,21.164531707763672,0.645053505897522,-0.07946854829788208,0.1025918498635292 +0.9000000953674316,23.664871215820312,20.22324562072754,21.344518661499023,2.7354087829589844,3.07120943069458,-0.2859921455383301 +0.9000000953674316,24.41411590576172,19.945091247558594,21.11953353881836,0.9371305108070374,0.08951245248317719,-0.0870741531252861 +0.9000000953674316,24.073549270629883,20.037811279296875,21.11953353881836,2.666684627532959,2.913130521774292,-0.17959414422512054 +0.9000000953674316,24.55034065246582,19.806015014648438,21.479509353637695,0.7653204798698425,-0.12307655066251755,-0.1009521484375 +0.9000000953674316,24.00543785095215,19.806015014648438,21.254526138305664,2.6609575748443604,3.0003466606140137,-0.2166021466255188 +0.9000000953674316,24.482229232788086,20.501399993896484,21.20952796936035,0.8283175230026245,-0.1503315567970276,-0.06394414603710175 +0.9000000953674316,23.93732452392578,19.75965690612793,21.479509353637695,2.477693557739258,2.618776559829712,-0.16571614146232605 +0.9000000953674316,26.798070907592773,21.335861206054688,21.524507522583008,0.8283175230026245,-0.03040955401957035,-0.1888461410999298 +0.9000000953674316,23.801097869873047,19.296066284179688,21.029541015625,2.2371597290039062,1.9646564722061157,-0.16571614146232605 +0.9000000953674316,24.34600257873535,21.243144989013672,21.524507522583008,2.019533634185791,2.651482582092285,-0.23973214626312256 +0.9000000953674316,23.869211196899414,19.249706268310547,21.164531707763672,2.1913435459136963,2.18814754486084,-0.17959414422512054 +0.9000000953674316,23.869211196899414,20.964990615844727,21.164531707763672,2.7812247276306152,3.0930137634277344,-0.13796015083789825 +0.9000000953674316,23.73298454284668,19.20334815979004,21.434513092041016,2.1111655235290527,1.506772518157959,-0.1888461410999298 +0.9000000953674316,24.14166259765625,20.825912475585938,21.389514923095703,2.6151416301727295,2.902228593826294,-0.24898414313793182 +0.9000000953674316,24.00543785095215,19.1569881439209,21.164531707763672,1.7618186473846436,1.4849685430526733,-0.20735014975070953 +0.9000000953674316,24.209775924682617,21.011348724365234,21.299522399902344,2.7926785945892334,2.8477184772491455,0.08871385455131531 +0.9000000953674316,24.073549270629883,19.064271926879883,21.029541015625,1.8190884590148926,1.4686155319213867,-0.11945614963769913 +0.9000000953674316,24.14166259765625,20.77955436706543,21.11953353881836,2.5865066051483154,3.1202685832977295,-0.1888461410999298 +0.9000000953674316,24.073549270629883,19.1569881439209,21.434513092041016,1.9679906368255615,1.163359522819519,0.15347784757614136 +0.9000000953674316,24.277889251708984,20.68683624267578,21.389514923095703,2.7468626499176025,3.0821115970611572,-0.2166021466255188 +0.9000000953674316,23.73298454284668,19.1569881439209,20.984542846679688,1.5441925525665283,0.836299479007721,-0.1287081390619278 +0.9000000953674316,24.277889251708984,20.825912475585938,21.164531707763672,2.8957645893096924,3.174778461456299,0.09796585142612457 +1.0000001192092896,23.596757888793945,19.435142517089844,21.07453727722168,1.5384656190872192,0.9616724848747253,-0.16571614146232605 +1.0000001192092896,23.52864646911621,20.455041885375977,21.11953353881836,2.80985951423645,3.038503646850586,-0.20735014975070953 +1.0000001192092896,23.801097869873047,19.1569881439209,21.434513092041016,1.5671006441116333,0.6019064784049988,0.25524985790252686 +1.0000001192092896,23.869211196899414,20.362321853637695,21.434513092041016,2.7583167552948,3.180229425430298,-0.25361016392707825 +1.0000001192092896,24.209775924682617,19.527860641479492,21.11953353881836,0.8626794815063477,-0.08491955697536469,-0.09632615000009537 +1.0000001192092896,23.93732452392578,20.408681869506836,21.344518661499023,2.9702155590057373,3.174778461456299,0.05633184686303139 +1.0000001192092896,24.482229232788086,19.898733139038086,21.344518661499023,0.9371305108070374,0.04045344889163971,-0.22122815251350403 +1.0000001192092896,24.209775924682617,19.991451263427734,21.254526138305664,2.638049602508545,2.8640716075897217,-0.2027241587638855 +1.0000001192092896,25.095243453979492,20.08416748046875,21.434513092041016,0.9485845565795898,-0.024958552792668343,0.23674584925174713 +1.0000001192092896,24.073549270629883,19.388782501220703,21.254526138305664,2.6036875247955322,2.9458367824554443,-0.23973214626312256 +1.0000001192092896,24.822792053222656,20.825912475585938,21.344518661499023,0.7710474729537964,0.6564164757728577,-0.17034214735031128 +1.0000001192092896,24.00543785095215,19.527860641479492,21.434513092041016,2.506328582763672,2.509756565093994,0.12109585106372833 +1.0000001192092896,24.00543785095215,21.19678497314453,21.389514923095703,0.8340445160865784,0.6455144882202148,-0.18422015011310577 +1.0000001192092896,23.596757888793945,19.20334815979004,21.164531707763672,2.0882575511932373,1.8610875606536865,-0.1148301437497139 +1.0000001192092896,24.14166259765625,21.243144989013672,21.20952796936035,2.7067737579345703,2.8204636573791504,0.01932384818792343 +1.0000001192092896,23.664871215820312,18.9715518951416,21.164531707763672,2.225705623626709,2.1608924865722656,-0.13796015083789825 +1.0000001192092896,24.482229232788086,21.15042495727539,21.389514923095703,2.6781387329101562,2.8477184772491455,-0.22585414350032806 +1.0000001192092896,23.664871215820312,19.342426300048828,21.434513092041016,2.2142515182495117,1.94285249710083,0.16735585033893585 +1.0000001192092896,24.14166259765625,21.057706832885742,21.749492645263672,0.982946515083313,2.6732866764068604,-0.25361016392707825 +1.0000001192092896,23.93732452392578,19.20334815979004,21.164531707763672,1.9279016256332397,1.637596607208252,-0.19347214698791504 +1.0000001192092896,24.277889251708984,21.104066848754883,21.07453727722168,2.798405408859253,3.065758466720581,0.08408784121274948 +1.0000001192092896,23.801097869873047,19.1569881439209,21.344518661499023,2.0538954734802246,1.7520674467086792,-0.11020414531230927 +1.0000001192092896,24.00543785095215,20.77955436706543,21.299522399902344,2.7869515419006348,3.0875625610351562,-0.2443581372499466 +1.0000001192092896,24.073549270629883,19.064271926879883,21.20952796936035,1.521284580230713,1.0325355529785156,-0.08244814723730087 +1.0000001192092896,23.801097869873047,20.455041885375977,21.299522399902344,2.7926785945892334,3.1366214752197266,-0.17034214735031128 +1.0000001192092896,23.801097869873047,19.296066284179688,21.254526138305664,1.2292075157165527,-0.03040955401957035,-0.09632615000009537 +1.0000001192092896,23.869211196899414,20.455041885375977,21.164531707763672,2.7869515419006348,3.202033758163452,-0.07782214879989624 +1.0000001192092896,24.209775924682617,19.75965690612793,21.299522399902344,1.0917595624923706,0.00229644775390625,-0.13796015083789825 +1.0000001192092896,24.277889251708984,20.22324562072754,21.479509353637695,2.620868682861328,2.9894444942474365,-0.23510614037513733 +1.0000001192092896,24.482229232788086,19.62057876586914,21.299522399902344,0.6622344851493835,0.0077474480494856834,0.1164698451757431 +1.0000001192092896,23.869211196899414,19.852373123168945,21.299522399902344,2.741135597229004,3.038503646850586,-0.04544014856219292 +1.0000001192092896,24.482229232788086,19.481502532958984,21.164531707763672,0.7137775421142578,-0.06856656074523926,-0.12408214807510376 +1.0000001192092896,23.869211196899414,20.26960563659668,21.164531707763672,2.695319652557373,3.033052444458008,-0.1148301437497139 +1.0000001192092896,24.618453979492188,20.17688751220703,21.434513092041016,0.9886735081672668,0.04045344889163971,0.17660784721374512 +1.0000001192092896,23.869211196899414,19.66693687438965,21.389514923095703,2.575052499771118,2.7059926986694336,-0.14258615672588348 +1.0000001192092896,24.618453979492188,19.806015014648438,21.299522399902344,0.7366855144500732,0.013198448345065117,-0.02693614922463894 +1.0000001192092896,23.596757888793945,19.898733139038086,21.344518661499023,2.8614025115966797,3.196582555770874,-0.0038061500526964664 +1.0000001192092896,24.209775924682617,20.17688751220703,21.434513092041016,0.7939555048942566,-0.10127255320549011,-0.16109015047550201 +1.0000001192092896,23.73298454284668,19.806015014648438,21.11953353881836,2.506328582763672,2.891326665878296,-0.11945614963769913 +1.0000001192092896,25.299583435058594,21.521299362182617,21.434513092041016,0.9485845565795898,-0.008605552837252617,0.10721784830093384 +1.0000001192092896,24.14166259765625,19.481502532958984,21.20952796936035,2.31733775138855,2.2699124813079834,-0.1888461410999298 +1.0000001192092896,26.38939094543457,20.501399993896484,21.524507522583008,0.8283175230026245,-0.11217456310987473,-0.1009521484375 +1.0000001192092896,24.073549270629883,19.481502532958984,21.344518661499023,2.5865066051483154,2.635129690170288,0.09796585142612457 +1.0000001192092896,25.027130126953125,20.964990615844727,21.434513092041016,0.7195045351982117,0.8472014665603638,-0.15646414458751678 +1.0000001192092896,24.14166259765625,19.66693687438965,21.11953353881836,2.3631534576416016,2.5915215015411377,-0.07319615036249161 +1.0000001192092896,24.55034065246582,21.335861206054688,21.569503784179688,1.0516705513000488,0.9017114639282227,0.00544585008174181 +1.0000001192092896,23.869211196899414,19.342426300048828,21.254526138305664,2.197070598602295,2.1390886306762695,-0.17034214735031128 +1.0000001192092896,24.277889251708984,20.918630599975586,21.614501953125,0.8225905299186707,0.8526524901390076,-0.1009521484375 +1.0000001192092896,23.664871215820312,19.435142517089844,21.389514923095703,2.506328582763672,2.7386984825134277,-0.0870741531252861 +1.0000001192092896,25.095243453979492,21.382221221923828,21.254526138305664,0.9886735081672668,2.5860705375671387,-0.13796015083789825 +0.8999999761581421,23.73298454284668,19.388782501220703,21.029541015625,2.2944297790527344,2.324422597885132,-0.07319615036249161 +0.8999999761581421,24.14166259765625,21.104066848754883,21.389514923095703,0.9543115496635437,0.9725744724273682,-0.19809813797473907 +0.8999999761581421,23.869211196899414,19.388782501220703,21.344518661499023,2.3516993522644043,2.2317557334899902,-0.14721214771270752 +0.8999999761581421,23.869211196899414,20.825912475585938,21.569503784179688,0.9314035177230835,0.6836714744567871,-0.07319615036249161 +0.8999999761581421,24.00543785095215,19.342426300048828,21.164531707763672,2.3631534576416016,2.6787376403808594,-0.19809813797473907 +0.8999999761581421,25.980712890625,21.289501190185547,21.389514923095703,1.2864775657653809,2.755051612854004,0.24137184023857117 +0.8999999761581421,23.93732452392578,19.66693687438965,21.299522399902344,2.3345186710357666,2.5588154792785645,-0.12408214807510376 +0.8999999761581421,24.686567306518555,20.31596565246582,21.299522399902344,0.5877835154533386,-0.008605552837252617,-0.2027241587638855 +0.8999999761581421,23.93732452392578,19.898733139038086,21.299522399902344,2.7067737579345703,2.782306671142578,0.05633184686303139 +0.8999999761581421,24.277889251708984,19.71329689025879,21.344518661499023,0.708050549030304,-0.04131155461072922,-0.03156214952468872 +0.8999999761581421,23.596757888793945,19.806015014648438,21.299522399902344,2.5578715801239014,3.033052444458008,-0.16571614146232605 +0.8999999761581421,24.34600257873535,20.037811279296875,21.344518661499023,0.8054094910621643,-0.03586055338382721,0.13959985971450806 +0.8999999761581421,23.93732452392578,20.26960563659668,21.344518661499023,2.6781387329101562,2.9894444942474365,-0.17959414422512054 +0.8999999761581421,24.686567306518555,19.991451263427734,21.299522399902344,0.748139500617981,-0.04131155461072922,-0.16109015047550201 +0.8999999761581421,24.209775924682617,20.17688751220703,21.164531707763672,2.769770622253418,3.033052444458008,0.03782784938812256 +0.8999999761581421,24.55034065246582,19.806015014648438,21.299522399902344,0.776774525642395,0.0077474480494856834,-0.07319615036249161 +0.8999999761581421,24.14166259765625,19.75965690612793,21.11953353881836,2.638049602508545,3.033052444458008,-0.19809813797473907 +0.8999999761581421,24.277889251708984,20.408681869506836,21.254526138305664,0.9199495315551758,-0.019507553428411484,0.19511184096336365 +0.8999999761581421,24.00543785095215,20.08416748046875,21.344518661499023,2.6781387329101562,2.92403244972229,-0.1148301437497139 +0.8999999761581421,24.277889251708984,20.13052749633789,21.254526138305664,0.6622344851493835,0.013198448345065117,-0.0870741531252861 +0.8999999761581421,23.869211196899414,20.13052749633789,21.344518661499023,2.6609575748443604,2.940385580062866,-0.0038061500526964664 +0.8999999761581421,24.277889251708984,19.574220657348633,21.299522399902344,0.8626794815063477,0.051355451345443726,-0.09632615000009537 +0.8999999761581421,23.801097869873047,20.17688751220703,21.389514923095703,2.7296817302703857,3.043954610824585,-0.18422015011310577 +0.8999999761581421,24.073549270629883,19.574220657348633,21.164531707763672,0.8626794815063477,-0.008605552837252617,-0.07319615036249161 +0.8999999761581421,23.869211196899414,20.594118118286133,21.389514923095703,2.8785834312438965,3.185680627822876,0.08871385455131531 +0.8999999761581421,24.209775924682617,19.527860641479492,21.07453727722168,1.3380205631256104,0.6509654521942139,-0.12408214807510376 +0.8999999761581421,24.073549270629883,20.31596565246582,21.299522399902344,2.7926785945892334,3.1257195472717285,-0.19809813797473907 +0.8999999761581421,24.14166259765625,19.1569881439209,21.254526138305664,1.5441925525665283,0.4819844663143158,0.20898985862731934 +0.8999999761581421,24.073549270629883,20.31596565246582,21.434513092041016,2.666684627532959,3.0984644889831543,-0.23510614037513733 +0.8999999761581421,24.00543785095215,19.527860641479492,21.20952796936035,0.7825015187263489,0.029551448300480843,-0.04544014856219292 +0.8999999761581421,23.801097869873047,20.408681869506836,21.254526138305664,2.827040433883667,3.169327735900879,0.04707984998822212 +0.8999999761581421,24.209775924682617,19.852373123168945,21.254526138305664,0.982946515083313,0.029551448300480843,-0.12408214807510376 +0.8999999761581421,24.209775924682617,20.26960563659668,21.20952796936035,2.6724116802215576,3.0003466606140137,-0.12408214807510376 +0.8999999761581421,24.073549270629883,19.574220657348633,21.344518661499023,1.080305576324463,0.024100448936223984,0.2737538516521454 +0.8999999761581421,24.00543785095215,20.13052749633789,21.389514923095703,2.683865547180176,3.1311707496643066,-0.17959414422512054 +0.8999999761581421,24.34600257873535,19.71329689025879,21.389514923095703,0.7595934867858887,0.029551448300480843,-0.040814146399497986 +0.8999999761581421,24.14166259765625,20.455041885375977,21.20952796936035,2.6724116802215576,3.1475236415863037,0.051705848425626755 +0.8999999761581421,24.55034065246582,19.71329689025879,21.20952796936035,0.9714924693107605,-0.052213553339242935,-0.15646414458751678 +0.8999999761581421,24.073549270629883,20.08416748046875,21.254526138305664,2.7296817302703857,3.076660633087158,-0.14258615672588348 +0.8999999761581421,24.482229232788086,19.481502532958984,21.344518661499023,0.9600385427474976,-0.052213553339242935,0.2182418555021286 +0.8999999761581421,23.869211196899414,20.037811279296875,21.254526138305664,2.609414577484131,3.1093664169311523,-0.15183815360069275 +0.8999999761581421,23.73298454284668,19.435142517089844,21.299522399902344,0.9657654762268066,-0.04131155461072922,-0.08244814723730087 +0.8999999761581421,23.869211196899414,20.547760009765625,21.299522399902344,2.7354087829589844,3.21838641166687,0.08408784121274948 +0.8999999761581421,24.482229232788086,19.806015014648438,21.344518661499023,0.9944005012512207,-0.024958552792668343,-0.08244814723730087 +0.8999999761581421,24.00543785095215,20.037811279296875,21.299522399902344,2.6036875247955322,2.9948954582214355,-0.13333414494991302 +0.8999999761581421,24.34600257873535,19.388782501220703,21.254526138305664,0.9657654762268066,0.0350024476647377,0.19511184096336365 +0.8999999761581421,23.93732452392578,20.08416748046875,21.344518661499023,2.6895925998687744,3.185680627822876,-0.22585414350032806 +0.8999999761581421,24.34600257873535,19.66693687438965,21.254526138305664,0.7195045351982117,0.04045344889163971,-0.03156214952468872 +0.8999999761581421,24.073549270629883,20.362321853637695,21.20952796936035,2.6895925998687744,3.2837986946105957,-0.16109015047550201 +0.8999999761581421,24.618453979492188,19.991451263427734,21.344518661499023,1.0287625789642334,-0.04131155461072922,0.26912784576416016 +0.8999999761581421,23.801097869873047,19.991451263427734,21.479509353637695,2.51778244972229,2.9948954582214355,-0.1287081390619278 +0.8999999761581421,24.482229232788086,19.62057876586914,21.434513092041016,0.5247864723205566,-0.05766455456614494,0.07483584433794022 +0.8999999761581421,23.869211196899414,20.22324562072754,21.434513092041016,2.80985951423645,3.07120943069458,0.07483584433794022 +0.8999999761581421,23.801097869873047,19.296066284179688,21.254526138305664,0.9886735081672668,0.056806448847055435,-0.06857015192508698 +0.8999999761581421,23.73298454284668,20.594118118286133,21.254526138305664,2.6265957355499268,3.1584255695343018,-0.13796015083789825 +0.8999999761581421,24.073549270629883,19.342426300048828,21.389514923095703,1.549919605255127,0.6237104535102844,0.2737538516521454 +0.8999999761581421,24.209775924682617,20.594118118286133,21.479509353637695,2.7869515419006348,3.207484722137451,-0.14721214771270752 +0.8999999761581421,24.00543785095215,19.249706268310547,21.20952796936035,1.3838365077972412,0.7872405052185059,-0.13333414494991302 +0.8999999761581421,24.14166259765625,20.64047622680664,21.299522399902344,2.798405408859253,3.060307502746582,0.07483584433794022 +0.8999999761581421,24.073549270629883,19.296066284179688,21.164531707763672,1.0402165651321411,0.013198448345065117,-0.008432149887084961 +0.8999999761581421,24.073549270629883,20.547760009765625,21.344518661499023,2.7812247276306152,3.21838641166687,-0.11945614963769913 +0.8999999761581421,24.34600257873535,19.75965690612793,21.344518661499023,1.3781094551086426,0.38386645913124084,0.19511184096336365 +0.8999999761581421,24.00543785095215,20.594118118286133,21.524507522583008,2.7640438079833984,3.1093664169311523,-0.22122815251350403 +0.8999999761581421,24.00543785095215,19.296066284179688,21.344518661499023,1.4181984663009644,0.5855534672737122,-0.05931815132498741 +0.8999999761581421,24.14166259765625,20.547760009765625,21.164531707763672,2.815586566925049,3.1366214752197266,0.01932384818792343 +0.8999999761581421,23.869211196899414,19.342426300048828,21.20952796936035,1.2005724906921387,0.3021014630794525,-0.1009521484375 +0.8999999761581421,23.93732452392578,20.918630599975586,21.614501953125,2.7812247276306152,3.169327735900879,-0.16109015047550201 +0.8999999761581421,24.073549270629883,19.249706268310547,21.254526138305664,2.0882575511932373,1.8229305744171143,0.010071849450469017 +0.8999999761581421,24.277889251708984,20.964990615844727,21.344518661499023,2.666684627532959,3.049405574798584,-0.22585414350032806 +0.8999999761581421,23.869211196899414,19.342426300048828,21.344518661499023,1.8477234840393066,1.7248125076293945,-0.14258615672588348 +0.8999999761581421,24.209775924682617,20.964990615844727,21.20952796936035,2.506328582763672,2.8477184772491455,-0.16109015047550201 +0.8999999761581421,23.869211196899414,19.1569881439209,21.479509353637695,1.9966256618499756,1.5394785404205322,-0.040814146399497986 +0.8999999761581421,24.34600257873535,21.289501190185547,21.344518661499023,2.51778244972229,2.9785425662994385,-0.19809813797473907 +0.8999999761581421,23.869211196899414,19.296066284179688,21.164531707763672,2.030987501144409,1.9046955108642578,-0.14721214771270752 +0.8999999761581421,24.209775924682617,21.243144989013672,21.749492645263672,2.7354087829589844,3.0221505165100098,0.04245385155081749 +0.8999999761581421,23.801097869873047,19.388782501220703,21.254526138305664,2.0997116565704346,1.99191153049469,-0.05469214916229248 +0.8999999761581421,23.869211196899414,21.057706832885742,21.704496383666992,0.9084955453872681,2.7168946266174316,-0.12408214807510376 +0.8999999761581421,23.801097869873047,19.62057876586914,21.524507522583008,2.4089694023132324,2.324422597885132,0.07020984590053558 +0.8999999761581421,24.073549270629883,21.057706832885742,21.524507522583008,0.8054094910621643,0.7327304482460022,-0.17959414422512054 +0.8999999761581421,24.00543785095215,19.388782501220703,21.07453727722168,2.3345186710357666,2.6950905323028564,-0.06857015192508698 +0.8999999761581421,25.8444881439209,21.474939346313477,21.434513092041016,1.160483479499817,2.6078743934631348,0.21361584961414337 +0.8999999761581421,23.869211196899414,19.75965690612793,21.434513092041016,2.489147424697876,2.5315606594085693,-0.17959414422512054 +0.8999999761581421,24.754680633544922,20.501399993896484,21.434513092041016,0.6221455335617065,-0.046762555837631226,-0.09632615000009537 +0.8999999761581421,24.073549270629883,19.852373123168945,21.524507522583008,2.7182276248931885,2.8858754634857178,0.12109585106372833 +0.8999999761581421,25.095243453979492,20.037811279296875,21.479509353637695,0.6393264532089233,0.0077474480494856834,-0.06394414603710175 +0.8999999761581421,24.14166259765625,19.66693687438965,21.164531707763672,2.580779552459717,2.9894444942474365,-0.14258615672588348 +0.8999999761581421,24.14166259765625,19.574220657348633,21.344518661499023,0.9714924693107605,-0.0031545525416731834,0.2459978461265564 +0.8999999761581421,23.73298454284668,20.501399993896484,21.569503784179688,2.695319652557373,3.1529746055603027,-0.15183815360069275 +0.8999999761581421,23.664871215820312,19.435142517089844,21.344518661499023,1.3723825216293335,0.9071624875068665,-0.06394414603710175 +0.8999999761581421,24.00543785095215,20.408681869506836,21.344518661499023,2.798405408859253,3.207484722137451,0.033201850950717926 +0.8999999761581421,23.93732452392578,19.20334815979004,21.299522399902344,1.3322936296463013,0.6291614770889282,-0.07782214879989624 +0.8999999761581421,24.34600257873535,20.362321853637695,21.524507522583008,2.666684627532959,3.1584255695343018,-0.1888461410999298 +0.8999999761581421,24.209775924682617,19.342426300048828,21.389514923095703,1.3036586046218872,0.4710824489593506,0.1581038534641266 +0.8999999761581421,24.14166259765625,20.68683624267578,21.569503784179688,2.7468626499176025,3.0821115970611572,-0.19347214698791504 +0.8999999761581421,24.00543785095215,19.1569881439209,21.164531707763672,1.5957355499267578,1.2505754232406616,-0.040814146399497986 +0.8999999761581421,24.00543785095215,20.77955436706543,21.299522399902344,2.638049602508545,3.169327735900879,-0.07782214879989624 +0.8999999761581421,24.14166259765625,19.110628128051758,21.344518661499023,1.5270116329193115,0.9344174861907959,-0.1148301437497139 +0.8999999761581421,24.14166259765625,20.68683624267578,21.344518661499023,2.638049602508545,3.0003466606140137,-0.22122815251350403 +0.8999999761581421,23.93732452392578,19.110628128051758,21.299522399902344,1.5270116329193115,1.0052804946899414,-0.03618814796209335 +0.8999999761581421,23.596757888793945,21.104066848754883,21.254526138305664,2.7182276248931885,3.038503646850586,-0.14258615672588348 +0.8999999761581421,23.596757888793945,19.296066284179688,20.984542846679688,1.8878124952316284,1.730263590812683,-0.14258615672588348 +0.8999999761581421,24.277889251708984,20.964990615844727,21.11953353881836,2.620868682861328,3.0984644889831543,-0.2027241587638855 +0.8999999761581421,23.869211196899414,19.20334815979004,21.389514923095703,1.9851715564727783,1.506772518157959,-0.14258615672588348 +0.8999999761581421,24.073549270629883,20.77955436706543,21.479509353637695,1.9737175703048706,2.8640716075897217,-0.13333414494991302 +0.8999999761581421,24.073549270629883,19.388782501220703,21.20952796936035,2.07680344581604,2.0082645416259766,-0.1888461410999298 +0.8999999761581421,24.277889251708984,21.289501190185547,21.344518661499023,2.7354087829589844,2.8640716075897217,0.1303478479385376 +0.8999999761581421,24.209775924682617,19.249706268310547,21.254526138305664,2.2944297790527344,2.1281864643096924,-0.09170015156269073 +0.8999999761581421,24.073549270629883,21.243144989013672,21.344518661499023,2.5120556354522705,2.9894444942474365,-0.14721214771270752 +0.8999999761581421,24.073549270629883,19.527860641479492,21.524507522583008,2.357426404953003,2.1663434505462646,0.07483584433794022 +0.8999999761581421,24.00543785095215,21.057706832885742,21.434513092041016,0.748139500617981,0.6073575019836426,-0.09632615000009537 +0.8999999761581421,23.73298454284668,19.527860641479492,21.20952796936035,2.1741626262664795,2.3189713954925537,-0.1148301437497139 +0.8999999761581421,23.93732452392578,20.964990615844727,21.479509353637695,0.982946515083313,0.738181471824646,0.21361584961414337 +0.8999999761581421,23.869211196899414,19.71329689025879,21.479509353637695,2.5120556354522705,2.787757635116577,-0.21197615563869476 +0.8999999761581421,24.686567306518555,20.31596565246582,21.524507522583008,0.7195045351982117,-0.03586055338382721,-0.18422015011310577 +0.8999999761581421,23.801097869873047,20.037811279296875,21.434513092041016,2.8384945392608643,2.907679557800293,0.04707984998822212 +0.8999999761581421,24.754680633544922,20.22324562072754,21.344518661499023,0.7137775421142578,-0.05766455456614494,-0.12408214807510376 +0.8999999761581421,24.14166259765625,20.22324562072754,21.20952796936035,2.7067737579345703,3.054856538772583,-0.16109015047550201 +0.8999999761581421,24.14166259765625,19.296066284179688,21.344518661499023,1.4411065578460693,0.6673184633255005,0.2043638527393341 +0.8999999761581421,24.14166259765625,20.547760009765625,21.344518661499023,2.752589702606201,3.0821115970611572,-0.15183815360069275 +0.8999999761581421,23.596757888793945,19.249706268310547,21.254526138305664,1.6759135723114014,1.2832814455032349,-0.14721214771270752 +0.8999999761581421,24.277889251708984,21.243144989013672,21.299522399902344,2.8327674865722656,2.9839937686920166,0.06095784902572632 +0.8999999761581421,23.869211196899414,19.249706268310547,21.299522399902344,2.0424416065216064,1.9646564722061157,-0.0870741531252861 +0.8999999761581421,26.525617599487305,21.15042495727539,21.569503784179688,2.0138065814971924,2.8204636573791504,-0.14721214771270752 +0.8999999761581421,23.596757888793945,19.62057876586914,21.254526138305664,2.2657947540283203,2.389834403991699,-0.10557814687490463 +0.8999999761581421,24.073549270629883,21.19678497314453,21.569503784179688,1.0573976039886475,0.640063464641571,0.1303478479385376 +0.8999999761581421,24.073549270629883,19.574220657348633,21.344518661499023,2.1856164932250977,2.177245616912842,-0.1148301437497139 +0.8999999761581421,24.277889251708984,20.964990615844727,21.389514923095703,0.7710474729537964,0.634612500667572,-0.12408214807510376 +0.8999999761581421,24.073549270629883,19.527860641479492,21.524507522583008,2.592233657836914,2.7277965545654297,0.13959985971450806 +0.8999999761581421,25.16335678100586,21.104066848754883,21.344518661499023,0.7653204798698425,1.027084469795227,-0.14721214771270752 +0.8999999761581421,24.073549270629883,19.71329689025879,21.254526138305664,2.300156593322754,2.515207529067993,-0.1009521484375 +0.8999999761581421,24.95901870727539,20.918630599975586,21.434513092041016,0.8283175230026245,-0.024958552792668343,0.2182418555021286 +0.8999999761581421,24.00543785095215,19.991451263427734,21.479509353637695,2.5578715801239014,2.9458367824554443,-0.22122815251350403 +0.8999999761581421,24.618453979492188,19.71329689025879,21.479509353637695,0.6794155240058899,0.0077474480494856834,-0.040814146399497986 +0.8999999761581421,23.93732452392578,19.898733139038086,21.344518661499023,2.8213133811950684,3.065758466720581,-0.008432149887084961 +0.8999999761581421,24.55034065246582,19.991451263427734,21.254526138305664,0.645053505897522,0.018649447709321976,-0.06394414603710175 +0.8999999761581421,23.596757888793945,20.26960563659668,21.389514923095703,2.546417474746704,2.9785425662994385,-0.22585414350032806 +0.8999999761581421,24.34600257873535,20.08416748046875,21.299522399902344,1.1203945875167847,-0.03040955401957035,0.1442258507013321 +0.8999999761581421,24.277889251708984,20.408681869506836,21.479509353637695,2.546417474746704,2.9676406383514404,-0.14258615672588348 +0.8999999761581421,24.073549270629883,19.296066284179688,21.299522399902344,1.5098305940628052,0.879907488822937,-0.14721214771270752 +0.8999999761581421,24.209775924682617,20.68683624267578,21.11953353881836,2.7812247276306152,3.0984644889831543,-0.1287081390619278 +0.8999999761581421,24.073549270629883,19.249706268310547,21.614501953125,1.3666554689407349,0.7109264731407166,-0.11945614963769913 +0.8999999761581421,24.209775924682617,20.918630599975586,21.344518661499023,2.7067737579345703,3.0057976245880127,-0.2027241587638855 +0.8999999761581421,24.073549270629883,19.20334815979004,21.254526138305664,2.168435573577881,1.9701075553894043,-0.15646414458751678 +0.8999999761581421,26.116939544677734,21.243144989013672,21.614501953125,2.0882575511932373,2.8150124549865723,-0.2027241587638855 +0.8999999761581421,24.00543785095215,19.527860641479492,21.389514923095703,2.254340648651123,2.1063826084136963,-0.15646414458751678 +0.8999999761581421,24.14166259765625,21.104066848754883,21.929479598999023,0.9772195219993591,2.62967848777771,-0.16109015047550201 +0.8999999761581421,23.869211196899414,19.66693687438965,21.524507522583008,2.4490585327148438,2.2862656116485596,-0.2166021466255188 +0.8999999761581421,26.457504272460938,20.455041885375977,21.569503784179688,0.7424125075340271,-0.0903705582022667,-0.15646414458751678 +0.8999999761581421,23.801097869873047,19.574220657348633,21.254526138305664,2.575052499771118,2.8368165493011475,-0.16109015047550201 +0.8999999761581421,25.16335678100586,21.521299362182617,21.434513092041016,1.160483479499817,2.6732866764068604,0.1581038534641266 +0.8999999761581421,23.73298454284668,19.62057876586914,21.389514923095703,2.3230645656585693,2.5424625873565674,-0.14721214771270752 +0.8999999761581421,24.822792053222656,20.547760009765625,21.434513092041016,0.6335994601249695,-0.1557825654745102,-0.07782214879989624 +0.8999999761581421,24.209775924682617,19.852373123168945,21.434513092041016,2.8327674865722656,2.891326665878296,0.11184384673833847 +0.8999999761581421,24.482229232788086,19.852373123168945,21.344518661499023,0.6622344851493835,-0.07401755452156067,-0.1148301437497139 +0.8999999761581421,24.14166259765625,19.945091247558594,21.11953353881836,2.7354087829589844,3.07120943069458,-0.1009521484375 +0.8999999761581421,24.14166259765625,19.481502532958984,21.254526138305664,1.0402165651321411,-0.03040955401957035,0.2506238520145416 +0.8999999761581421,24.34600257873535,20.733196258544922,21.479509353637695,2.7010467052459717,3.1311707496643066,-0.2027241587638855 +0.8999999761581421,24.14166259765625,19.249706268310547,21.389514923095703,1.8305425643920898,1.659400463104248,-0.05006615072488785 +0.8999999761581421,24.14166259765625,21.19678497314453,21.839487075805664,2.741135597229004,3.1148176193237305,0.01932384818792343 +0.8999999761581421,23.664871215820312,19.527860641479492,21.479509353637695,2.282975673675537,2.209951400756836,-0.2027241587638855 +0.8999999761581421,25.57203483581543,21.382221221923828,21.614501953125,0.7825015187263489,-0.07946854829788208,-0.14258615672588348 +0.8999999761581421,23.801097869873047,19.66693687438965,21.344518661499023,2.3917884826660156,2.5915215015411377,0.023949850350618362 +0.8999999761581421,25.36769676208496,20.26960563659668,21.434513092041016,0.6794155240058899,0.0077474480494856834,-0.16571614146232605 +0.8999999761581421,24.00543785095215,19.574220657348633,21.299522399902344,2.4547855854034424,2.744149684906006,-0.1009521484375 +0.8999999761581421,24.890905380249023,20.17688751220703,21.389514923095703,0.9027684926986694,0.04590445011854172,0.2182418555021286 +0.8999999761581421,23.93732452392578,20.22324562072754,21.479509353637695,2.6323225498199463,3.038503646850586,-0.2304801493883133 +0.8999999761581421,24.482229232788086,19.991451263427734,21.479509353637695,0.8684064745903015,-0.05766455456614494,-0.04544014856219292 +0.8999999761581421,24.209775924682617,20.408681869506836,21.434513092041016,2.7354087829589844,3.0930137634277344,-0.15646414458751678 +0.8999999761581421,24.41411590576172,19.342426300048828,21.704496383666992,1.395290493965149,0.4056704640388489,-0.16571614146232605 +0.8999999761581421,24.209775924682617,20.547760009765625,21.524507522583008,2.6552305221557617,3.0166995525360107,-0.2166021466255188 +0.8999999761581421,24.00543785095215,19.1569881439209,21.299522399902344,1.4983766078948975,1.0325355529785156,-0.14721214771270752 +0.8999999761581421,23.869211196899414,20.964990615844727,21.479509353637695,2.7640438079833984,3.043954610824585,-0.17496813833713531 +0.8999999761581421,23.596757888793945,19.20334815979004,21.254526138305664,2.151254653930664,2.0191664695739746,-0.14721214771270752 +0.8999999761581421,24.00543785095215,21.289501190185547,21.479509353637695,2.5006015300750732,2.8695225715637207,-0.12408214807510376 +0.8999999761581421,23.93732452392578,19.388782501220703,21.524507522583008,2.443331480026245,2.1554417610168457,0.09333985298871994 +0.8999999761581421,26.457504272460938,21.243144989013672,21.479509353637695,0.7710474729537964,-0.1503315567970276,-0.17959414422512054 +0.8999999761581421,24.073549270629883,19.62057876586914,21.389514923095703,2.4662394523620605,2.5479135513305664,-0.14721214771270752 +0.8999999761581421,26.66184425354004,20.455041885375977,21.614501953125,0.9027684926986694,-0.1612335443496704,0.19973784685134888 +0.8999999761581421,24.00543785095215,19.806015014648438,21.479509353637695,2.620868682861328,2.918581485748291,-0.15183815360069275 +0.8999999761581421,24.55034065246582,19.945091247558594,21.254526138305664,0.6393264532089233,0.0077474480494856834,-0.11020414531230927 +0.8999999761581421,24.073549270629883,20.362321853637695,21.344518661499023,2.7067737579345703,3.1093664169311523,-0.03156214952468872 +0.8999999761581421,24.618453979492188,19.852373123168945,21.389514923095703,1.0287625789642334,-0.07401755452156067,-0.05469214916229248 +0.8999999761581421,24.00543785095215,20.408681869506836,21.254526138305664,2.666684627532959,3.07120943069458,-0.1888461410999298 +0.8999999761581421,23.801097869873047,19.110628128051758,21.254526138305664,1.5441925525665283,0.7327304482460022,0.16272984445095062 +0.8999999761581421,24.00543785095215,20.594118118286133,21.344518661499023,2.620868682861328,3.1093664169311523,-0.1888461410999298 +0.8999999761581421,23.801097869873047,19.1569881439209,21.254526138305664,1.2864775657653809,0.7708874344825745,-0.09170015156269073 +0.8999999761581421,24.073549270629883,20.825912475585938,21.11953353881836,2.741135597229004,3.1366214752197266,-0.017684150487184525 +0.8999999761581421,23.869211196899414,19.20334815979004,21.254526138305664,1.5785545110702515,1.1906144618988037,-0.1009521484375 +0.8999999761581421,24.41411590576172,20.872270584106445,21.389514923095703,2.6437766551971436,3.043954610824585,-0.17496813833713531 +0.8999999761581421,23.73298454284668,19.1569881439209,21.344518661499023,1.6759135723114014,1.4577134847640991,-0.05469214916229248 +0.8999999761581421,24.277889251708984,20.872270584106445,21.434513092041016,2.683865547180176,2.896777629852295,0.07483584433794022 +0.8999999761581421,24.00543785095215,19.342426300048828,21.254526138305664,1.8763585090637207,1.4577134847640991,-0.1009521484375 +0.8999999761581421,24.41411590576172,21.104066848754883,21.479509353637695,2.5635986328125,2.913130521774292,-0.2582361400127411 +0.8999999761581421,24.00543785095215,19.342426300048828,21.389514923095703,2.403242588043213,2.4116384983062744,0.18585984408855438 +0.8999999761581421,25.57203483581543,21.428579330444336,21.479509353637695,0.982946515083313,2.6896395683288574,-0.2304801493883133 +0.8999999761581421,23.869211196899414,19.527860641479492,21.254526138305664,2.328791618347168,2.5533645153045654,-0.17959414422512054 +0.8999999761581421,26.321279525756836,21.335861206054688,21.614501953125,1.0001275539398193,-0.17758657038211823,0.1442258507013321 +0.8999999761581421,23.73298454284668,19.66693687438965,21.299522399902344,2.4834206104278564,2.5642666816711426,-0.14721214771270752 +0.8999999761581421,24.95901870727539,19.898733139038086,21.524507522583008,0.7309585213661194,-0.06856656074523926,-0.11020414531230927 diff --git a/results/Load 10 branch 1/results_SIMSC_duty10%_VHigh24.mat b/results/Load 10 branch 1/results_SIMSC_duty10%_VHigh24.mat new file mode 100644 index 0000000000000000000000000000000000000000..cfb9e45ed796e162a0e810d2eb482e023d144bb4 Binary files /dev/null and b/results/Load 10 branch 1/results_SIMSC_duty10%_VHigh24.mat differ diff --git a/results/Load 10 branch 1/results_SIMSC_duty20%_VHigh24.mat b/results/Load 10 branch 1/results_SIMSC_duty20%_VHigh24.mat new file mode 100644 index 0000000000000000000000000000000000000000..8a8e15f4ba3d8d5e308b31e1610ad74df0e2e7e9 Binary files /dev/null and b/results/Load 10 branch 1/results_SIMSC_duty20%_VHigh24.mat differ diff --git a/results/Load 10 branch 1/results_SIMSC_duty30%_VHigh24.mat b/results/Load 10 branch 1/results_SIMSC_duty30%_VHigh24.mat new file mode 100644 index 0000000000000000000000000000000000000000..237933f9057b7baee844ef05c7334ab5af90f8f2 Binary files /dev/null and b/results/Load 10 branch 1/results_SIMSC_duty30%_VHigh24.mat differ diff --git a/results/Load 10 branch 1/results_SIMSC_duty40%_VHigh24.mat b/results/Load 10 branch 1/results_SIMSC_duty40%_VHigh24.mat new file mode 100644 index 0000000000000000000000000000000000000000..6bb5badfd20ad42e74cca40200dbc1ac531087ee Binary files /dev/null and b/results/Load 10 branch 1/results_SIMSC_duty40%_VHigh24.mat differ diff --git a/results/Load 10 branch 1/results_SIMSC_duty50%_VHigh24.mat b/results/Load 10 branch 1/results_SIMSC_duty50%_VHigh24.mat new file mode 100644 index 0000000000000000000000000000000000000000..9da7f9054753a3cc65f306f663c476d0689654e1 Binary files /dev/null and b/results/Load 10 branch 1/results_SIMSC_duty50%_VHigh24.mat differ diff --git a/results/Load 10 branch 1/results_SIMSC_duty60%_VHigh24.mat b/results/Load 10 branch 1/results_SIMSC_duty60%_VHigh24.mat new file mode 100644 index 0000000000000000000000000000000000000000..df5550a3bffd9eedd67b3cf14a378bec560e1aaa Binary files /dev/null and b/results/Load 10 branch 1/results_SIMSC_duty60%_VHigh24.mat differ diff --git a/results/Load 10 branch 1/results_SIMSC_duty70%_VHigh24.mat b/results/Load 10 branch 1/results_SIMSC_duty70%_VHigh24.mat new file mode 100644 index 0000000000000000000000000000000000000000..d165da647e13cc29a269cb6c4c3231fa312c3304 Binary files /dev/null and b/results/Load 10 branch 1/results_SIMSC_duty70%_VHigh24.mat differ diff --git a/results/Load 10 branch 1/results_SIMSC_duty80%_VHigh24.mat b/results/Load 10 branch 1/results_SIMSC_duty80%_VHigh24.mat new file mode 100644 index 0000000000000000000000000000000000000000..2f56eeb4989ee4eed78696ac68eddef2b18f715a Binary files /dev/null and b/results/Load 10 branch 1/results_SIMSC_duty80%_VHigh24.mat differ diff --git a/results/Load 10 branch 1/results_SIMSC_duty90%_VHigh24.mat b/results/Load 10 branch 1/results_SIMSC_duty90%_VHigh24.mat new file mode 100644 index 0000000000000000000000000000000000000000..24321122aaa5b636c7c38da17b6c2544e2cc4284 Binary files /dev/null and b/results/Load 10 branch 1/results_SIMSC_duty90%_VHigh24.mat differ diff --git a/results/Load 10 branch 1/setup.txt b/results/Load 10 branch 1/setup.txt new file mode 100644 index 0000000000000000000000000000000000000000..0772afc848645d61c0e02f0765965ccb8ce46a30 --- /dev/null +++ b/results/Load 10 branch 1/setup.txt @@ -0,0 +1,16 @@ + +TWIST Board SN002 + +Mode Buck Center Aligned + +VHigh = 24 V + +Ramp input : 0.1 at start, +0.1 each 100 µs (control loop period) until it reaches the wanted PWM, then it keeps this value wanted + +Load 5 Ohm -> electronic load IT815B + + + +Core-Main git link : + +Simscape git link : \ No newline at end of file diff --git a/results/Load 10 branch 1/slprj/sim/varcache/owntech_model_matlab_simulink_simscape/checksumOfCache.mat b/results/Load 10 branch 1/slprj/sim/varcache/owntech_model_matlab_simulink_simscape/checksumOfCache.mat new file mode 100644 index 0000000000000000000000000000000000000000..04a11e634ae2892f71f00241ffc385e68e052bcf Binary files /dev/null and b/results/Load 10 branch 1/slprj/sim/varcache/owntech_model_matlab_simulink_simscape/checksumOfCache.mat differ diff --git a/results/Load 10 branch 1/slprj/sim/varcache/owntech_model_matlab_simulink_simscape/tmwinternal/simulink_cache.xml b/results/Load 10 branch 1/slprj/sim/varcache/owntech_model_matlab_simulink_simscape/tmwinternal/simulink_cache.xml new file mode 100644 index 0000000000000000000000000000000000000000..44baa18712bc8943555ca1dd951f748c66c7d825 --- /dev/null +++ b/results/Load 10 branch 1/slprj/sim/varcache/owntech_model_matlab_simulink_simscape/tmwinternal/simulink_cache.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<MF0 version="1.1" packageUris="http://schema.mathworks.com/mf0/SlCache/19700101"> + <slcache.FileAttributes type="slcache.FileAttributes" uuid="c76e2c69-f4e2-4766-8f17-8a85304ed091"> + <checksum>U9eQjlEF82wXuvkm2okWH/spesZ7hU2krw/5gIJdgsHq7zN13HTXufbqIhQgvKEp5D3pem6+kibreGlf+3AL8g==</checksum> + </slcache.FileAttributes> +</MF0> \ No newline at end of file diff --git a/results/Load 10 branch 1/slprj/sim/varcache/owntech_model_matlab_simulink_simscape/varInfo.mat b/results/Load 10 branch 1/slprj/sim/varcache/owntech_model_matlab_simulink_simscape/varInfo.mat new file mode 100644 index 0000000000000000000000000000000000000000..df3a84bd971121c08d0d9f16bf0b39016d94bedb Binary files /dev/null and b/results/Load 10 branch 1/slprj/sim/varcache/owntech_model_matlab_simulink_simscape/varInfo.mat differ